File tree Expand file tree Collapse file tree 12 files changed +29
-13
lines changed Expand file tree Collapse file tree 12 files changed +29
-13
lines changed Original file line number Diff line number Diff line change @@ -8,20 +8,23 @@ and this project adheres to
8
8
9
9
## [ Unreleased]
10
10
11
+ ## [ 3.0.0] - 2025-03-28
12
+
11
13
## Added
12
14
13
15
- π(legal) Require contributors to sign a DCO #779
14
16
15
17
## Changed
16
18
17
19
- β»οΈ(frontend) Integrate UI kit #783
18
- - ποΈ(y-provider) manage auth in y-provider app
20
+ - ποΈ(y-provider) manage auth in y-provider app # 804
19
21
20
22
## Fixed
21
23
22
24
- π(backend) compute ancestor_links in get_abilities if needed #725
23
25
- ποΈ(back) restrict access to document accesses #801
24
26
27
+
25
28
## [ 2.6.0] - 2025-03-21
26
29
27
30
## Added
@@ -503,8 +506,9 @@ and this project adheres to
503
506
- β¨(frontend) Coming Soon page (#67 )
504
507
- π Impress, project to manage your documents easily and collaboratively.
505
508
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
508
512
[ v2.5.0 ] : https://github.com/numerique-gouv/impress/releases/v2.5.0
509
513
[ v2.4.0 ] : https://github.com/numerique-gouv/impress/releases/v2.4.0
510
514
[ v2.3.0 ] : https://github.com/numerique-gouv/impress/releases/v2.3.0
Original file line number Diff line number Diff line change @@ -16,6 +16,18 @@ the following command inside your docker container:
16
16
17
17
## [ Unreleased]
18
18
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
+
19
31
- AI features are now limited to users who are authenticated. Before this release, even anonymous
20
32
users who gained editor access on a document with link reach used to get AI feature.
21
33
IF you want anonymous users to keep access on AI features, you must now define the
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta"
7
7
8
8
[project ]
9
9
name = " impress"
10
- version = " 2.6 .0"
10
+ version = " 3.0 .0"
11
11
authors = [{ "name" = " DINUM" , "email" = " dev@mail.numerique.gouv.fr" }]
12
12
classifiers = [
13
13
" Development Status :: 5 - Production/Stable" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " app-e2e" ,
3
- "version" : " 2.6 .0" ,
3
+ "version" : " 3.0 .0" ,
4
4
"private" : true ,
5
5
"scripts" : {
6
6
"lint" : " eslint . --ext .ts" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " app-impress" ,
3
- "version" : " 2.6 .0" ,
3
+ "version" : " 3.0 .0" ,
4
4
"private" : true ,
5
5
"scripts" : {
6
6
"dev" : " next dev" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " impress" ,
3
- "version" : " 2.6 .0" ,
3
+ "version" : " 3.0 .0" ,
4
4
"private" : true ,
5
5
"workspaces" : {
6
6
"packages" : [
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " eslint-config-impress" ,
3
- "version" : " 2.6 .0" ,
3
+ "version" : " 3.0 .0" ,
4
4
"license" : " MIT" ,
5
5
"scripts" : {
6
6
"lint" : " eslint --ext .js ."
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " packages-i18n" ,
3
- "version" : " 2.6 .0" ,
3
+ "version" : " 3.0 .0" ,
4
4
"private" : true ,
5
5
"scripts" : {
6
6
"extract-translation" : " yarn extract-translation:impress" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " server-y-provider" ,
3
- "version" : " 2.6 .0" ,
3
+ "version" : " 3.0 .0" ,
4
4
"description" : " Y.js provider for docs" ,
5
5
"repository" : " https://github.com/numerique-gouv/impress" ,
6
6
"license" : " MIT" ,
Original file line number Diff line number Diff line change 1
1
environments :
2
2
dev :
3
3
values :
4
- - version : 2.6 .0
4
+ - version : 3.0 .0
5
5
---
6
6
repositories :
7
7
- name : bitnami
Original file line number Diff line number Diff line change 1
1
apiVersion : v2
2
2
type : application
3
3
name : docs
4
- version : 2.6 .0
4
+ version : 3.0 .0
5
5
appVersion : latest
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " mail_mjml" ,
3
- "version" : " 2.6 .0" ,
3
+ "version" : " 3.0 .0" ,
4
4
"description" : " An util to generate html and text django's templates from mjml templates" ,
5
5
"type" : " module" ,
6
6
"dependencies" : {
You canβt perform that action at this time.
0 commit comments