Skip to content

Commit 83de4dd

Browse files
committed
🔖(minor) release 3.9.0
Added - ✨(frontend) create skeleton component for DocEditor - ✨(frontend) add an EmojiPicker in the document tree and title - ✨(frontend) ajustable left panel Changed: - ♻️(frontend) adapt custom blocks to new implementation - ♻️(backend) increase user short_name field length - 🚸(frontend) separate viewers from editors Fixed: - 🐛(frontend) fix duplicate document entries in grid - 🐛(backend) fix trashbin list - ♿(frontend) improve accessibility: - ♿(frontend) remove empty alt on logo due to Axe a11y error - 🐛(backend) fix s3 version_id validation - 🐛(frontend) retry check media status after page reload - 🐛(frontend) fix Interlinking memory leak - 🐛(frontend) button new doc UI fix - 🐛(frontend) interlinking UI fix
1 parent e5581e5 commit 83de4dd

File tree

11 files changed

+15
-12
lines changed

11 files changed

+15
-12
lines changed

CHANGELOG.md

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

77
## [Unreleased]
88

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

1113
- ✨(frontend) create skeleton component for DocEditor #1491
@@ -841,7 +843,8 @@ and this project adheres to
841843
- ✨(frontend) Coming Soon page (#67)
842844
- 🚀 Impress, project to manage your documents easily and collaboratively.
843845

844-
[unreleased]: https://github.com/suitenumerique/docs/compare/v3.8.2...main
846+
[unreleased]: https://github.com/suitenumerique/docs/compare/v3.9.0...main
847+
[v3.9.0]: https://github.com/suitenumerique/docs/releases/v3.9.0
845848
[v3.8.2]: https://github.com/suitenumerique/docs/releases/v3.8.2
846849
[v3.8.1]: https://github.com/suitenumerique/docs/releases/v3.8.1
847850
[v3.8.0]: https://github.com/suitenumerique/docs/releases/v3.8.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.8.2"
10+
version = "3.9.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.8.2",
3+
"version": "3.9.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.8.2",
3+
"version": "3.9.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.8.2",
3+
"version": "3.9.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.8.2",
3+
"version": "3.9.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.8.2",
3+
"version": "3.9.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.8.2",
3+
"version": "3.9.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.8.2
4+
- version: 3.9.0
55
feature:
66
values:
7-
- version: 3.8.2
7+
- version: 3.9.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.8.2
4+
version: 3.9.0
55
appVersion: latest

0 commit comments

Comments
 (0)