Skip to content

Commit 1e69753

Browse files
committed
🔖(major) release 4.0.0
Added: - ✨ Add comments feature to the editor - ✨(backend) Comments on text editor Changed: - ⚡️(sw) stop to cache external resources likes videos - 💥(frontend) upgrade to ui-kit v2 - ♿(frontend) improve accessibility: - ♿(frontend) improve share modal button accessibility - ♿(frontend) improve screen reader support in DocShare modal Fixed: - 🐛(frontend) fix toolbar not activated when reader - 🐛(frontend) preserve left panel width on window resize - 🐛(frontend) prevent duplicate as first character in title
1 parent 2864669 commit 1e69753

File tree

12 files changed

+39
-13
lines changed

12 files changed

+39
-13
lines changed

CHANGELOG.md

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

77
## [Unreleased]
88

9+
## [4.0.0] - 2025-11-26
10+
911
### Added
1012

1113
- ✨ Add comments feature to the editor #1330
@@ -14,7 +16,7 @@ and this project adheres to
1416
### Changed
1517

1618
- ⚡️(sw) stop to cache external resources likes videos #1655
17-
- 💥(frontend) upgrade to ui-kit v2
19+
- 💥(frontend) upgrade to ui-kit v2 #1605
1820

1921
### Fixed
2022

@@ -896,7 +898,8 @@ and this project adheres to
896898
- ✨(frontend) Coming Soon page (#67)
897899
- 🚀 Impress, project to manage your documents easily and collaboratively.
898900

899-
[unreleased]: https://github.com/suitenumerique/docs/compare/v3.10.0...main
901+
[unreleased]: https://github.com/suitenumerique/docs/compare/v4.0.0...main
902+
[v4.0.0]: https://github.com/suitenumerique/docs/releases/v4.0.0
900903
[v3.10.0]: https://github.com/suitenumerique/docs/releases/v3.10.0
901904
[v3.9.0]: https://github.com/suitenumerique/docs/releases/v3.9.0
902905
[v3.8.2]: https://github.com/suitenumerique/docs/releases/v3.8.2

UPGRADE.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,29 @@ the following command inside your docker container:
1616

1717
## [Unreleased]
1818

19+
## [4.0.0] - 2025-11-26
20+
21+
- ⚠️ We updated `@gouvfr-lasuite/ui-kit` to `0.18.0`, so if you are customizing Docs with a css layer or with a custom template, you need to update your customization to follow the new design system structure.
22+
More information about the changes in the design system can be found here:
23+
- https://suitenumerique.github.io/cunningham/storybook/?path=/docs/migrating-from-v3-to-v4--docs
24+
- https://github.com/suitenumerique/docs/pull/1605
25+
- https://github.com/suitenumerique/docs/blob/main/docs/theming.md
26+
27+
- If you were using the `THEME_CUSTOMIZATION_FILE_PATH` and have overriden the header logo, you need to update your customization file to follow the new structure of the header, it is now:
28+
```json
29+
{
30+
...,
31+
"header": {
32+
"icon": {
33+
"src": "your_logo_src",
34+
"width": "your_logo_width",
35+
"height": "your_logo_height"
36+
}
37+
}
38+
}
39+
```
40+
41+
1942
## [3.3.0] - 2025-05-22
2043

2144
⚠️ For some advanced features (ex: Export as PDF) Docs relies on XL packages from BlockNote. These are licenced under AGPL-3.0 and are not MIT compatible. You can perfectly use Docs without these packages by setting the environment variable `PUBLISH_AS_MIT` to true. That way you'll build an image of the application without the features that are not MIT compatible. Read the [environment variables documentation](/docs/env.md) for more information.

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.10.0"
10+
version = "4.0.0"
1111
authors = [{ "name" = "DINUM", "email" = "dev@mail.numerique.gouv.fr" }]
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.10.0",
3+
"version": "4.0.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.10.0",
3+
"version": "4.0.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.10.0",
3+
"version": "4.0.0",
44
"private": true,
55
"repository": "https://github.com/suitenumerique/docs",
66
"author": "DINUM",

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eslint-plugin-docs",
3-
"version": "3.10.0",
3+
"version": "4.0.0",
44
"repository": "https://github.com/suitenumerique/docs",
55
"author": "DINUM",
66
"license": "MIT",

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

src/helm/helmfile.yaml.gotmpl

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

0 commit comments

Comments
 (0)