Skip to content

Commit bbe1715

Browse files
committed
🔖(minor) release 2.5.0
Added: - 📝(doc) Added GNU Make link to README - ✨(frontend) add pinning on doc detail - 🚩(frontend) feature flag analytic on copy as html - ✨(frontend) Custom block divider with export - 🌐(i18n) activate dutch language Changed: - 🧑‍💻(frontend) change literal section open source - ♻️(frontend) replace cors proxy for export - 🚨(gitlint) Allow uppercase in commit messages Fixed: - 🐛(frontend) SVG export - 🐛(frontend) remove scroll listener table content - 🔒️(back) restrict access to favorite_list endpoint - 🐛(backend) refactor to fix filtering on children and descendants views - 🐛(action) fix notify-argocd workflow - 🚨(helm) fix helmfile lint - 🚚(frontend) redirect to 401 page when 401 error
1 parent 51cc26b commit bbe1715

File tree

11 files changed

+18
-14
lines changed

11 files changed

+18
-14
lines changed

CHANGELOG.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,24 @@ and this project adheres to
88

99
## [Unreleased]
1010

11+
## [2.5.0] - 2025-03-18
12+
1113
## Added
1214

1315
- 📝(doc) Added GNU Make link to README #750
1416
- ✨(frontend) add pinning on doc detail #711
1517
- 🚩(frontend) feature flag analytic on copy as html #649
1618
- ✨(frontend) Custom block divider with export #698
1719
- 🌐(i18n) activate dutch language #742
20+
- ✨(frontend) add Beautify action to AI transform #478
21+
- ✨(frontend) add Emojify action to AI transform #478
1822

1923
## Changed
2024

2125
- 🧑‍💻(frontend) change literal section open source #702
2226
- ♻️(frontend) replace cors proxy for export #695
2327
- 🚨(gitlint) Allow uppercase in commit messages #756
28+
- ♻️(frontend) Improve AI translations #478
2429

2530
## Fixed
2631

@@ -39,13 +44,10 @@ and this project adheres to
3944
## Added
4045

4146
- ✨(frontend) synchronize language-choice #401
42-
- ✨(frontend) add Beautify action to AI transform #478
43-
- ✨(frontend) add Emojify action to AI transform #478
4447

4548
## Changed
4649

4750
- Use sentry tags instead of extra scope
48-
- ♻️(frontend) Improve AI translations #478
4951

5052
## Fixed
5153

@@ -466,7 +468,9 @@ and this project adheres to
466468
- ✨(frontend) Coming Soon page (#67)
467469
- 🚀 Impress, project to manage your documents easily and collaboratively.
468470

469-
[unreleased]: https://github.com/numerique-gouv/impress/compare/v2.3.0...main
471+
[unreleased]: https://github.com/numerique-gouv/impress/compare/v2.5.0...main
472+
[v2.5.0]: https://github.com/numerique-gouv/impress/releases/v2.5.0
473+
[v2.4.0]: https://github.com/numerique-gouv/impress/releases/v2.4.0
470474
[v2.3.0]: https://github.com/numerique-gouv/impress/releases/v2.3.0
471475
[v2.2.0]: https://github.com/numerique-gouv/impress/releases/v2.2.0
472476
[v2.1.0]: https://github.com/numerique-gouv/impress/releases/v2.1.0

src/backend/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta"
77

88
[project]
99
name = "impress"
10-
version = "2.4.0"
10+
version = "2.5.0"
1111
authors = [{ "name" = "DINUM", "email" = "[email protected]" }]
1212
classifiers = [
1313
"Development Status :: 5 - Production/Stable",

src/frontend/apps/e2e/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "app-e2e",
3-
"version": "2.4.0",
3+
"version": "2.5.0",
44
"private": true,
55
"scripts": {
66
"lint": "eslint . --ext .ts",

src/frontend/apps/impress/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "app-impress",
3-
"version": "2.4.0",
3+
"version": "2.5.0",
44
"private": true,
55
"scripts": {
66
"dev": "next dev",

src/frontend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "impress",
3-
"version": "2.4.0",
3+
"version": "2.5.0",
44
"private": true,
55
"workspaces": {
66
"packages": [

src/frontend/packages/eslint-config-impress/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eslint-config-impress",
3-
"version": "2.4.0",
3+
"version": "2.5.0",
44
"license": "MIT",
55
"scripts": {
66
"lint": "eslint --ext .js ."

src/frontend/packages/i18n/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "packages-i18n",
3-
"version": "2.4.0",
3+
"version": "2.5.0",
44
"private": true,
55
"scripts": {
66
"extract-translation": "yarn extract-translation:impress",

src/frontend/servers/y-provider/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "server-y-provider",
3-
"version": "2.4.0",
3+
"version": "2.5.0",
44
"description": "Y.js provider for docs",
55
"repository": "https://github.com/numerique-gouv/impress",
66
"license": "MIT",

src/helm/helmfile.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
environments:
22
dev:
33
values:
4-
- version: 2.4.0
4+
- version: 2.5.0
55
---
66
repositories:
77
- name: bitnami

src/helm/impress/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
apiVersion: v2
22
type: application
33
name: docs
4-
version: 2.4.0
4+
version: 2.5.0
55
appVersion: latest

src/mail/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mail_mjml",
3-
"version": "2.4.0",
3+
"version": "2.5.0",
44
"description": "An util to generate html and text django's templates from mjml templates",
55
"type": "module",
66
"dependencies": {

0 commit comments

Comments
 (0)