🔖(minor) release 3.6.0

Added:
- 👷(CI) add bundle size check job
- (frontend) use title first emoji as doc icon in tree

Changed:
- ♻️(docs-app) Switch from Jest tests to Vitest
- (frontend) improve accessibility:
  - 🌐(frontend) set html lang attribute dynamically
  - (frontend) inject language attribute to pdf export
  - (frontend) improve accessibility of search modal
  - (frontend) add correct attributes to decorative and interactive icons
  - 🎨(frontend) improve nav structure
  - ️(frontend) keyboard interaction with menu
  - (frontend) improve header accessibility
  - (frontend) improve accessibility for decorative images in editor
- ♻️(backend) fallback to email identifier when no name
- 🐛(backend) allow ASCII characters in user sub field
- ️(frontend) improve fallback width calculation

Fixed:
- 🐛(makefile) Windows compatibility fix for Docker volume mounting
- 🐛(minio) fix user permission error with Minio and Windows
- 🐛(frontend) fix export when quote block and inline code
- 🐛(frontend) fix base64 font
- 🐛(backend) allow editor to delete subpages
- 🐛(frontend) fix dnd conflict with tree and Blocknote
- 🐛(frontend) fix display bug on homepage
This commit is contained in:
Anthony LC
2025-09-04 12:16:29 +02:00
parent cc4c67d15b
commit 9135dff088
11 changed files with 27 additions and 24 deletions

View File

@@ -8,34 +8,36 @@ and this project adheres to
## [Unreleased] ## [Unreleased]
## [3.6.0] - 2025-09-04
### Added ### Added
- 👷(CI) add bundle size check job #1268 - 👷(CI) add bundle size check job #1268
- ✨(frontend) use title first emoji as doc icon in tree - ✨(frontend) use title first emoji as doc icon in tree #1289
### Changed ### Changed
- ♻️(docs-app) Switch from Jest tests to Vitest #1269 - ♻️(docs-app) Switch from Jest tests to Vitest #1269
- ⚡️(frontend) improve accessibility: - (frontend) improve accessibility:
- #1248 - 🌐(frontend) set html lang attribute dynamically #1248
- #1235 - ♿(frontend) inject language attribute to pdf export #1235
- #1275 - ♿(frontend) improve accessibility of search modal #1275
- #1255 - ♿(frontend) add correct attributes to icons #1255
- #1262 - 🎨(frontend) improve nav structure #1262
- #1244 - ♿️(frontend) keyboard interaction with menu #1244
- #1270 - ♿(frontend) improve header accessibility #1270
- #1282 - ♿(frontend) improve accessibility for decorative images in editor #1282
- ♻️(backend) fallback to email identifier when no name #1298 - ♻️(backend) fallback to email identifier when no name #1298
- 🐛(backend) allow ASCII characters in user sub field #1295 - 🐛(backend) allow ASCII characters in user sub field #1295
- ⚡️(frontend) improve fallback width calculation #1333 - ⚡️(frontend) improve fallback width calculation #1333
### Fixed ### Fixed
- 🐛(makefile) Windows compatibility fix for Docker volume mounting #1264 - 🐛(makefile) Windows compatibility fix for Docker volume mounting #1263
- 🐛(minio) fix user permission error with Minio and Windows #1264 - 🐛(minio) fix user permission error with Minio and Windows #1263
- 🐛(frontend) fix export when quote block and inline code #1319 - 🐛(frontend) fix export when quote block and inline code #1319
- 🐛(frontend) fix base64 font #1324 - 🐛(frontend) fix base64 font #1324
- 🐛(backend) allow editor to delete subpages #1296 - 🐛(backend) allow creator to delete subpages #1297
- 🐛(frontend) fix dnd conflict with tree and Blocknote #1328 - 🐛(frontend) fix dnd conflict with tree and Blocknote #1328
- 🐛(frontend) fix display bug on homepage #1332 - 🐛(frontend) fix display bug on homepage #1332
- 🐛link role update #1287 - 🐛link role update #1287
@@ -710,7 +712,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/v3.5.0...main [unreleased]: https://github.com/suitenumerique/docs/compare/v3.6.0...main
[v3.6.0]: https://github.com/suitenumerique/docs/releases/v3.6.0
[v3.5.0]: https://github.com/suitenumerique/docs/releases/v3.5.0 [v3.5.0]: https://github.com/suitenumerique/docs/releases/v3.5.0
[v3.4.2]: https://github.com/suitenumerique/docs/releases/v3.4.2 [v3.4.2]: https://github.com/suitenumerique/docs/releases/v3.4.2
[v3.4.1]: https://github.com/suitenumerique/docs/releases/v3.4.1 [v3.4.1]: https://github.com/suitenumerique/docs/releases/v3.4.1

View File

@@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta"
[project] [project]
name = "impress" name = "impress"
version = "3.5.0" version = "3.6.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": "3.5.0", "version": "3.6.0",
"private": true, "private": true,
"scripts": { "scripts": {
"lint": "eslint . --ext .ts", "lint": "eslint . --ext .ts",

View File

@@ -1,6 +1,6 @@
{ {
"name": "app-impress", "name": "app-impress",
"version": "3.5.0", "version": "3.6.0",
"private": true, "private": true,
"scripts": { "scripts": {
"dev": "next dev", "dev": "next dev",

View File

@@ -1,6 +1,6 @@
{ {
"name": "impress", "name": "impress",
"version": "3.5.0", "version": "3.6.0",
"private": true, "private": true,
"workspaces": { "workspaces": {
"packages": [ "packages": [

View File

@@ -1,6 +1,6 @@
{ {
"name": "eslint-config-impress", "name": "eslint-config-impress",
"version": "3.5.0", "version": "3.6.0",
"license": "MIT", "license": "MIT",
"scripts": { "scripts": {
"lint": "eslint --ext .js ." "lint": "eslint --ext .js ."

View File

@@ -1,6 +1,6 @@
{ {
"name": "packages-i18n", "name": "packages-i18n",
"version": "3.5.0", "version": "3.6.0",
"private": true, "private": true,
"scripts": { "scripts": {
"extract-translation": "yarn extract-translation:impress", "extract-translation": "yarn extract-translation:impress",

View File

@@ -1,6 +1,6 @@
{ {
"name": "server-y-provider", "name": "server-y-provider",
"version": "3.5.0", "version": "3.6.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,7 +1,7 @@
environments: environments:
dev: dev:
values: values:
- version: 3.5.0 - version: 3.6.0
--- ---
repositories: repositories:
- name: bitnami - name: bitnami

View File

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

View File

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