Skip to content

Commit 01844d2

Browse files
committed
πŸ”–(patch) release 5.2.0
Added: - ✨(backend) support creating subdoc from file - ✨(frontend) comment side panel - ✨(buildpack) add PaaS deployment support, tested with Scalingo - πŸ”§(backend) allow configuring settings OIDC_OP_USER_ENDPOINT_FORMAT - ⚑️(helm) create a dedicated svc and deployment for yprovider converter - ✨(backend) allow to leave a document - ✨(frontend) add the presenter mode - πŸ“ˆ(backend) create a utils to capture event with posthog - πŸ”§(backend) new setting DOCUMENT_ALL_ENDPOINT_ENABLED Changed: - ♻️(backend) allow global search in sub documents - ✨(backend) add a breadcrumb in the search response - ♻️(frontend) move doc action buttons to fix toolbar - ♿️(frontend) add aria-hidden to decorative avatar SVGs in share modal - πŸ—οΈ(frontend) move comments to its own folder feature 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 - πŸ›(backend) use computed_link_reach in handle_onboarding_document - πŸ›(frontend) fix toolbar blocknote hidden - πŸ›(frontend) fix application crashes when using GTranslate and zoom - πŸ›(frontend) fix emoji pdf not matching - πŸ›(backend) fix UnorderedObjectListWarning for DocumentAskForAccess viewset
1 parent a78269a commit 01844d2

12 files changed

Lines changed: 28 additions & 24 deletions

File tree

β€ŽCHANGELOG.mdβ€Ž

Lines changed: 16 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -6,37 +6,40 @@ and this project adheres to
66

77
## [Unreleased]
88

9+
## [v5.2.0] - 2026-06-03
10+
911
### Added
1012

1113
- ✨(backend) support creating subdoc from file #1987
1214
- ✨(frontend) comment side panel #2279
1315
- ✨(buildpack) add PaaS deployment support, tested with Scalingo #2293
14-
- πŸ”§(backend) allow configuring settings OIDC_OP_USER_ENDPOINT_FORMAT
15-
- ⚑️(helm) create a dedicated svc and deployment for yprovider converter #2368
16+
- πŸ”§(backend) allow configuring settings OIDC_OP_USER_ENDPOINT_FORMAT #2306
17+
- ⚑️(helm) create a dedicated svc and deployment for yprovider converter #2358
1618
- ✨(backend) allow to leave a document #2365
17-
- ✨(frontend) add the presenter mode
18-
- πŸ“ˆ(backend) create a utils to capture event with posthog
19-
- πŸ”§(backend) new setting DOCUMENT_ALL_ENDPOINT_ENABLED
19+
- ✨(frontend) add the presenter mode #2321
20+
- πŸ“ˆ(backend) create a utils to capture event with posthog #2363
21+
- πŸ”§(backend) new setting DOCUMENT_ALL_ENDPOINT_ENABLED #2378
2022

2123
### Changed
2224

23-
- ♻️(backend) allow global search in sub documents
24-
- ✨(backend) add a breadcrumb in the search response
25+
- ♻️(backend) allow global search in sub documents #2310
26+
- ✨(backend) add a breadcrumb in the search response #2310
2527
- ♻️(frontend) move doc action buttons to fix toolbar #2360
2628
- ♿️(frontend) add aria-hidden to decorative avatar SVGs in share modal #2324
2729
- πŸ—οΈ(frontend) move comments to its own folder feature #2374
2830
- ♿️(frontend) align mobile header menu aria-label i18n pattern #2377
2931

3032
### Fixed
3133

32-
- πŸ›(docs) run migration 0027 without superuser role
33-
- πŸ›(backend) prevent admins/owners from overwriting other users comments
34-
- πŸ›(y-provider) return empty output when converting empty Yjs document
34+
- πŸ›(docs) run migration 0027 without superuser role #2284
35+
- πŸ›(backend) prevent admins/owners from overwriting other users comments #2323
36+
- πŸ›(y-provider) return empty output when converting empty Yjs document #2328
3537
- πŸ›(backend) use computed_link_reach in handle_onboarding_document #2305
3638
- πŸ›(frontend) fix toolbar blocknote hidden #2373
3739
- πŸ›(frontend) fix application crashes when using GTranslate and zoom #2372
3840
- πŸ›(frontend) fix emoji pdf not matching #2375
39-
- πŸ›(backend) fix UnorderedObjectListWarning for DocumentAskForAccess viewset
41+
- πŸ›(backend) fix UnorderedObjectListWarning for DocumentAskForAccess
42+
viewset #2382
4043

4144
## [v5.1.0] - 2026-05-11
4245

@@ -1333,7 +1336,8 @@ and this project adheres to
13331336
- ✨(frontend) Coming Soon page (#67)
13341337
- πŸš€ Impress, project to manage your documents easily and collaboratively.
13351338

1336-
[unreleased]: https://github.com/suitenumerique/docs/compare/v5.1.0...main
1339+
[unreleased]: https://github.com/suitenumerique/docs/compare/v5.2.0...main
1340+
[v5.2.0]: https://github.com/suitenumerique/docs/releases/v5.2.0
13371341
[v5.1.0]: https://github.com/suitenumerique/docs/releases/v5.1.0
13381342
[v5.0.0]: https://github.com/suitenumerique/docs/releases/v5.0.0
13391343
[v4.8.6]: https://github.com/suitenumerique/docs/releases/v4.8.6

β€Žsrc/backend/pyproject.tomlβ€Ž

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

88
[project]
99
name = "impress"
10-
version = "5.1.0"
10+
version = "5.2.0"
1111
authors = [{ "name" = "DINUM", "email" = "dev@mail.numerique.gouv.fr" }]
1212
classifiers = [
1313
"Development Status :: 5 - Production/Stable",

β€Žsrc/backend/uv.lockβ€Ž

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€Ž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": "5.1.0",
3+
"version": "5.2.0",
44
"repository": "https://github.com/suitenumerique/docs",
55
"author": "DINUM",
66
"license": "MIT",

β€Ž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": "5.1.0",
3+
"version": "5.2.0",
44
"repository": "https://github.com/suitenumerique/docs",
55
"author": "DINUM",
66
"license": "MIT",

β€Ž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": "5.1.0",
3+
"version": "5.2.0",
44
"private": true,
55
"repository": "https://github.com/suitenumerique/docs",
66
"author": "DINUM",

β€Žsrc/frontend/packages/eslint-plugin-docs/package.jsonβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eslint-plugin-docs",
3-
"version": "5.1.0",
3+
"version": "5.2.0",
44
"repository": "https://github.com/suitenumerique/docs",
55
"author": "DINUM",
66
"license": "MIT",

β€Ž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": "5.1.0",
3+
"version": "5.2.0",
44
"repository": "https://github.com/suitenumerique/docs",
55
"author": "DINUM",
66
"license": "MIT",

β€Ž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": "5.1.0",
3+
"version": "5.2.0",
44
"description": "Y.js provider for docs",
55
"repository": "https://github.com/suitenumerique/docs",
66
"license": "MIT",

β€Žsrc/helm/helmfile.yaml.gotmplβ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
environments:
22
dev:
33
values:
4-
- version: 5.1.0
4+
- version: 5.2.0
55
feature:
66
values:
7-
- version: 5.1.0
7+
- version: 5.2.0
88
feature: ci
99
domain: example.com
1010
imageTag: demo

0 commit comments

Comments
Β (0)