mirror of
https://github.com/suitenumerique/docs
synced 2026-04-21 13:37:20 +00:00
🔖(minor) release 4.8.0
Added: - ✨(backend) add a is_first_connection flag to the User model - ✨(frontend) add onboarding modal with help menu button Changed: - ♿(frontend) localize LaGaufre label fallback in Docs - ✨(backend) add a migration cleaning on-boarding document accesses - ⬆️(frontend) upgrade Next.js to v16 - ♿️(frontend) fix aria-label and landmark on document banner state - 🌐(i18n) add "new window" translation key for waffle aria-label Fixed: - 🐛(backend) create a link_trace record for on-boarding documents - 🐛(backend) manage race condition when creating sandbox document - 🐛(frontend) fix flickering left panel - ♿️(frontend) improve doc tree keyboard navigation
This commit is contained in:
parent
eb2ee1bb7f
commit
51e8332b95
11 changed files with 19 additions and 16 deletions
11
CHANGELOG.md
11
CHANGELOG.md
|
|
@ -6,6 +6,8 @@ and this project adheres to
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## [v4.8.0] - 2026-03-13
|
||||
|
||||
### Added
|
||||
|
||||
- ✨(backend) add a is_first_connection flag to the User model #1938
|
||||
|
|
@ -14,15 +16,15 @@ and this project adheres to
|
|||
### Changed
|
||||
|
||||
- ♿(frontend) localize LaGaufre label fallback in Docs #1979
|
||||
- ✨(backend) add a migration cleaning on-boarding document accesses
|
||||
- ✨(backend) add a migration cleaning on-boarding document accesses #1971
|
||||
- ⬆️(frontend) upgrade Next.js to v16 #1980
|
||||
- ♿️(frontend) fix aria-label and landmark on document banner state #1986
|
||||
- 🌐(i18n) add "new window" translation key for waffle aria-label #1984
|
||||
|
||||
### Fixed
|
||||
|
||||
- 🐛(backend) create a link_trace record for on-boarding documents
|
||||
- 🐛(backend) manage race condition when creating sandbox document
|
||||
- 🐛(backend) create a link_trace record for on-boarding documents #1971
|
||||
- 🐛(backend) manage race condition when creating sandbox document #1971
|
||||
- 🐛(frontend) fix flickering left panel #1989
|
||||
- ♿️(frontend) improve doc tree keyboard navigation #1981
|
||||
|
||||
|
|
@ -1102,7 +1104,8 @@ and this project adheres to
|
|||
- ✨(frontend) Coming Soon page (#67)
|
||||
- 🚀 Impress, project to manage your documents easily and collaboratively.
|
||||
|
||||
[unreleased]: https://github.com/suitenumerique/docs/compare/v4.7.0...main
|
||||
[unreleased]: https://github.com/suitenumerique/docs/compare/v4.8.0...main
|
||||
[v4.8.0]: https://github.com/suitenumerique/docs/releases/v4.8.0
|
||||
[v4.7.0]: https://github.com/suitenumerique/docs/releases/v4.7.0
|
||||
[v4.6.0]: https://github.com/suitenumerique/docs/releases/v4.6.0
|
||||
[v4.5.0]: https://github.com/suitenumerique/docs/releases/v4.5.0
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta"
|
|||
|
||||
[project]
|
||||
name = "impress"
|
||||
version = "4.7.0"
|
||||
version = "4.8.0"
|
||||
authors = [{ "name" = "DINUM", "email" = "dev@mail.numerique.gouv.fr" }]
|
||||
classifiers = [
|
||||
"Development Status :: 5 - Production/Stable",
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "app-e2e",
|
||||
"version": "4.7.0",
|
||||
"version": "4.8.0",
|
||||
"repository": "https://github.com/suitenumerique/docs",
|
||||
"author": "DINUM",
|
||||
"license": "MIT",
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "app-impress",
|
||||
"version": "4.7.0",
|
||||
"version": "4.8.0",
|
||||
"repository": "https://github.com/suitenumerique/docs",
|
||||
"author": "DINUM",
|
||||
"license": "MIT",
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "impress",
|
||||
"version": "4.7.0",
|
||||
"version": "4.8.0",
|
||||
"private": true,
|
||||
"repository": "https://github.com/suitenumerique/docs",
|
||||
"author": "DINUM",
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "eslint-plugin-docs",
|
||||
"version": "4.7.0",
|
||||
"version": "4.8.0",
|
||||
"repository": "https://github.com/suitenumerique/docs",
|
||||
"author": "DINUM",
|
||||
"license": "MIT",
|
||||
|
|
@ -25,7 +25,6 @@
|
|||
"@typescript-eslint/utils": "8.56.0",
|
||||
"@vitest/eslint-plugin": "1.6.9",
|
||||
"eslint-config-next": "16.1.6",
|
||||
"eslint-plugin-react-hooks": "5.2.0",
|
||||
"eslint-config-prettier": "10.1.8",
|
||||
"eslint-plugin-import": "2.32.0",
|
||||
"eslint-plugin-jest": "29.15.0",
|
||||
|
|
@ -33,6 +32,7 @@
|
|||
"eslint-plugin-playwright": "2.5.1",
|
||||
"eslint-plugin-prettier": "5.5.5",
|
||||
"eslint-plugin-react": "7.37.5",
|
||||
"eslint-plugin-react-hooks": "5.2.0",
|
||||
"eslint-plugin-testing-library": "7.15.4",
|
||||
"prettier": "3.8.1"
|
||||
},
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "packages-i18n",
|
||||
"version": "4.7.0",
|
||||
"version": "4.8.0",
|
||||
"repository": "https://github.com/suitenumerique/docs",
|
||||
"author": "DINUM",
|
||||
"license": "MIT",
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "server-y-provider",
|
||||
"version": "4.7.0",
|
||||
"version": "4.8.0",
|
||||
"description": "Y.js provider for docs",
|
||||
"repository": "https://github.com/suitenumerique/docs",
|
||||
"license": "MIT",
|
||||
|
|
|
|||
|
|
@ -1,10 +1,10 @@
|
|||
environments:
|
||||
dev:
|
||||
values:
|
||||
- version: 4.7.0
|
||||
- version: 4.8.0
|
||||
feature:
|
||||
values:
|
||||
- version: 4.7.0
|
||||
- version: 4.8.0
|
||||
feature: ci
|
||||
domain: example.com
|
||||
imageTag: demo
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
apiVersion: v2
|
||||
type: application
|
||||
name: docs
|
||||
version: 4.7.0
|
||||
version: 4.8.0
|
||||
appVersion: latest
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "mail_mjml",
|
||||
"version": "4.7.0",
|
||||
"version": "4.8.0",
|
||||
"description": "An util to generate html and text django's templates from mjml templates",
|
||||
"type": "module",
|
||||
"dependencies": {
|
||||
|
|
|
|||
Loading…
Reference in a new issue