🔖(major) release 2.0.0
Added: - 🔧(backend) add option to configure list of essential OIDC claims - 🔧(helm) add option to disable default tls setting by @dominikkaminski - 💄(frontend) Add left panel - 💄(frontend) add filtering to left panel - ✨(frontend) new share modal ui - ✨(frontend) add favorite feature Changed: - 🏗️(yjs-server) organize yjs server - ♻️(frontend) better separation collaboration process - 💄(frontend) updating the header and leftpanel for responsive - 💄(frontend) update DocsGrid component - 💄(frontend) update DocsGridOptions component - 💄(frontend) update DocHeader ui - 💄(frontend) update doc versioning ui - 💄(frontend) update doc summary u Fixed: - 🐛(backend) fix create document via s2s if sub unknown but email found - 🐛(frontend) hide search and create doc button if not authenticated - 🐛(backend) race condition creation issue
This commit is contained in:
@@ -9,6 +9,8 @@ and this project adheres to
|
|||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [2.0.0] - 2025-01-13
|
||||||
|
|
||||||
## Added
|
## Added
|
||||||
|
|
||||||
- 🔧(backend) add option to configure list of essential OIDC claims #525 & #531
|
- 🔧(backend) add option to configure list of essential OIDC claims #525 & #531
|
||||||
@@ -25,7 +27,7 @@ and this project adheres to
|
|||||||
- 💄(frontend) updating the header and leftpanel for responsive #421
|
- 💄(frontend) updating the header and leftpanel for responsive #421
|
||||||
- 💄(frontend) update DocsGrid component #431
|
- 💄(frontend) update DocsGrid component #431
|
||||||
- 💄(frontend) update DocsGridOptions component #432
|
- 💄(frontend) update DocsGridOptions component #432
|
||||||
- 💄(frontend) update DocHeader ui #446
|
- 💄(frontend) update DocHeader ui #448
|
||||||
- 💄(frontend) update doc versioning ui #463
|
- 💄(frontend) update doc versioning ui #463
|
||||||
- 💄(frontend) update doc summary ui #473
|
- 💄(frontend) update doc summary ui #473
|
||||||
|
|
||||||
@@ -351,7 +353,8 @@ and this project adheres to
|
|||||||
- 🚀 Impress, project to manage your documents easily and collaboratively.
|
- 🚀 Impress, project to manage your documents easily and collaboratively.
|
||||||
|
|
||||||
|
|
||||||
[unreleased]: https://github.com/numerique-gouv/impress/compare/v1.10.0...main
|
[unreleased]: https://github.com/numerique-gouv/impress/compare/v2.0.0...main
|
||||||
|
[v2.0.0]: https://github.com/numerique-gouv/impress/releases/v2.0.0
|
||||||
[v1.10.0]: https://github.com/numerique-gouv/impress/releases/v1.10.0
|
[v1.10.0]: https://github.com/numerique-gouv/impress/releases/v1.10.0
|
||||||
[v1.9.0]: https://github.com/numerique-gouv/impress/releases/v1.9.0
|
[v1.9.0]: https://github.com/numerique-gouv/impress/releases/v1.9.0
|
||||||
[v1.8.2]: https://github.com/numerique-gouv/impress/releases/v1.8.2
|
[v1.8.2]: https://github.com/numerique-gouv/impress/releases/v1.8.2
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta"
|
|||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "impress"
|
name = "impress"
|
||||||
version = "1.10.0"
|
version = "2.0.0"
|
||||||
authors = [{ "name" = "DINUM", "email" = "dev@mail.numerique.gouv.fr" }]
|
authors = [{ "name" = "DINUM", "email" = "dev@mail.numerique.gouv.fr" }]
|
||||||
classifiers = [
|
classifiers = [
|
||||||
"Development Status :: 5 - Production/Stable",
|
"Development Status :: 5 - Production/Stable",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "app-e2e",
|
"name": "app-e2e",
|
||||||
"version": "1.10.0",
|
"version": "2.0.0",
|
||||||
"private": true,
|
"private": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"lint": "eslint . --ext .ts",
|
"lint": "eslint . --ext .ts",
|
||||||
@@ -13,12 +13,12 @@
|
|||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@playwright/test": "1.49.1",
|
"@playwright/test": "1.49.1",
|
||||||
|
"@types/luxon": "3.4.2",
|
||||||
"@types/node": "*",
|
"@types/node": "*",
|
||||||
"@types/pdf-parse": "1.1.4",
|
"@types/pdf-parse": "1.1.4",
|
||||||
"eslint-config-impress": "*",
|
"eslint-config-impress": "*",
|
||||||
"typescript": "*",
|
|
||||||
"luxon": "3.5.0",
|
"luxon": "3.5.0",
|
||||||
"@types/luxon": "3.4.2"
|
"typescript": "*"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"convert-stream": "1.0.2",
|
"convert-stream": "1.0.2",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "app-impress",
|
"name": "app-impress",
|
||||||
"version": "1.10.0",
|
"version": "2.0.0",
|
||||||
"private": true,
|
"private": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "next dev",
|
"dev": "next dev",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "impress",
|
"name": "impress",
|
||||||
"version": "1.10.0",
|
"version": "2.0.0",
|
||||||
"private": true,
|
"private": true,
|
||||||
"workspaces": {
|
"workspaces": {
|
||||||
"packages": [
|
"packages": [
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "eslint-config-impress",
|
"name": "eslint-config-impress",
|
||||||
"version": "1.10.0",
|
"version": "2.0.0",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"lint": "eslint --ext .js ."
|
"lint": "eslint --ext .js ."
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "packages-i18n",
|
"name": "packages-i18n",
|
||||||
"version": "1.10.0",
|
"version": "2.0.0",
|
||||||
"private": true,
|
"private": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"extract-translation": "yarn extract-translation:impress",
|
"extract-translation": "yarn extract-translation:impress",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "server-y-provider",
|
"name": "server-y-provider",
|
||||||
"version": "1.10.0",
|
"version": "2.0.0",
|
||||||
"description": "Y.js provider for docs",
|
"description": "Y.js provider for docs",
|
||||||
"repository": "https://github.com/numerique-gouv/impress",
|
"repository": "https://github.com/numerique-gouv/impress",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
@@ -35,8 +35,8 @@
|
|||||||
"@types/node": "*",
|
"@types/node": "*",
|
||||||
"@types/supertest": "6.0.2",
|
"@types/supertest": "6.0.2",
|
||||||
"@types/ws": "8.5.13",
|
"@types/ws": "8.5.13",
|
||||||
"eslint-config-impress": "*",
|
|
||||||
"cross-env": "7.0.3",
|
"cross-env": "7.0.3",
|
||||||
|
"eslint-config-impress": "*",
|
||||||
"jest": "29.7.0",
|
"jest": "29.7.0",
|
||||||
"nodemon": "3.1.9",
|
"nodemon": "3.1.9",
|
||||||
"supertest": "7.0.0",
|
"supertest": "7.0.0",
|
||||||
|
|||||||
@@ -93,4 +93,4 @@ releases:
|
|||||||
environments:
|
environments:
|
||||||
dev:
|
dev:
|
||||||
values:
|
values:
|
||||||
- version: 1.10.0
|
- version: 2.0.0
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "mail_mjml",
|
"name": "mail_mjml",
|
||||||
"version": "1.10.0",
|
"version": "2.0.0",
|
||||||
"description": "An util to generate html and text django's templates from mjml templates",
|
"description": "An util to generate html and text django's templates from mjml templates",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|||||||
Reference in New Issue
Block a user