Skip to content

Commit b056dbf

Browse files
committed
🔖(minor) release 3.8.0
Added: - ✨(frontend) add pdf block to the editor - ✨List and restore deleted docs Changed: - ♻️(frontend) Refactor Auth component for improved redirection logic - ♻️(frontend) replace Arial font-family with token font - ♿(frontend) improve accessibility: - ♿(frontend) enable enter key to open documentss - ♿(frontend) improve modal a11y: structure, labels, title - ♿improve NVDA navigation in DocShareModal - ♿ improve accessibility by adding landmark roles to layout - ♿ add document visible in list and openable via enter key - ♿ add pdf outline property to enable bookmarks display - ♿ hide decorative icons from assistive tech with aria-hidden - ♿ fix rgaa 1.9.1: convert to figure/figcaption structure - ♿ remove redundant aria-label to avoid over-accessibility - ♿ remove redundant aria-label on hidden icons and update tests - ♿ improve semantic structure and aria roles of leftpanel - ♿ add default background to left panel for better accessibility - ♿ restyle checked checkboxes: removing strikethrough - ♿ add h1 for SR on 40X pages and remove alt texts - ♿ update labels and shared document icon accessibility - 🍱(frontend) Fonts GDPR compliants - ♻️(service-worker) improve SW registration and update handling Fixed: - 🐛(backend) duplicate sub docs as root for reader users - ⚗️(service-worker) remove index from cache first strategy - 🐛(frontend) fix 404 page when reload 403 page - 🐛(frontend) fix legacy role computation - 🛂(frontend) block editing title when not allowed - 🐛(frontend) scroll back to top when navigate to a document - 🐛(frontend) fix export pdf emoji problem - 🐛(frontend) fix attachment download filename - 🐛(frontend) exclude h4-h6 headings from table of contents - 🔒(frontend) prevent readers from changing callout emoji - 🐛(frontend) fix overlapping placeholders in multi-column layout - 🐛(backend) filter invitation with case insensitive email - 🐛(frontend) reduce no access image size from 450 to 300 - 🐛(frontend) preserve interlink style on drag-and-drop in editor - ✨(frontend) load docs logo from public folder via url - 🔧(keycloak) Fix https required issue in dev mode
1 parent 771ef24 commit b056dbf

File tree

11 files changed

+19
-16
lines changed

11 files changed

+19
-16
lines changed

CHANGELOG.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ and this project adheres to
66

77
## [Unreleased]
88

9+
## [3.8.0] - 2025-10-14
10+
911
### Added
1012

1113
- ✨(frontend) add pdf block to the editor #1293
@@ -36,7 +38,7 @@ and this project adheres to
3638

3739
### Fixed
3840

39-
- 🐛(backend) duplicate sub docs as root for reader users
41+
- 🐛(backend) duplicate sub docs as root for reader users #1385
4042
- ⚗️(service-worker) remove index from cache first strategy #1395
4143
- 🐛(frontend) fix 404 page when reload 403 page #1402
4244
- 🐛(frontend) fix legacy role computation #1376
@@ -47,10 +49,11 @@ and this project adheres to
4749
- 🐛(frontend) exclude h4-h6 headings from table of contents #1441
4850
- 🔒(frontend) prevent readers from changing callout emoji #1449
4951
- 🐛(frontend) fix overlapping placeholders in multi-column layout #1455
50-
- 🐛(backend) filter invitation with case insensitive email
52+
- 🐛(backend) filter invitation with case insensitive email #1457
5153
- 🐛(frontend) reduce no access image size from 450 to 300 #1463
5254
- 🐛(frontend) preserve interlink style on drag-and-drop in editor #1460
5355
- ✨(frontend) load docs logo from public folder via url #1462
56+
- 🔧(keycloak) Fix https required issue in dev mode #1286
5457

5558
## [3.7.0] - 2025-09-12
5659

@@ -114,7 +117,6 @@ and this project adheres to
114117
- 🐛(frontend) fix dnd conflict with tree and Blocknote #1328
115118
- 🐛(frontend) fix display bug on homepage #1332
116119
- 🐛link role update #1287
117-
- 🔧(keycloak) Fix https required issue in dev mode #1286
118120

119121
## [3.5.0] - 2025-07-31
120122

@@ -786,7 +788,8 @@ and this project adheres to
786788
- ✨(frontend) Coming Soon page (#67)
787789
- 🚀 Impress, project to manage your documents easily and collaboratively.
788790

789-
[unreleased]: https://github.com/suitenumerique/docs/compare/v3.7.0...main
791+
[unreleased]: https://github.com/suitenumerique/docs/compare/v3.8.0...main
792+
[v3.8.0]: https://github.com/suitenumerique/docs/releases/v3.8.0
790793
[v3.7.0]: https://github.com/suitenumerique/docs/releases/v3.7.0
791794
[v3.6.0]: https://github.com/suitenumerique/docs/releases/v3.6.0
792795
[v3.5.0]: https://github.com/suitenumerique/docs/releases/v3.5.0

src/backend/pyproject.toml

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

88
[project]
99
name = "impress"
10-
version = "3.7.0"
10+
version = "3.8.0"
1111
authors = [{ "name" = "DINUM", "email" = "[email protected]" }]
1212
classifiers = [
1313
"Development Status :: 5 - Production/Stable",

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": "3.7.0",
3+
"version": "3.8.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": "3.7.0",
3+
"version": "3.8.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": "3.7.0",
3+
"version": "3.8.0",
44
"private": true,
55
"repository": "https://github.com/suitenumerique/docs",
66
"author": "DINUM",

src/frontend/packages/eslint-plugin-docs/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eslint-plugin-docs",
3-
"version": "3.7.0",
3+
"version": "3.8.0",
44
"repository": "https://github.com/suitenumerique/docs",
55
"author": "DINUM",
66
"license": "MIT",
@@ -21,6 +21,7 @@
2121
"@tanstack/eslint-plugin-query": "5.86.0",
2222
"@typescript-eslint/eslint-plugin": "*",
2323
"@typescript-eslint/parser": "*",
24+
"@vitest/eslint-plugin": "1.0.1",
2425
"eslint-config-next": "15.5.3",
2526
"eslint-config-prettier": "10.1.8",
2627
"eslint-plugin-import": "2.32.0",
@@ -30,7 +31,6 @@
3031
"eslint-plugin-prettier": "5.5.4",
3132
"eslint-plugin-react": "7.37.5",
3233
"eslint-plugin-testing-library": "7.6.8",
33-
"@vitest/eslint-plugin": "1.0.1",
3434
"prettier": "3.6.2"
3535
},
3636
"packageManager": "[email protected]"

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

src/helm/helmfile.yaml

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: 3.7.0
4+
- version: 3.8.0
55
feature:
66
values:
7-
- version: 3.7.0
7+
- version: 3.8.0
88
feature: ci
99
domain: example.com
1010
imageTag: demo

src/helm/impress/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
apiVersion: v2
22
type: application
33
name: docs
4-
version: 3.7.0
4+
version: 3.8.0
55
appVersion: latest

0 commit comments

Comments
 (0)