Skip to content

Commit 11282b8

Browse files
committed
🔖(major) major release to 1.0.0
Added: - Manage the document's right (#75) - Update document (#68) - Remove document (#68) - (docker) dockerize dev frontend (#63) - (backend) list users with email filtering (#79) - (frontend) add user to a document (#52) - (frontend) invite user to a document (#52) - (frontend) manage members (update role / list / remove) (#81) - ✨(frontend) offline mode (#88) - (frontend) translate cgu (#83) - ✨(service-worker) offline doc management (#94) - (frontend) Add beta tag on logo (#121) Changed: - Change site from Impress to Docs (#76) - Generate PDF from a modal (#68) - 🔧 (helm) sticky session by request_uri for signaling server (#78) - (frontend) change logo (#84) - (frontend) pdf has title doc (#84) - ⚡️(e2e) unique login between tests (#80) - ⚡️(CI) improve e2e job (#86) - ♻️(frontend) improve the error and message info ui (#93) - ✏️(frontend) change all occurences of pad to doc (#99) Fixed: - Fix the break line when generate PDF (#84) Delete: - Remove trigger workflow on push tags on CI (#68) - (frontend) Remove coming soon page (#121)
1 parent a89086a commit 11282b8

File tree

11 files changed

+18
-15
lines changed

11 files changed

+18
-15
lines changed

CHANGELOG.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ and this project adheres to
88

99
## [Unreleased]
1010

11+
## [1.0.0] - 2024-07-02
12+
1113
## Added
1214

1315
- Manage the document's right (#75)
@@ -52,5 +54,6 @@ and this project adheres to
5254
- Impress, project to manage your documents easily and collaboratively.
5355

5456

55-
[unreleased]: https://github.com/numerique-gouv/impress/compare/v0.1.0...main
57+
[unreleased]: https://github.com/numerique-gouv/impress/compare/v1.0.0...main
58+
[1.0.0]: https://github.com/numerique-gouv/impress/releases/v1.0.0
5659
[0.1.0]: https://github.com/numerique-gouv/impress/releases/v0.1.0

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": "0.1.0",
3+
"version": "1.0.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": "0.1.0",
3+
"version": "1.0.0",
44
"private": true,
55
"scripts": {
66
"dev": "next dev",

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

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

src/frontend/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "impress",
3-
"version": "0.1.0",
3+
"version": "1.0.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": "0.1.0",
3+
"version": "1.0.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": "0.1.0",
3+
"version": "1.0.0",
44
"private": true,
55
"scripts": {
66
"extract-translation": "yarn extract-translation:impress",

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: "v0.1.0"
4+
tag: "v1.0.0"
55

66
backend:
77
migrateJobAnnotations:
@@ -115,13 +115,13 @@ frontend:
115115
image:
116116
repository: lasuite/impress-frontend
117117
pullPolicy: Always
118-
tag: "v0.1.0"
118+
tag: "v1.0.0"
119119

120120
webrtc:
121121
image:
122122
repository: lasuite/impress-y-webrtc-signaling
123123
pullPolicy: Always
124-
tag: "v0.1.0"
124+
tag: "v1.0.0"
125125

126126
ingress:
127127
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: "v0.1.0"
4+
tag: "v1.0.0"
55

66
backend:
77
migrateJobAnnotations:
@@ -115,13 +115,13 @@ frontend:
115115
image:
116116
repository: lasuite/impress-frontend
117117
pullPolicy: Always
118-
tag: "v0.1.0"
118+
tag: "v1.0.0"
119119

120120
webrtc:
121121
image:
122122
repository: lasuite/impress-y-webrtc-signaling
123123
pullPolicy: Always
124-
tag: "v0.1.0"
124+
tag: "v1.0.0"
125125

126126
ingress:
127127
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": "0.1.0",
3+
"version": "1.0.0",
44
"description": "An util to generate html and text django's templates from mjml templates",
55
"type": "module",
66
"dependencies": {

src/tsclient/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "impress-openapi-client-ts",
3-
"version": "0.1.0",
3+
"version": "1.0.0",
44
"private": true,
55
"description": "Tool to generate Typescript API client for the impress application.",
66
"scripts": {

0 commit comments

Comments
 (0)