Skip to content

Commit 53be6de

Browse files
committed
πŸ”–(major) release 3.0.0
Added: - πŸ“„(legal) Require contributors to sign a DCO Changed: - ♻️(frontend) Integrate UI kit - πŸ—οΈ(y-provider) manage auth in y-provider app Fixed: - πŸ›(backend) compute ancestor_links in get_abilities if needed - πŸ”’οΈ(back) restrict access to document accesses
1 parent 4ff90ab commit 53be6de

File tree

12 files changed

+29
-13
lines changed

12 files changed

+29
-13
lines changed

β€ŽCHANGELOG.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,20 +8,23 @@ and this project adheres to
88

99
## [Unreleased]
1010

11+
## [3.0.0] - 2025-03-28
12+
1113
## Added
1214

1315
- πŸ“„(legal) Require contributors to sign a DCO #779
1416

1517
## Changed
1618

1719
- ♻️(frontend) Integrate UI kit #783
18-
- πŸ—οΈ(y-provider) manage auth in y-provider app
20+
- πŸ—οΈ(y-provider) manage auth in y-provider app #804
1921

2022
## Fixed
2123

2224
- πŸ›(backend) compute ancestor_links in get_abilities if needed #725
2325
- πŸ”’οΈ(back) restrict access to document accesses #801
2426

27+
2528
## [2.6.0] - 2025-03-21
2629

2730
## Added
@@ -503,8 +506,9 @@ and this project adheres to
503506
- ✨(frontend) Coming Soon page (#67)
504507
- πŸš€ Impress, project to manage your documents easily and collaboratively.
505508

506-
[unreleased]: https://github.com/numerique-gouv/impress/compare/v2.6.0...main
507-
[v2.5.0]: https://github.com/numerique-gouv/impress/releases/v2.6.0
509+
[unreleased]: https://github.com/numerique-gouv/impress/compare/v3.0.0...main
510+
[v3.0.0]: https://github.com/numerique-gouv/impress/releases/v3.0.0
511+
[v2.6.0]: https://github.com/numerique-gouv/impress/releases/v2.6.0
508512
[v2.5.0]: https://github.com/numerique-gouv/impress/releases/v2.5.0
509513
[v2.4.0]: https://github.com/numerique-gouv/impress/releases/v2.4.0
510514
[v2.3.0]: https://github.com/numerique-gouv/impress/releases/v2.3.0

β€ŽUPGRADE.md

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

1717
## [Unreleased]
1818

19+
## [3.0.0] - 2025-03-28
20+
21+
We are not using the nginx auth request anymore to access the collaboration server (`yProvider`)
22+
The authentication is now managed directly from the yProvider server.
23+
You must remove the annotation `nginx.ingress.kubernetes.io/auth-url` from the `ingressCollaborationWS`.
24+
25+
This means as well that the yProvider server must be able to access the Django server.
26+
To do so, you must set the `COLLABORATION_BACKEND_BASE_URL` environment variable to the `yProvider`
27+
service.
28+
29+
## [2.2.0] - 2025-02-10
30+
1931
- AI features are now limited to users who are authenticated. Before this release, even anonymous
2032
users who gained editor access on a document with link reach used to get AI feature.
2133
IF you want anonymous users to keep access on AI features, you must now define the

β€Ž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 = "2.6.0"
10+
version = "3.0.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": "2.6.0",
3+
"version": "3.0.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": "2.6.0",
3+
"version": "3.0.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": "2.6.0",
3+
"version": "3.0.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": "2.6.0",
3+
"version": "3.0.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": "2.6.0",
3+
"version": "3.0.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": "2.6.0",
3+
"version": "3.0.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: 2.6.0
4+
- version: 3.0.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: 2.6.0
4+
version: 3.0.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": "2.6.0",
3+
"version": "3.0.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)