Skip to content

Commit f189557

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 Changed: - πŸ“(frontend) Update documentation - βœ…(frontend) Improve tests coverage - ⬆️(docker) upgrade backend image to python 3.13 - ⬆️(docker) upgrade node images to alpine 3.21 - πŸ›(y-provider) increase JSON size limits for transcription conversion Removed: - πŸ”₯(back) remove footer endpoint
1 parent 65e30f6 commit f189557

File tree

12 files changed

+28
-16
lines changed

12 files changed

+28
-16
lines changed

β€ŽCHANGELOG.md

Lines changed: 9 additions & 6 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,21 +22,21 @@ 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

2527
### Changed
2628

2729
- πŸ“(frontend) Update documentation #949
2830
- βœ…(frontend) Improve tests coverage #949
2931
- ⬆️(docker) upgrade backend image to python 3.13 #973
30-
- ⬆️(docker) upgrade node images to alpine 3.21
31-
- πŸ›(y-provider) increase JSON size limits for transcription conversion
32-
32+
- ⬆️(docker) upgrade node images to alpine 3.21 #973
33+
- πŸ›(y-provider) increase JSON size limits for transcription conversion #989
3334

3435
### Removed
3536

3637
- πŸ”₯(back) remove footer endpoint #948
3738

39+
3840
## [3.2.1] - 2025-05-06
3941

4042
## Fixed
@@ -585,7 +587,8 @@ and this project adheres to
585587
- ✨(frontend) Coming Soon page (#67)
586588
- πŸš€ Impress, project to manage your documents easily and collaboratively.
587589

588-
[unreleased]: https://github.com/numerique-gouv/impress/compare/v3.2.1...main
590+
[unreleased]: https://github.com/numerique-gouv/impress/compare/v3.3.0...main
591+
[v3.3.0]: https://github.com/numerique-gouv/impress/releases/v3.3.0
589592
[v3.2.1]: https://github.com/numerique-gouv/impress/releases/v3.2.1
590593
[v3.2.0]: https://github.com/numerique-gouv/impress/releases/v3.2.0
591594
[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" = "[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.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)