🔖(minor) release 4.1.0

Added:
- ️(frontend) export html

Changed:
- (frontend) improve accessibility:
  - (frontend) add skip to content button for keyboard
    accessibility
  - (frontend) fix toggle panel button a11y labels
- 🔒️(frontend) remove dangerouslySetInnerHTML from codebase
- ️(frontend) improve Comments feature

Fixed:
- 🐛(nginx) fix / location to handle new static pages
This commit is contained in:
Anthony LC
2025-12-09 12:12:21 +01:00
parent af15e77713
commit 12cc79b640
11 changed files with 22 additions and 22 deletions

View File

@@ -6,6 +6,8 @@ and this project adheres to
## [Unreleased] ## [Unreleased]
## [4.1.0] - 2025-12-09
### Added ### Added
- ⚡️(frontend) export html #1669 - ⚡️(frontend) export html #1669
@@ -20,7 +22,7 @@ and this project adheres to
### Fixed ### Fixed
- 🐛(nginx) fix / location to handle new static pages - 🐛(nginx) fix / location to handle new static pages #1682
- 🐛(frontend) rerendering during resize window #1715 - 🐛(frontend) rerendering during resize window #1715
## [4.0.0] - 2025-12-01 ## [4.0.0] - 2025-12-01
@@ -31,12 +33,6 @@ and this project adheres to
- ✨(backend) Comments on text editor #1330 - ✨(backend) Comments on text editor #1330
- ✨(frontend) link to create new doc #1574 - ✨(frontend) link to create new doc #1574
### Fixed
- 🐛(frontend) fix toolbar not activated when reader #1640
- 🐛(frontend) preserve left panel width on window resize #1588
- 🐛(frontend) prevent duplicate as first character in title #1595
### Changed ### Changed
- ⚡️(sw) stop to cache external resources likes videos #1655 - ⚡️(sw) stop to cache external resources likes videos #1655
@@ -46,6 +42,12 @@ and this project adheres to
- ♿(frontend) improve share modal button accessibility #1626 - ♿(frontend) improve share modal button accessibility #1626
- ♿(frontend) improve screen reader support in DocShare modal #1628 - ♿(frontend) improve screen reader support in DocShare modal #1628
### Fixed
- 🐛(frontend) fix toolbar not activated when reader #1640
- 🐛(frontend) preserve left panel width on window resize #1588
- 🐛(frontend) prevent duplicate as first character in title #1595
## [3.10.0] - 2025-11-18 ## [3.10.0] - 2025-11-18
### Added ### Added
@@ -65,9 +67,6 @@ and this project adheres to
- ♿(frontend) improve ARIA in doc grid and editor for a11y #1519 - ♿(frontend) improve ARIA in doc grid and editor for a11y #1519
- ♿(frontend) improve accessibility and styling of summary table #1528 - ♿(frontend) improve accessibility and styling of summary table #1528
- ♿(frontend) add focus trap and enter key support to remove doc modal #1531 - ♿(frontend) add focus trap and enter key support to remove doc modal #1531
- 🐛(frontend) preserve @ character when esc is pressed after typing it #1512
- 🐛(frontend) make summary button fixed to remain visible during scroll #1581
- 🐛(frontend) fix pdf embed to use full width #1526
- 🐛(frontend) fix alignment of side menu #1597 - 🐛(frontend) fix alignment of side menu #1597
- 🐛(frontend) fix fallback translations with Trans #1620 - 🐛(frontend) fix fallback translations with Trans #1620
- 🐛(export) fix image overflow by limiting width to 600px during export #1525 - 🐛(export) fix image overflow by limiting width to 600px during export #1525
@@ -920,7 +919,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.0.0...main [unreleased]: https://github.com/suitenumerique/docs/compare/v4.1.0...main
[v4.1.0]: https://github.com/suitenumerique/docs/releases/v4.1.0
[v4.0.0]: https://github.com/suitenumerique/docs/releases/v4.0.0 [v4.0.0]: https://github.com/suitenumerique/docs/releases/v4.0.0
[v3.10.0]: https://github.com/suitenumerique/docs/releases/v3.10.0 [v3.10.0]: https://github.com/suitenumerique/docs/releases/v3.10.0
[v3.9.0]: https://github.com/suitenumerique/docs/releases/v3.9.0 [v3.9.0]: https://github.com/suitenumerique/docs/releases/v3.9.0

View File

@@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta"
[project] [project]
name = "impress" name = "impress"
version = "4.0.0" version = "4.1.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.0.0", "version": "4.1.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.0.0", "version": "4.1.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.0.0", "version": "4.1.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.0.0", "version": "4.1.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.0.0", "version": "4.1.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.0.0", "version": "4.1.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.0.0 - version: 4.1.0
feature: feature:
values: values:
- version: 4.0.0 - version: 4.1.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.0.0 version: 4.1.0
appVersion: latest appVersion: latest

View File

@@ -1,6 +1,6 @@
{ {
"name": "mail_mjml", "name": "mail_mjml",
"version": "4.0.0", "version": "4.1.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": {