Skip to content

Commit 2e6cb10

Browse files
committed
🔖(minor) release 3.4.0
Added: - ✨(frontend) multi-pages - ✨(frontend) Duplicate a doc - ✨Ask for access - ✨(frontend) add customization for translations - ✨(backend) add ancestors links definitions to document abilities - ✨(backend) include ancestors accesses on document accesses list view - ✨(backend) add ancestors links reach and role to document API - 📝(project) add troubleshoot doc - 📝(project) add system-requirement doc - 🔧(front) configure x-frame-options to DENY in nginx conf - ✨(backend) allow to disable checking unsafe mimetype on attachment upload - ✨(doc) add documentation to install with compose - ✨ Give priority to users connected to collaboration server (aka no websocket feature) Changed: - ♻️(backend) stop requiring owner for non-root documents - ♻️(backend) simplify roles by ranking them and return only the max role - 📌(yjs) stop pinning node to minor version on yjs docker image - 🧑‍💻(docker) add .next to .dockerignore - 🧑‍💻(docker) handle frontend development images with docker compose - 🧑‍💻(docker) add y-provider config to development environment - ⚡️(frontend) optimize document fetch error handling Fixed: - 🐛(backend) fix link definition select options linked to ancestors - 🐛(frontend) table of content disappearing - 🐛(frontend) fix multiple EmojiPicker - 🐛(frontend) fix meta title - 🔧(git) set LF line endings for all text files - 📝(docs) minor fixes to docs/env.md - ✨support `_FILE` environment variables for secrets Removed: - 🔥(frontend) remove Beta from logo
1 parent 7063513 commit 2e6cb10

File tree

11 files changed

+20
-17
lines changed

11 files changed

+20
-17
lines changed

CHANGELOG.md

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,22 @@ and this project adheres to
88

99
## [Unreleased]
1010

11+
## [3.4.0] - 2025-07-09
12+
1113
### Added
1214

1315
- ✨(frontend) multi-pages #701
16+
- ✨(frontend) Duplicate a doc #1078
17+
- ✨Ask for access #1081
18+
- ✨(frontend) add customization for translations #857
1419
- ✨(backend) add ancestors links definitions to document abilities #846
1520
- ✨(backend) include ancestors accesses on document accesses list view # 846
1621
- ✨(backend) add ancestors links reach and role to document API #846
17-
- ✨(frontend) add customization for translations #857
18-
- ✨(frontend) Duplicate a doc #1078
1922
- 📝(project) add troubleshoot doc #1066
2023
- 📝(project) add system-requirement doc #1066
2124
- 🔧(front) configure x-frame-options to DENY in nginx conf #1084
22-
- ✨(backend) allow to disable checking unsafe mimetype on attachment upload
23-
- ✨Ask for access #1081
25+
- ✨(backend) allow to disable checking unsafe mimetype on
26+
attachment upload #1099
2427
- ✨(doc) add documentation to install with compose #855
2528
- ✨ Give priority to users connected to collaboration server
2629
(aka no websocket feature) #1093
@@ -43,8 +46,7 @@ and this project adheres to
4346
- 🐛(frontend) fix meta title #1017
4447
- 🔧(git) set LF line endings for all text files #1032
4548
- 📝(docs) minor fixes to docs/env.md
46-
- ✨(backend) support `_FILE` environment variables for secrets #912
47-
- ✨(frontend) support `_FILE` environment variables for secrets #912
49+
- ✨support `_FILE` environment variables for secrets #912
4850

4951
### Removed
5052

@@ -634,7 +636,8 @@ and this project adheres to
634636
- ✨(frontend) Coming Soon page (#67)
635637
- 🚀 Impress, project to manage your documents easily and collaboratively.
636638

637-
[unreleased]: https://github.com/numerique-gouv/impress/compare/v3.3.0...main
639+
[unreleased]: https://github.com/numerique-gouv/impress/compare/v3.4.0...main
640+
[v3.4.0]: https://github.com/numerique-gouv/impress/releases/v3.4.0
638641
[v3.3.0]: https://github.com/numerique-gouv/impress/releases/v3.3.0
639642
[v3.2.1]: https://github.com/numerique-gouv/impress/releases/v3.2.1
640643
[v3.2.0]: https://github.com/numerique-gouv/impress/releases/v3.2.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.3.0"
10+
version = "3.4.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.3.0",
3+
"version": "3.4.0",
44
"private": true,
55
"scripts": {
66
"lint": "eslint . --ext .ts",

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.3.0",
3+
"version": "3.4.0",
44
"private": true,
55
"scripts": {
66
"dev": "next dev",

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.3.0",
3+
"version": "3.4.0",
44
"private": true,
55
"workspaces": {
66
"packages": [

src/frontend/packages/eslint-config-impress/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eslint-config-impress",
3-
"version": "3.3.0",
3+
"version": "3.4.0",
44
"license": "MIT",
55
"scripts": {
66
"lint": "eslint --ext .js ."

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.3.0",
3+
"version": "3.4.0",
44
"private": true,
55
"scripts": {
66
"extract-translation": "yarn extract-translation:impress",

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.3.0",
3+
"version": "3.4.0",
44
"description": "Y.js provider for docs",
55
"repository": "https://github.com/numerique-gouv/impress",
66
"license": "MIT",

src/helm/helmfile.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
environments:
22
dev:
33
values:
4-
- version: 3.3.0
4+
- version: 3.4.0
55
---
66
repositories:
77
- name: bitnami

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.4.0-beta.2
4+
version: 3.4.0
55
appVersion: latest

0 commit comments

Comments
 (0)