🔖(minor) release 4.5.0

Added:
- (frontend) integrate configurable Waffle
-  Import of documents
- 🚨(CI) gives warning if theme not updated
- (frontend) Add stat for Crisp
- (auth) add silent login
- 🔧(project) add DJANGO_EMAIL_URL_APP environment variable

Changed:
- (frontend) improve accessibility:
  - ️(frontend) fix subdoc opening and emoji pick focus
- (backend) add field for button label in email template

Fixed:
- (e2e) fix e2e test for other browsers
- 🐛(export) fix export column NaN
- 🐛(frontend) add fallback for unsupported Blocknote
  languages
- 🐛(frontend) fix emojipicker closing in tree
- 🐛(frontend) display children in favorite
- 🐛(frontend) preserve typed text after @ on escape

Removed:
- 🔥(project) remove all code related to template

Security:
- 🔒️(trivy) fix vulnerability about jaraco.context
This commit is contained in:
Anthony LC
2026-01-29 10:26:35 +01:00
committed by Manuel Raynaud
parent 52cd76eb93
commit db014cfc6f
11 changed files with 16 additions and 13 deletions

View File

@@ -6,12 +6,14 @@ and this project adheres to
## [Unreleased] ## [Unreleased]
## [v4.5.0] - 2026-01-28
### Added ### Added
- ✨(frontend) integrate configurable Waffle #1795 - ✨(frontend) integrate configurable Waffle #1795
- ✨ Import of documents #1609 - ✨ Import of documents #1609
- 🚨(CI) gives warning if theme not updated #1811 - 🚨(CI) gives warning if theme not updated #1811
- ✨(frontend) Add stat from Crisp #1824 - ✨(frontend) Add stat for Crisp #1824
- ✨(auth) add silent login #1690 - ✨(auth) add silent login #1690
- 🔧(project) add DJANGO_EMAIL_URL_APP environment variable #1825 - 🔧(project) add DJANGO_EMAIL_URL_APP environment variable #1825
@@ -1022,7 +1024,8 @@ and this project adheres to
- ✨(frontend) Coming Soon page (#67) - ✨(frontend) Coming Soon page (#67)
- 🚀 Impress, project to manage your documents easily and collaboratively. - 🚀 Impress, project to manage your documents easily and collaboratively.
[unreleased]: https://github.com/suitenumerique/docs/compare/v4.4.0...main [unreleased]: https://github.com/suitenumerique/docs/compare/v4.5.0...main
[v4.5.0]: https://github.com/suitenumerique/docs/releases/v4.5.0
[v4.4.0]: https://github.com/suitenumerique/docs/releases/v4.4.0 [v4.4.0]: https://github.com/suitenumerique/docs/releases/v4.4.0
[v4.3.0]: https://github.com/suitenumerique/docs/releases/v4.3.0 [v4.3.0]: https://github.com/suitenumerique/docs/releases/v4.3.0
[v4.2.0]: https://github.com/suitenumerique/docs/releases/v4.2.0 [v4.2.0]: https://github.com/suitenumerique/docs/releases/v4.2.0

View File

@@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta"
[project] [project]
name = "impress" name = "impress"
version = "4.4.0" version = "4.5.0"
authors = [{ "name" = "DINUM", "email" = "dev@mail.numerique.gouv.fr" }] authors = [{ "name" = "DINUM", "email" = "dev@mail.numerique.gouv.fr" }]
classifiers = [ classifiers = [
"Development Status :: 5 - Production/Stable", "Development Status :: 5 - Production/Stable",

View File

@@ -1,6 +1,6 @@
{ {
"name": "app-e2e", "name": "app-e2e",
"version": "4.4.0", "version": "4.5.0",
"repository": "https://github.com/suitenumerique/docs", "repository": "https://github.com/suitenumerique/docs",
"author": "DINUM", "author": "DINUM",
"license": "MIT", "license": "MIT",

View File

@@ -1,6 +1,6 @@
{ {
"name": "app-impress", "name": "app-impress",
"version": "4.4.0", "version": "4.5.0",
"repository": "https://github.com/suitenumerique/docs", "repository": "https://github.com/suitenumerique/docs",
"author": "DINUM", "author": "DINUM",
"license": "MIT", "license": "MIT",

View File

@@ -1,6 +1,6 @@
{ {
"name": "impress", "name": "impress",
"version": "4.4.0", "version": "4.5.0",
"private": true, "private": true,
"repository": "https://github.com/suitenumerique/docs", "repository": "https://github.com/suitenumerique/docs",
"author": "DINUM", "author": "DINUM",

View File

@@ -1,6 +1,6 @@
{ {
"name": "eslint-plugin-docs", "name": "eslint-plugin-docs",
"version": "4.4.0", "version": "4.5.0",
"repository": "https://github.com/suitenumerique/docs", "repository": "https://github.com/suitenumerique/docs",
"author": "DINUM", "author": "DINUM",
"license": "MIT", "license": "MIT",

View File

@@ -1,6 +1,6 @@
{ {
"name": "packages-i18n", "name": "packages-i18n",
"version": "4.4.0", "version": "4.5.0",
"repository": "https://github.com/suitenumerique/docs", "repository": "https://github.com/suitenumerique/docs",
"author": "DINUM", "author": "DINUM",
"license": "MIT", "license": "MIT",

View File

@@ -1,6 +1,6 @@
{ {
"name": "server-y-provider", "name": "server-y-provider",
"version": "4.4.0", "version": "4.5.0",
"description": "Y.js provider for docs", "description": "Y.js provider for docs",
"repository": "https://github.com/suitenumerique/docs", "repository": "https://github.com/suitenumerique/docs",
"license": "MIT", "license": "MIT",

View File

@@ -1,10 +1,10 @@
environments: environments:
dev: dev:
values: values:
- version: 4.4.0 - version: 4.5.0
feature: feature:
values: values:
- version: 4.4.0 - version: 4.5.0
feature: ci feature: ci
domain: example.com domain: example.com
imageTag: demo imageTag: demo

View File

@@ -1,5 +1,5 @@
apiVersion: v2 apiVersion: v2
type: application type: application
name: docs name: docs
version: 4.4.0 version: 4.5.0
appVersion: latest appVersion: latest

View File

@@ -1,6 +1,6 @@
{ {
"name": "mail_mjml", "name": "mail_mjml",
"version": "4.4.0", "version": "4.5.0",
"description": "An util to generate html and text django's templates from mjml templates", "description": "An util to generate html and text django's templates from mjml templates",
"type": "module", "type": "module",
"dependencies": { "dependencies": {