Skip to content

Commit d2f953a

Browse files
committed
πŸ”–(major) release 4.0.0
Added: - ✨ Add comments feature to the editor - ✨(backend) Comments on text editor - ✨(frontend) link to create new doc Changed: - ⚑️(sw) stop to cache external resources likes videos - πŸ’₯(frontend) upgrade to ui-kit v2 - ⚑️(frontend) improve perf on upload and table of contents - β™Ώ(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 92d3f63 commit d2f953a

File tree

12 files changed

+42
-16
lines changed

12 files changed

+42
-16
lines changed

β€ŽCHANGELOG.mdβ€Ž

Lines changed: 8 additions & 5 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-12-01
10+
911
### Added
1012

1113
- ✨ Add comments feature to the editor #1330
@@ -15,14 +17,14 @@ and this project adheres to
1517
### Changed
1618

1719
- ⚑️(sw) stop to cache external resources likes videos #1655
18-
- πŸ’₯(frontend) upgrade to ui-kit v2
20+
- πŸ’₯(frontend) upgrade to ui-kit v2 #1605
1921
- ⚑️(frontend) improve perf on upload and table of contents #1662
20-
21-
### Fixed
22-
2322
- β™Ώ(frontend) improve accessibility:
2423
- β™Ώ(frontend) improve share modal button accessibility #1626
2524
- β™Ώ(frontend) improve screen reader support in DocShare modal #1628
25+
26+
### Fixed
27+
2628
- πŸ›(frontend) fix toolbar not activated when reader #1640
2729
- πŸ›(frontend) preserve left panel width on window resize #1588
2830
- πŸ›(frontend) prevent duplicate as first character in title #1595
@@ -898,7 +900,8 @@ and this project adheres to
898900
- ✨(frontend) Coming Soon page (#67)
899901
- πŸš€ Impress, project to manage your documents easily and collaboratively.
900902

901-
[unreleased]: https://github.com/suitenumerique/docs/compare/v3.10.0...main
903+
[unreleased]: https://github.com/suitenumerique/docs/compare/v4.0.0...main
904+
[v4.0.0]: https://github.com/suitenumerique/docs/releases/v4.0.0
902905
[v3.10.0]: https://github.com/suitenumerique/docs/releases/v3.10.0
903906
[v3.9.0]: https://github.com/suitenumerique/docs/releases/v3.9.0
904907
[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 overridden 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" = "[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.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)