🔖(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
This commit is contained in:
13
CHANGELOG.md
13
CHANGELOG.md
@@ -6,6 +6,8 @@ and this project adheres to
|
|||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [4.0.0] - 2025-12-01
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
||||||
- ✨ Add comments feature to the editor #1330
|
- ✨ Add comments feature to the editor #1330
|
||||||
@@ -15,14 +17,14 @@ and this project adheres to
|
|||||||
### Changed
|
### Changed
|
||||||
|
|
||||||
- ⚡️(sw) stop to cache external resources likes videos #1655
|
- ⚡️(sw) stop to cache external resources likes videos #1655
|
||||||
- 💥(frontend) upgrade to ui-kit v2
|
- 💥(frontend) upgrade to ui-kit v2 #1605
|
||||||
- ⚡️(frontend) improve perf on upload and table of contents #1662
|
- ⚡️(frontend) improve perf on upload and table of contents #1662
|
||||||
|
|
||||||
### Fixed
|
|
||||||
|
|
||||||
- ♿(frontend) improve accessibility:
|
- ♿(frontend) improve accessibility:
|
||||||
- ♿(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) fix toolbar not activated when reader #1640
|
||||||
- 🐛(frontend) preserve left panel width on window resize #1588
|
- 🐛(frontend) preserve left panel width on window resize #1588
|
||||||
- 🐛(frontend) prevent duplicate as first character in title #1595
|
- 🐛(frontend) prevent duplicate as first character in title #1595
|
||||||
@@ -898,7 +900,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.10.0...main
|
[unreleased]: https://github.com/suitenumerique/docs/compare/v4.0.0...main
|
||||||
|
[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
|
||||||
[v3.8.2]: https://github.com/suitenumerique/docs/releases/v3.8.2
|
[v3.8.2]: https://github.com/suitenumerique/docs/releases/v3.8.2
|
||||||
|
|||||||
23
UPGRADE.md
23
UPGRADE.md
@@ -16,6 +16,29 @@ the following command inside your docker container:
|
|||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [4.0.0] - 2025-11-26
|
||||||
|
|
||||||
|
- ⚠️ 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.
|
||||||
|
More information about the changes in the design system can be found here:
|
||||||
|
- https://suitenumerique.github.io/cunningham/storybook/?path=/docs/migrating-from-v3-to-v4--docs
|
||||||
|
- https://github.com/suitenumerique/docs/pull/1605
|
||||||
|
- https://github.com/suitenumerique/docs/blob/main/docs/theming.md
|
||||||
|
|
||||||
|
- 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:
|
||||||
|
```json
|
||||||
|
{
|
||||||
|
...,
|
||||||
|
"header": {
|
||||||
|
"icon": {
|
||||||
|
"src": "your_logo_src",
|
||||||
|
"width": "your_logo_width",
|
||||||
|
"height": "your_logo_height"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
## [3.3.0] - 2025-05-22
|
## [3.3.0] - 2025-05-22
|
||||||
|
|
||||||
⚠️ 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.
|
⚠️ 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.
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta"
|
|||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "impress"
|
name = "impress"
|
||||||
version = "3.10.0"
|
version = "4.0.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",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "app-e2e",
|
"name": "app-e2e",
|
||||||
"version": "3.10.0",
|
"version": "4.0.0",
|
||||||
"repository": "https://github.com/suitenumerique/docs",
|
"repository": "https://github.com/suitenumerique/docs",
|
||||||
"author": "DINUM",
|
"author": "DINUM",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "app-impress",
|
"name": "app-impress",
|
||||||
"version": "3.10.0",
|
"version": "4.0.0",
|
||||||
"repository": "https://github.com/suitenumerique/docs",
|
"repository": "https://github.com/suitenumerique/docs",
|
||||||
"author": "DINUM",
|
"author": "DINUM",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "impress",
|
"name": "impress",
|
||||||
"version": "3.10.0",
|
"version": "4.0.0",
|
||||||
"private": true,
|
"private": true,
|
||||||
"repository": "https://github.com/suitenumerique/docs",
|
"repository": "https://github.com/suitenumerique/docs",
|
||||||
"author": "DINUM",
|
"author": "DINUM",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "eslint-plugin-docs",
|
"name": "eslint-plugin-docs",
|
||||||
"version": "3.10.0",
|
"version": "4.0.0",
|
||||||
"repository": "https://github.com/suitenumerique/docs",
|
"repository": "https://github.com/suitenumerique/docs",
|
||||||
"author": "DINUM",
|
"author": "DINUM",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "packages-i18n",
|
"name": "packages-i18n",
|
||||||
"version": "3.10.0",
|
"version": "4.0.0",
|
||||||
"repository": "https://github.com/suitenumerique/docs",
|
"repository": "https://github.com/suitenumerique/docs",
|
||||||
"author": "DINUM",
|
"author": "DINUM",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "server-y-provider",
|
"name": "server-y-provider",
|
||||||
"version": "3.10.0",
|
"version": "4.0.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",
|
||||||
|
|||||||
@@ -1,10 +1,10 @@
|
|||||||
environments:
|
environments:
|
||||||
dev:
|
dev:
|
||||||
values:
|
values:
|
||||||
- version: 3.10.0
|
- version: 4.0.0
|
||||||
feature:
|
feature:
|
||||||
values:
|
values:
|
||||||
- version: 3.10.0
|
- version: 4.0.0
|
||||||
feature: ci
|
feature: ci
|
||||||
domain: example.com
|
domain: example.com
|
||||||
imageTag: demo
|
imageTag: demo
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
apiVersion: v2
|
apiVersion: v2
|
||||||
type: application
|
type: application
|
||||||
name: docs
|
name: docs
|
||||||
version: 3.10.0
|
version: 4.0.0
|
||||||
appVersion: latest
|
appVersion: latest
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "mail_mjml",
|
"name": "mail_mjml",
|
||||||
"version": "3.10.0",
|
"version": "4.0.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": {
|
||||||
|
|||||||
Reference in New Issue
Block a user