🔖(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
This commit is contained in:
Anthony LC
2026-06-03 12:09:39 +02:00
parent 0ed6167b56
commit 9633f5f7a0
12 changed files with 29 additions and 28 deletions
+17 -16
View File
@@ -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
+1 -1
View File
@@ -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",
+1 -1
View File
@@ -883,7 +883,7 @@ wheels = [
[[package]]
name = "impress"
version = "5.1.0"
version = "5.2.0"
source = { editable = "." }
dependencies = [
{ name = "beautifulsoup4" },
+1 -1
View File
@@ -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",
+1 -1
View File
@@ -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",
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "impress",
"version": "5.1.0",
"version": "5.2.0",
"private": true,
"repository": "https://github.com/suitenumerique/docs",
"author": "DINUM",
@@ -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",
+1 -1
View File
@@ -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",
+1 -1
View File
@@ -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",
+2 -2
View File
@@ -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
+1 -1
View File
@@ -1,5 +1,5 @@
apiVersion: v2
type: application
name: docs
version: 5.1.0
version: 5.2.0
appVersion: latest
+1 -1
View File
@@ -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": {