From eaddbd83d7113dc7e7eeeee23fd72e08478e1e92 Mon Sep 17 00:00:00 2001 From: Manuel Raynaud Date: Thu, 30 Apr 2026 14:37:40 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=96(major)=20release=205.0.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Added - ✨(backend) create a dedicated endpoint to update document content - ⚡️(backend) stream s3 file content with a dedicated endpoint - ✨(backend) allow to use new ai feature using mistral sdk Changed - ♻️(backend) rename documents content endpoint in `formatted-content` (BC) - 🚸(frontend) show Crisp from the help menu #2222 - ♿️(frontend) structure correctly 5xx error alerts #2128 - ♿️(frontend) make doc search result labels uniquely identifiable #2212 - ⬆️(backend) upgrade docspec to v3.0.x and adapt converter API #2220 - ✨(backend) make forward auth request uri header configurable #2241 - ♿️(frontend) fix sidebar resize handle for screen readers #2122 Fixed - 🚸(frontend) redirect on current url tab after 401 #2197 - 🐛(frontend) abort check media status unmount #2194 - ✨(backend) order pinned documents by last updated at #2028 - 🐛(frontend) fix app shallow reload #2231 - 🐛(frontend) fix interlinking modal clipping #2213 - 🛂(frontend) fix cannot manage member on small screen #2226 - 🐛(backend) load jwks url when OIDC_RS_PRIVATE_KEY_STR is set - 🐛(backend) Prevent moving document to its own descendant or self #2208 - 🐛(backend) return 400 when restoring a non-deleted document #2225 --- CHANGELOG.md | 21 ++++++++++--------- UPGRADE.md | 2 ++ src/backend/pyproject.toml | 2 +- src/frontend/apps/e2e/package.json | 2 +- src/frontend/apps/impress/package.json | 2 +- src/frontend/package.json | 2 +- .../packages/eslint-plugin-docs/package.json | 2 +- src/frontend/packages/i18n/package.json | 2 +- src/frontend/servers/y-provider/package.json | 2 +- src/helm/helmfile.yaml.gotmpl | 4 ++-- src/helm/impress/Chart.yaml | 2 +- src/mail/package.json | 2 +- 12 files changed, 24 insertions(+), 21 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 40a754ee2..41c4e533e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,11 +6,13 @@ and this project adheres to ## [Unreleased] +## [v5.0.0] - 2026-04-08 + ### Added -- ✨(backend) create a dedicated endpoint to update document content -- ⚡️(backend) stream s3 file content with a dedicated endpoint -- ✨(backend) allow to use new ai feature using mistral sdk +- ✨(backend) create a dedicated endpoint to update document content #2171 +- ⚡️(backend) stream s3 file content with a dedicated endpoint #2171 +- ✨(backend) allow to use new ai feature using mistral sdk #2193 ### Changed @@ -33,11 +35,14 @@ and this project adheres to - 🐛(backend) load jwks url when OIDC_RS_PRIVATE_KEY_STR is set - 🐛(backend) Prevent moving document to its own descendant or self #2208 - 🐛(backend) return 400 when restoring a non-deleted document #2225 +- 🐛(backend) fix race condition in reconciliation requests CSV import #2153 +- 🐛(backend) create_for_owner: add accesses before saving doc content #2124 +- 🐛(backend) enforce emoji validation for reactions #1965 ### Removed - 🔥(backend) remove deprecated descendants endpoint #2243 -- 🔥(backend) remove content in document responses +- 🔥(backend) remove content in document responses #2171 ## [v4.8.6] - 2026-04-08 @@ -76,7 +81,6 @@ and this project adheres to - ⚡️(frontend) add jitter to WS reconnection #2162 - 🐛(frontend) fix tree pagination #2145 - 🐛(nginx) add page reconciliation on nginx #2154 -- 🐛(backend) fix race condition in reconciliation requests CSV import #2153 ## [v4.8.4] - 2026-03-25 @@ -98,9 +102,6 @@ and this project adheres to - 🐛(y-provider) destroy Y.Doc instances after each convert request #2129 - 🐛(backend) remove deleted sub documents in favorite_list endpoint #2083 -### Fixed - -- 🐛(backend) create_for_owner: add accesses before saving doc content #2124 ## [v4.8.3] - 2026-03-23 @@ -206,7 +207,6 @@ and this project adheres to ### Fixed -- 🐛(backend) enforce emoji validation for reactions #1965 - 🐛(frontend) analytic feature flags problem #1953 - 🐛(frontend) fix home collapsing panel #1954 - 🐛(frontend) fix disabled color on icon Dropdown #1950 @@ -1270,7 +1270,8 @@ and this project adheres to - ✨(frontend) Coming Soon page (#67) - 🚀 Impress, project to manage your documents easily and collaboratively. -[unreleased]: https://github.com/suitenumerique/docs/compare/v4.8.6...main +[unreleased]: https://github.com/suitenumerique/docs/compare/v5.0.0...main +[v5.0.0]: https://github.com/suitenumerique/docs/releases/v5.0.0 [v4.8.6]: https://github.com/suitenumerique/docs/releases/v4.8.6 [v4.8.5]: https://github.com/suitenumerique/docs/releases/v4.8.5 [v4.8.4]: https://github.com/suitenumerique/docs/releases/v4.8.4 diff --git a/UPGRADE.md b/UPGRADE.md index 810076cd1..a142fb47f 100644 --- a/UPGRADE.md +++ b/UPGRADE.md @@ -16,6 +16,8 @@ the following command inside your docker container: ## [Unreleased] +### [5.0.0] - 2026-04-30 + We made several changes around document content management leading to several breaking changes in the API. - The endpoint `/api/v1.0/documents/{document_id}/content/` has been renamed in `/api/v1.0/documents/{document_id}/formatted-content/` diff --git a/src/backend/pyproject.toml b/src/backend/pyproject.toml index 9c215b066..bb05649fe 100644 --- a/src/backend/pyproject.toml +++ b/src/backend/pyproject.toml @@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta" [project] name = "impress" -version = "4.8.6" +version = "5.0.0" authors = [{ "name" = "DINUM", "email" = "dev@mail.numerique.gouv.fr" }] classifiers = [ "Development Status :: 5 - Production/Stable", diff --git a/src/frontend/apps/e2e/package.json b/src/frontend/apps/e2e/package.json index d35351121..5c91b5b31 100644 --- a/src/frontend/apps/e2e/package.json +++ b/src/frontend/apps/e2e/package.json @@ -1,6 +1,6 @@ { "name": "app-e2e", - "version": "4.8.6", + "version": "5.0.0", "repository": "https://github.com/suitenumerique/docs", "author": "DINUM", "license": "MIT", diff --git a/src/frontend/apps/impress/package.json b/src/frontend/apps/impress/package.json index 819d754e3..722d7cf0c 100644 --- a/src/frontend/apps/impress/package.json +++ b/src/frontend/apps/impress/package.json @@ -1,6 +1,6 @@ { "name": "app-impress", - "version": "4.8.6", + "version": "5.0.0", "repository": "https://github.com/suitenumerique/docs", "author": "DINUM", "license": "MIT", diff --git a/src/frontend/package.json b/src/frontend/package.json index 810f83002..a5e7f5e7e 100644 --- a/src/frontend/package.json +++ b/src/frontend/package.json @@ -1,6 +1,6 @@ { "name": "impress", - "version": "4.8.6", + "version": "5.0.0", "private": true, "repository": "https://github.com/suitenumerique/docs", "author": "DINUM", diff --git a/src/frontend/packages/eslint-plugin-docs/package.json b/src/frontend/packages/eslint-plugin-docs/package.json index daece9e0a..c704e504a 100644 --- a/src/frontend/packages/eslint-plugin-docs/package.json +++ b/src/frontend/packages/eslint-plugin-docs/package.json @@ -1,6 +1,6 @@ { "name": "eslint-plugin-docs", - "version": "4.8.6", + "version": "5.0.0", "repository": "https://github.com/suitenumerique/docs", "author": "DINUM", "license": "MIT", diff --git a/src/frontend/packages/i18n/package.json b/src/frontend/packages/i18n/package.json index a9f66e8ff..f5b42efbe 100644 --- a/src/frontend/packages/i18n/package.json +++ b/src/frontend/packages/i18n/package.json @@ -1,6 +1,6 @@ { "name": "packages-i18n", - "version": "4.8.6", + "version": "5.0.0", "repository": "https://github.com/suitenumerique/docs", "author": "DINUM", "license": "MIT", diff --git a/src/frontend/servers/y-provider/package.json b/src/frontend/servers/y-provider/package.json index 16fac1d25..90be6d5bf 100644 --- a/src/frontend/servers/y-provider/package.json +++ b/src/frontend/servers/y-provider/package.json @@ -1,6 +1,6 @@ { "name": "server-y-provider", - "version": "4.8.6", + "version": "5.0.0", "description": "Y.js provider for docs", "repository": "https://github.com/suitenumerique/docs", "license": "MIT", diff --git a/src/helm/helmfile.yaml.gotmpl b/src/helm/helmfile.yaml.gotmpl index db4b84449..a158f3f1c 100644 --- a/src/helm/helmfile.yaml.gotmpl +++ b/src/helm/helmfile.yaml.gotmpl @@ -1,10 +1,10 @@ environments: dev: values: - - version: 4.8.6 + - version: 5.0.0 feature: values: - - version: 4.8.6 + - version: 5.0.0 feature: ci domain: example.com imageTag: demo diff --git a/src/helm/impress/Chart.yaml b/src/helm/impress/Chart.yaml index 84ba6a5c6..a132b7018 100644 --- a/src/helm/impress/Chart.yaml +++ b/src/helm/impress/Chart.yaml @@ -1,5 +1,5 @@ apiVersion: v2 type: application name: docs -version: 4.8.6 +version: 5.0.0 appVersion: latest diff --git a/src/mail/package.json b/src/mail/package.json index 9acd80458..c46f714b6 100644 --- a/src/mail/package.json +++ b/src/mail/package.json @@ -1,6 +1,6 @@ { "name": "mail_mjml", - "version": "4.8.6", + "version": "5.0.0", "description": "An util to generate html and text django's templates from mjml templates", "type": "module", "dependencies": {