Skip to content

Commit 393e7a0

Browse files
committed
🔖(minor) release 3.3.0
Added: - ✨(backend) add endpoint checking media status - ✨(backend) allow setting session cookie age via env var - ✨(backend) allow theme customnization using a configuration file - ✨(frontend) Add a custom callout block to the editor - 🚩(frontend) version MIT only - ✨(backend) integrate maleware_detection from django-lasuite - 🏗️(frontend) Footer configurable - 🩺(CI) add lint spell mistakes - ✨(frontend) create generic theme - 🛂(frontend) block edition to not connected users - 🚸(frontend) Let loader during upload analyze - 🚩(frontend) feature flag on blocking edition Changed: - 📝(frontend) Update documentation - ✅(frontend) Improve tests coverage - ⬆️(docker) upgrade backend image to python 3.13 - ⬆️(docker) upgrade node images to alpine 3.21 Fixed: - 🐛(y-provider) increase JSON size limits for transcription conversion Removed: - 🔥(back) remove footer endpoint
1 parent f1af87b commit 393e7a0

File tree

12 files changed

+29
-15
lines changed

12 files changed

+29
-15
lines changed

CHANGELOG.md

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,11 @@ and this project adheres to
88

99
## [Unreleased]
1010

11+
## [3.3.0] - 2025-05-06
12+
1113
### Added
1214

13-
- ✨(back) add endpoint checking media status
15+
- ✨(backend) add endpoint checking media status #984
1416
- ✨(backend) allow setting session cookie age via env var #977
1517
- ✨(backend) allow theme customnization using a configuration file #948
1618
- ✨(frontend) Add a custom callout block to the editor #892
@@ -20,22 +22,24 @@ and this project adheres to
2022
- 🩺(CI) add lint spell mistakes #954
2123
- ✨(frontend) create generic theme #792
2224
- 🛂(frontend) block edition to not connected users #945
23-
- 🚸 Let loader during upload analyze #984
25+
- 🚸(frontend) Let loader during upload analyze #984
2426
- 🚩(frontend) feature flag on blocking edition #997
2527

2628
### Changed
2729

2830
- 📝(frontend) Update documentation #949
2931
- ✅(frontend) Improve tests coverage #949
3032
- ⬆️(docker) upgrade backend image to python 3.13 #973
31-
- ⬆️(docker) upgrade node images to alpine 3.21
32-
- 🐛(y-provider) increase JSON size limits for transcription conversion
33+
- ⬆️(docker) upgrade node images to alpine 3.21 #973
3334

35+
### Fixed
36+
- 🐛(y-provider) increase JSON size limits for transcription conversion #989
3437

3538
### Removed
3639

3740
- 🔥(back) remove footer endpoint #948
3841

42+
3943
## [3.2.1] - 2025-05-06
4044

4145
## Fixed
@@ -586,7 +590,8 @@ and this project adheres to
586590
- ✨(frontend) Coming Soon page (#67)
587591
- 🚀 Impress, project to manage your documents easily and collaboratively.
588592

589-
[unreleased]: https://github.com/numerique-gouv/impress/compare/v3.2.1...main
593+
[unreleased]: https://github.com/numerique-gouv/impress/compare/v3.3.0...main
594+
[v3.3.0]: https://github.com/numerique-gouv/impress/releases/v3.3.0
590595
[v3.2.1]: https://github.com/numerique-gouv/impress/releases/v3.2.1
591596
[v3.2.0]: https://github.com/numerique-gouv/impress/releases/v3.2.0
592597
[v3.1.0]: https://github.com/numerique-gouv/impress/releases/v3.1.0

UPGRADE.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,15 @@ the following command inside your docker container:
1616

1717
## [Unreleased]
1818

19+
## [3.3.0] - 2025-05-22
20+
21+
⚠️ 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/docs/env.md) for more information.
22+
23+
The footer is now configurable from a customization file. To override the default one, you can
24+
use the `THEME_CUSTOMIZATION_FILE_PATH` environment variable to point to your customization file.
25+
The customization file must be a JSON file and must follow the rules described in the
26+
[theming documentation](docs/theming.md).
27+
1928
## [3.0.0] - 2025-03-28
2029

2130
We are not using the nginx auth request anymore to access the collaboration server (`yProvider`)

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.2.1"
10+
version = "3.3.0"
1111
authors = [{ "name" = "DINUM", "email" = "dev@mail.numerique.gouv.fr" }]
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.2.1",
3+
"version": "3.3.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.2.1",
3+
"version": "3.3.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.2.1",
3+
"version": "3.3.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.2.1",
3+
"version": "3.3.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.2.1",
3+
"version": "3.3.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.2.1",
3+
"version": "3.3.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.2.1
4+
- version: 3.3.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.3.0-beta.1
4+
version: 3.3.0
55
appVersion: latest

src/mail/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mail_mjml",
3-
"version": "3.2.1",
3+
"version": "3.3.0",
44
"description": "An util to generate html and text django's templates from mjml templates",
55
"type": "module",
66
"dependencies": {

0 commit comments

Comments
 (0)