Skip to content

Commit b5a67df

Browse files
committed
🔖(minor) minor release to 1.2.0
Added: - 🎨(frontend) better conversion editor to pdf - ✨Export docx (word) - 🌐Internationalize invitation email - ✨(frontend) White branding - ✨Email invitation when add user to doc - ✨Invitation management Fixed: - 🐛(y-webrtc) fix prob connection - ⚡️(frontend) improve select share stability - 🐛(backend) enable SSL when sending email Changed: - 🎨(frontend) stop limit layout height to screen size - ⚡️(CI) only e2e chrome mandatory Removed: - 🔥(helm) remove htaccess
1 parent 6683821 commit b5a67df

File tree

11 files changed

+20
-15
lines changed

11 files changed

+20
-15
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ and this project adheres to
88

99
## [Unreleased]
1010

11+
## [1.2.0] - 2024-08-06
12+
1113
## Added
1214

1315
- 🎨(frontend) better conversion editor to pdf #151
@@ -47,6 +49,7 @@ and this project adheres to
4749
- ♻️(frontend) create a doc from a modal #132
4850
- ♻️(frontend) manage members from the share modal #140
4951

52+
5053
## [1.0.0] - 2024-07-02
5154

5255
## Added
@@ -85,6 +88,7 @@ and this project adheres to
8588
- 💚(CI) Remove trigger workflow on push tags on CI (#68)
8689
- 🔥(frontend) Remove coming soon page (#121)
8790

91+
8892
## [0.1.0] - 2024-05-24
8993

9094
## Added
@@ -93,7 +97,8 @@ and this project adheres to
9397
- 🚀 Impress, project to manage your documents easily and collaboratively.
9498

9599

96-
[unreleased]: https://github.com/numerique-gouv/impress/compare/v1.1.0...main
100+
[unreleased]: https://github.com/numerique-gouv/impress/compare/v1.2.0...main
101+
[1.2.0]: https://github.com/numerique-gouv/impress/releases/v1.2.0
97102
[1.1.0]: https://github.com/numerique-gouv/impress/releases/v1.1.0
98103
[1.0.0]: https://github.com/numerique-gouv/impress/releases/v1.0.0
99104
[0.1.0]: https://github.com/numerique-gouv/impress/releases/v0.1.0

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 = "1.1.0"
10+
version = "1.2.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": "1.1.0",
3+
"version": "1.2.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": "1.1.0",
3+
"version": "1.2.0",
44
"private": true,
55
"scripts": {
66
"dev": "next dev",

src/frontend/apps/y-webrtc-signaling/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "y-webrtc-signaling",
3-
"version": "1.1.0",
3+
"version": "1.2.0",
44
"description": "WebRTC server for Yjs",
55
"repository": "https://github.com/numerique-gouv/impress",
66
"license": "MIT",

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": "1.1.0",
3+
"version": "1.2.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": "1.1.0",
3+
"version": "1.2.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": "1.1.0",
3+
"version": "1.2.0",
44
"private": true,
55
"scripts": {
66
"extract-translation": "yarn extract-translation:impress",

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

Lines changed: 3 additions & 3 deletions
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.1.0"
4+
tag: "v1.2.0"
55

66
backend:
77
migrateJobAnnotations:
@@ -116,13 +116,13 @@ frontend:
116116
image:
117117
repository: lasuite/impress-frontend
118118
pullPolicy: Always
119-
tag: "v1.1.0"
119+
tag: "v1.2.0"
120120

121121
webrtc:
122122
image:
123123
repository: lasuite/impress-y-webrtc-signaling
124124
pullPolicy: Always
125-
tag: "v1.1.0"
125+
tag: "v1.2.0"
126126

127127
ingress:
128128
enabled: true

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

Lines changed: 3 additions & 3 deletions
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.1.0"
4+
tag: "v1.2.0"
55

66
backend:
77
migrateJobAnnotations:
@@ -116,13 +116,13 @@ frontend:
116116
image:
117117
repository: lasuite/impress-frontend
118118
pullPolicy: Always
119-
tag: "v1.1.0"
119+
tag: "v1.2.0"
120120

121121
webrtc:
122122
image:
123123
repository: lasuite/impress-y-webrtc-signaling
124124
pullPolicy: Always
125-
tag: "v1.1.0"
125+
tag: "v1.2.0"
126126

127127
ingress:
128128
enabled: true

0 commit comments

Comments
 (0)