Skip to content

Commit 74ea7ff

Browse files
committed
πŸ”–(minor) release 3.2.0
Added: - 🚸(backend) make document search on title accent-insensitive - 🚩 add homepage feature flag - ✨(settings) Allow configuring PKCE for the SSO - 🌐(i18n) activate chinese and spanish languages - πŸ”§(backend) allow overwriting the data directory - βž•(backend) add `django-lasuite` dependency (breaking change) - ✨(frontend) advanced table features Changed: - ⚑️(frontend) reduce unblocking time for config - ♻️(frontend) bind UI with ability access - ♻️(frontend) use built-in Quote block Fixed: - πŸ›(nginx) fix 404 when accessing a doc - πŸ”’οΈ(drf) disable browsable HTML API renderer - πŸ”’(frontend) enhance file download security - πŸ›(backend) race condition create doc - πŸ›(frontend) fix breaklines in custom blocks
1 parent 12ef1a2 commit 74ea7ff

File tree

11 files changed

+18
-19
lines changed

11 files changed

+18
-19
lines changed

β€ŽCHANGELOG.md

+8-9
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,7 @@ and this project adheres to
88

99
## [Unreleased]
1010

11-
## Fixed
12-
13-
- πŸ”’(frontend) enhance file download security #889
11+
## [3.2.0] - 2025-05-05
1412

1513
## Added
1614

@@ -20,16 +18,21 @@ and this project adheres to
2018
- 🌐(i18n) activate chinese and spanish languages #884
2119
- πŸ”§(backend) allow overwriting the data directory #893
2220
- βž•(backend) add `django-lasuite` dependency #839
21+
- ✨(frontend) advanced table features #908
2322

2423
## Changed
2524

2625
- ⚑️(frontend) reduce unblocking time for config #867
2726
- ♻️(frontend) bind UI with ability access #900
27+
- ♻️(frontend) use built-in Quote block #908
2828

2929
## Fixed
3030

3131
- πŸ›(nginx) fix 404 when accessing a doc #866
3232
- πŸ”’οΈ(drf) disable browsable HTML API renderer #919
33+
- πŸ”’(frontend) enhance file download security #889
34+
- πŸ›(backend) race condition create doc #633
35+
- πŸ›(frontend) fix breaklines in custom blocks #908
3336

3437
## [3.1.0] - 2025-04-07
3538

@@ -158,11 +161,6 @@ and this project adheres to
158161
- ♻️(frontend) improve table pdf rendering
159162
- πŸ›(email) invitation emails in receivers language
160163

161-
162-
## Fixed
163-
164-
- πŸ›(backend) race condition create doc #633
165-
166164
## [2.2.0] - 2025-02-10
167165

168166
## Added
@@ -551,7 +549,8 @@ and this project adheres to
551549
- ✨(frontend) Coming Soon page (#67)
552550
- πŸš€ Impress, project to manage your documents easily and collaboratively.
553551

554-
[unreleased]: https://github.com/numerique-gouv/impress/compare/v3.1.0...main
552+
[unreleased]: https://github.com/numerique-gouv/impress/compare/v3.2.0...main
553+
[v3.2.0]: https://github.com/numerique-gouv/impress/releases/v3.2.0
555554
[v3.1.0]: https://github.com/numerique-gouv/impress/releases/v3.1.0
556555
[v3.0.0]: https://github.com/numerique-gouv/impress/releases/v3.0.0
557556
[v2.6.0]: https://github.com/numerique-gouv/impress/releases/v2.6.0

β€Žsrc/backend/pyproject.toml

+1-1
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.1.0"
10+
version = "3.2.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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "app-e2e",
3-
"version": "3.1.0",
3+
"version": "3.2.0",
44
"private": true,
55
"scripts": {
66
"lint": "eslint . --ext .ts",

β€Žsrc/frontend/apps/impress/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "app-impress",
3-
"version": "3.1.0",
3+
"version": "3.2.0",
44
"private": true,
55
"scripts": {
66
"dev": "next dev",

β€Žsrc/frontend/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "impress",
3-
"version": "3.1.0",
3+
"version": "3.2.0",
44
"private": true,
55
"workspaces": {
66
"packages": [

β€Žsrc/frontend/packages/eslint-config-impress/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eslint-config-impress",
3-
"version": "3.1.0",
3+
"version": "3.2.0",
44
"license": "MIT",
55
"scripts": {
66
"lint": "eslint --ext .js ."

β€Žsrc/frontend/packages/i18n/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "packages-i18n",
3-
"version": "3.1.0",
3+
"version": "3.2.0",
44
"private": true,
55
"scripts": {
66
"extract-translation": "yarn extract-translation:impress",

β€Žsrc/frontend/servers/y-provider/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "server-y-provider",
3-
"version": "3.1.0",
3+
"version": "3.2.0",
44
"description": "Y.js provider for docs",
55
"repository": "https://github.com/numerique-gouv/impress",
66
"license": "MIT",

β€Žsrc/helm/helmfile.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
environments:
22
dev:
33
values:
4-
- version: 3.1.0
4+
- version: 3.2.0
55
---
66
repositories:
77
- name: bitnami

β€Žsrc/helm/impress/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
apiVersion: v2
22
type: application
33
name: docs
4-
version: 3.1.0
4+
version: 3.2.0
55
appVersion: latest

β€Žsrc/mail/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mail_mjml",
3-
"version": "3.1.0",
3+
"version": "3.2.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)