diff --git a/CHANGELOG.md b/CHANGELOG.md index c176c578a..d785dc2a9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,22 +6,25 @@ and this project adheres to ## [Unreleased] +## [v5.2.0] - 2026-06-03 + ### Added - ✨(backend) support creating subdoc from file #1987 - ✨(frontend) comment side panel #2279 - ✨(buildpack) add PaaS deployment support, tested with Scalingo #2293 -- 🔧(backend) allow configuring settings OIDC_OP_USER_ENDPOINT_FORMAT -- ⚡️(helm) create a dedicated svc and deployment for yprovider converter #2368 +- 🔧(backend) allow configuring settings OIDC_OP_USER_ENDPOINT_FORMAT #2306 +- ⚡️(helm) create a dedicated svc and deployment for yprovider converter #2358 - ✨(backend) allow to leave a document #2365 -- ✨(frontend) add the presenter mode -- 📈(backend) create a utils to capture event with posthog -- 🔧(backend) new setting DOCUMENT_ALL_ENDPOINT_ENABLED +- ✨(frontend) add the presenter mode #2321 +- 📈(backend) create a utils to capture event with posthog #2363 +- 🔧(backend) new setting DOCUMENT_ALL_ENDPOINT_ENABLED #2378 ### Changed -- ♻️(backend) allow global search in sub documents -- ✨(backend) add a breadcrumb in the search response +- ♻️(frontend) centralize allowed conversion formats in ContentTypes #2215 +- ♻️(backend) allow global search in sub documents #2310 +- ✨(backend) add a breadcrumb in the search response #2310 - ♻️(frontend) move doc action buttons to fix toolbar #2360 - ♿️(frontend) add aria-hidden to decorative avatar SVGs in share modal #2324 - 🏗️(frontend) move comments to its own folder feature #2374 @@ -29,14 +32,15 @@ and this project adheres to ### Fixed -- 🐛(docs) run migration 0027 without superuser role -- 🐛(backend) prevent admins/owners from overwriting other users comments -- 🐛(y-provider) return empty output when converting empty Yjs document +- 🐛(docs) run migration 0027 without superuser role #2284 +- 🐛(backend) prevent admins/owners from overwriting other users comments #2323 +- 🐛(y-provider) return empty output when converting empty Yjs document #2328 - 🐛(backend) use computed_link_reach in handle_onboarding_document #2305 - 🐛(frontend) fix toolbar blocknote hidden #2373 - 🐛(frontend) fix application crashes when using GTranslate and zoom #2372 - 🐛(frontend) fix emoji pdf not matching #2375 -- 🐛(backend) fix UnorderedObjectListWarning for DocumentAskForAccess viewset +- 🐛(backend) fix UnorderedObjectListWarning for DocumentAskForAccess + viewset #2382 ## [v5.1.0] - 2026-05-11 @@ -104,10 +108,6 @@ and this project adheres to - 🔥(backend) remove deprecated descendants endpoint #2243 - 🔥(backend) remove content in document responses #2171 -### Changed - -- ♻️(frontend) centralize allowed conversion formats in ContentTypes #2215 - ## [v4.8.6] - 2026-04-08 ### Added @@ -1333,7 +1333,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/v5.1.0...main +[unreleased]: https://github.com/suitenumerique/docs/compare/v5.2.0...main +[v5.2.0]: https://github.com/suitenumerique/docs/releases/v5.2.0 [v5.1.0]: https://github.com/suitenumerique/docs/releases/v5.1.0 [v5.0.0]: https://github.com/suitenumerique/docs/releases/v5.0.0 [v4.8.6]: https://github.com/suitenumerique/docs/releases/v4.8.6 diff --git a/src/backend/pyproject.toml b/src/backend/pyproject.toml index 23080ca40..39c853234 100644 --- a/src/backend/pyproject.toml +++ b/src/backend/pyproject.toml @@ -7,7 +7,7 @@ build-backend = "uv_build" [project] name = "impress" -version = "5.1.0" +version = "5.2.0" authors = [{ "name" = "DINUM", "email" = "dev@mail.numerique.gouv.fr" }] classifiers = [ "Development Status :: 5 - Production/Stable", diff --git a/src/backend/uv.lock b/src/backend/uv.lock index 08291f640..3ce8df42e 100644 --- a/src/backend/uv.lock +++ b/src/backend/uv.lock @@ -883,7 +883,7 @@ wheels = [ [[package]] name = "impress" -version = "5.1.0" +version = "5.2.0" source = { editable = "." } dependencies = [ { name = "beautifulsoup4" }, diff --git a/src/frontend/apps/e2e/package.json b/src/frontend/apps/e2e/package.json index e892bc50a..a01615909 100644 --- a/src/frontend/apps/e2e/package.json +++ b/src/frontend/apps/e2e/package.json @@ -1,6 +1,6 @@ { "name": "app-e2e", - "version": "5.1.0", + "version": "5.2.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 edbf66992..82a449954 100644 --- a/src/frontend/apps/impress/package.json +++ b/src/frontend/apps/impress/package.json @@ -1,6 +1,6 @@ { "name": "app-impress", - "version": "5.1.0", + "version": "5.2.0", "repository": "https://github.com/suitenumerique/docs", "author": "DINUM", "license": "MIT", diff --git a/src/frontend/package.json b/src/frontend/package.json index 25f6d1d51..095069bde 100644 --- a/src/frontend/package.json +++ b/src/frontend/package.json @@ -1,6 +1,6 @@ { "name": "impress", - "version": "5.1.0", + "version": "5.2.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 1eaf62308..eb90b3895 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": "5.1.0", + "version": "5.2.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 090a815c9..5881c77b2 100644 --- a/src/frontend/packages/i18n/package.json +++ b/src/frontend/packages/i18n/package.json @@ -1,6 +1,6 @@ { "name": "packages-i18n", - "version": "5.1.0", + "version": "5.2.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 278ef841e..e4b4667e5 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": "5.1.0", + "version": "5.2.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 472b0f689..e05d1908e 100644 --- a/src/helm/helmfile.yaml.gotmpl +++ b/src/helm/helmfile.yaml.gotmpl @@ -1,10 +1,10 @@ environments: dev: values: - - version: 5.1.0 + - version: 5.2.0 feature: values: - - version: 5.1.0 + - version: 5.2.0 feature: ci domain: example.com imageTag: demo diff --git a/src/helm/impress/Chart.yaml b/src/helm/impress/Chart.yaml index c4fa284f7..03f2f31da 100644 --- a/src/helm/impress/Chart.yaml +++ b/src/helm/impress/Chart.yaml @@ -1,5 +1,5 @@ apiVersion: v2 type: application name: docs -version: 5.1.0 +version: 5.2.0 appVersion: latest diff --git a/src/mail/package.json b/src/mail/package.json index a868745d0..978652d1f 100644 --- a/src/mail/package.json +++ b/src/mail/package.json @@ -1,6 +1,6 @@ { "name": "mail_mjml", - "version": "5.1.0", + "version": "5.2.0", "description": "An util to generate html and text django's templates from mjml templates", "type": "module", "dependencies": {