Skip to content

Commit

Permalink
🔖(major) major release to 1.0.0
Browse files Browse the repository at this point in the history
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)
  • Loading branch information
AntoLC committed Jul 3, 2024
1 parent 2e0b6b2 commit 177f79c
Show file tree
Hide file tree
Showing 11 changed files with 18 additions and 15 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ and this project adheres to

## [Unreleased]

## [1.0.0] - 2024-07-02

## Added

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


[unreleased]: https://github.com/numerique-gouv/impress/compare/v0.1.0...main
[unreleased]: https://github.com/numerique-gouv/impress/compare/v1.0.0...main
[1.0.0]: https://github.com/numerique-gouv/impress/releases/v1.0.0
[0.1.0]: https://github.com/numerique-gouv/impress/releases/v0.1.0
2 changes: 1 addition & 1 deletion src/frontend/apps/e2e/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "app-e2e",
"version": "0.1.0",
"version": "1.0.0",
"private": true,
"scripts": {
"lint": "eslint . --ext .ts",
Expand Down
2 changes: 1 addition & 1 deletion src/frontend/apps/impress/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "app-impress",
"version": "0.1.0",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
Expand Down
2 changes: 1 addition & 1 deletion src/frontend/apps/y-webrtc-signaling/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "y-webrtc-signaling",
"version": "0.1.0",
"version": "1.0.0",
"description": "WebRTC server for Yjs",
"repository": "https://github.com/numerique-gouv/impress",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion src/frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "impress",
"version": "0.1.0",
"version": "1.0.0",
"private": true,
"workspaces": {
"packages": [
Expand Down
2 changes: 1 addition & 1 deletion src/frontend/packages/eslint-config-impress/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "eslint-config-impress",
"version": "0.1.0",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"lint": "eslint --ext .js ."
Expand Down
2 changes: 1 addition & 1 deletion src/frontend/packages/i18n/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "packages-i18n",
"version": "0.1.0",
"version": "1.0.0",
"private": true,
"scripts": {
"extract-translation": "yarn extract-translation:impress",
Expand Down
6 changes: 3 additions & 3 deletions src/helm/env.d/preprod/values.impress.yaml.gotmpl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
image:
repository: lasuite/impress-backend
pullPolicy: Always
tag: "v0.1.0"
tag: "v1.0.0"

backend:
migrateJobAnnotations:
Expand Down Expand Up @@ -115,13 +115,13 @@ frontend:
image:
repository: lasuite/impress-frontend
pullPolicy: Always
tag: "v0.1.0"
tag: "v1.0.0"

webrtc:
image:
repository: lasuite/impress-y-webrtc-signaling
pullPolicy: Always
tag: "v0.1.0"
tag: "v1.0.0"

ingress:
enabled: true
Expand Down
6 changes: 3 additions & 3 deletions src/helm/env.d/production/values.impress.yaml.gotmpl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
image:
repository: lasuite/impress-backend
pullPolicy: Always
tag: "v0.1.0"
tag: "v1.0.0"

backend:
migrateJobAnnotations:
Expand Down Expand Up @@ -115,13 +115,13 @@ frontend:
image:
repository: lasuite/impress-frontend
pullPolicy: Always
tag: "v0.1.0"
tag: "v1.0.0"

webrtc:
image:
repository: lasuite/impress-y-webrtc-signaling
pullPolicy: Always
tag: "v0.1.0"
tag: "v1.0.0"

ingress:
enabled: true
Expand Down
2 changes: 1 addition & 1 deletion src/mail/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mail_mjml",
"version": "0.1.0",
"version": "1.0.0",
"description": "An util to generate html and text django's templates from mjml templates",
"type": "module",
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion src/tsclient/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "impress-openapi-client-ts",
"version": "0.1.0",
"version": "1.0.0",
"private": true,
"description": "Tool to generate Typescript API client for the impress application.",
"scripts": {
Expand Down

0 comments on commit 177f79c

Please sign in to comment.