Skip to content

Commit 39d0211

Browse files
committed
🔖(minor) release 1.5.0
Added: - ✨(backend) add name fields to the user synchronized with OIDC - ✨(ci) add security scan - ✨(frontend) Activate versions feature - ✨(frontend) one-click document creation - ✨(frontend) edit title inline - 📱(frontend) mobile responsive - 🌐(frontend) Update translation Changed: - 💄(frontend) error alert closeable on editor - ♻️(backend) Change email content - 🛂(frontend) viewers and editors can access share modal - ♻️(frontend) remove footer on doc editor Fixed: - 🛂(frontend) match email if no existing user matches the sub - 🐛(backend) gitlab oicd userinfo endpoint - 🛂(frontend) redirect to the OIDC when private doc and unauthentified - ♻️(backend) getting list of document versions available for a user - 🔧(backend) fix configuration to avoid different ssl warning - 🐛(frontend) fix editor break line not working
1 parent 86085f8 commit 39d0211

File tree

11 files changed

+20
-16
lines changed

11 files changed

+20
-16
lines changed

CHANGELOG.md

+6-2
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,14 @@ and this project adheres to
99

1010
## [Unreleased]
1111

12+
13+
## [1.5.0] - 2024-10-09
14+
1215
## Added
1316

1417
- ✨(backend) add name fields to the user synchronized with OIDC #301
1518
- ✨(ci) add security scan #291
16-
- (frontend) Activate versions feature #240
19+
- ♻️(frontend) Add versions #277
1720
- ✨(frontend) one-click document creation #275
1821
- ✨(frontend) edit title inline #275
1922
- 📱(frontend) mobile responsive #304
@@ -179,7 +182,8 @@ and this project adheres to
179182
- 🚀 Impress, project to manage your documents easily and collaboratively.
180183

181184

182-
[unreleased]: https://github.com/numerique-gouv/impress/compare/v1.4.0...main
185+
[unreleased]: https://github.com/numerique-gouv/impress/compare/v1.5.0...main
186+
[1.5.0]: https://github.com/numerique-gouv/impress/releases/v1.5.0
183187
[1.4.0]: https://github.com/numerique-gouv/impress/releases/v1.4.0
184188
[1.3.0]: https://github.com/numerique-gouv/impress/releases/v1.3.0
185189
[1.2.1]: https://github.com/numerique-gouv/impress/releases/v1.2.1

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 = "1.4.0"
10+
version = "1.5.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": "1.4.0",
3+
"version": "1.5.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": "1.4.0",
3+
"version": "1.5.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": "1.4.0",
3+
"version": "1.5.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": "1.4.0",
3+
"version": "1.5.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": "1.4.0",
3+
"version": "1.5.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": "1.4.0",
3+
"version": "1.5.0",
44
"description": "Y.js provider for docs",
55
"repository": "https://github.com/numerique-gouv/impress",
66
"license": "MIT",

src/helm/env.d/preprod/values.impress.yaml.gotmpl

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
image:
22
repository: lasuite/impress-backend
33
pullPolicy: Always
4-
tag: "v1.4.0-preprod"
4+
tag: "v1.5.0-preprod"
55

66
backend:
77
migrateJobAnnotations:
@@ -124,13 +124,13 @@ frontend:
124124
image:
125125
repository: lasuite/impress-frontend
126126
pullPolicy: Always
127-
tag: "v1.4.0-preprod"
127+
tag: "v1.5.0-preprod"
128128

129129
yProvider:
130130
image:
131131
repository: lasuite/impress-y-provider
132132
pullPolicy: Always
133-
tag: "v1.4.0-preprod"
133+
tag: "v1.5.0-preprod"
134134

135135
ingress:
136136
enabled: true

src/helm/env.d/production/values.impress.yaml.gotmpl

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
image:
22
repository: lasuite/impress-backend
33
pullPolicy: Always
4-
tag: "v1.4.0"
4+
tag: "v1.5.0"
55

66
backend:
77
migrateJobAnnotations:
@@ -124,13 +124,13 @@ frontend:
124124
image:
125125
repository: lasuite/impress-frontend
126126
pullPolicy: Always
127-
tag: "v1.4.0"
127+
tag: "v1.5.0"
128128

129129
yProvider:
130130
image:
131131
repository: lasuite/impress-y-provider
132132
pullPolicy: Always
133-
tag: "v1.4.0"
133+
tag: "v1.5.0"
134134

135135
ingress:
136136
enabled: true

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": "1.4.0",
3+
"version": "1.5.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)