Skip to content

Commit 2194301

Browse files
committed
πŸ”–(minor) release 1.8.0
Added: - 🌐(backend) add german translation - 🌐(frontend) Add German translation - ✨(frontend) Add a broadcast store - ✨(backend) whitelist pod's IP address - ✨(backend) config endpoint - ✨(frontend) config endpoint - ✨(frontend) add sentry - ✨(frontend) add crisp chatbot Changed: - 🚸(backend) improve users similarity search and sort results - ♻️(frontend) simplify stores - ✨(frontend) update $css Box props type to add styled components RuleSet - βœ…(CI) trivy continue on error Fixed: - πŸ”§(backend) fix logging for docker and make it configurable by envar - 🦺(backend) add comma to sub regex - πŸ›(editor) collaborative user tag hidden when read only - πŸ›(frontend) users have view access when revoked - πŸ›(frontend) fix placeholder editable when double clicks
1 parent 0348894 commit 2194301

File tree

12 files changed

+16
-12
lines changed

12 files changed

+16
-12
lines changed

β€ŽCHANGELOG.mdβ€Ž

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

1010
## [Unreleased]
1111

12+
13+
## [1.8.0] - 2024-11-25
14+
1215
## Added
1316

1417
- 🌐(backend) add german translation #259
@@ -265,7 +268,8 @@ and this project adheres to
265268
- πŸš€ Impress, project to manage your documents easily and collaboratively.
266269

267270

268-
[unreleased]: https://github.com/numerique-gouv/impress/compare/v1.7.0...main
271+
[unreleased]: https://github.com/numerique-gouv/impress/compare/v1.8.0...main
272+
[v1.8.0]: https://github.com/numerique-gouv/impress/releases/v1.8.0
269273
[v1.7.0]: https://github.com/numerique-gouv/impress/releases/v1.7.0
270274
[v1.6.0]: https://github.com/numerique-gouv/impress/releases/v1.6.0
271275
[1.5.1]: https://github.com/numerique-gouv/impress/releases/v1.5.1

β€Ž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.7.0"
10+
version = "1.8.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.7.0",
3+
"version": "1.8.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.7.0",
3+
"version": "1.8.0",
44
"private": true,
55
"scripts": {
66
"dev": "next dev",

β€Ž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.7.0",
3+
"version": "1.8.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.7.0",
3+
"version": "1.8.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.7.0",
3+
"version": "1.8.0",
44
"private": true,
55
"scripts": {
66
"extract-translation": "yarn extract-translation:impress",

β€Žsrc/frontend/servers/y-provider/package.jsonβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "server-y-provider",
3-
"version": "1.7.0",
3+
"version": "1.8.0",
44
"description": "Y.js provider for docs",
55
"repository": "https://github.com/numerique-gouv/impress",
66
"license": "MIT",

β€Žsrc/helm/extra/Chart.yamlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ apiVersion: v2
22
name: extra
33
description: A Helm chart to add some manifests to impress
44
type: application
5-
version: 0.1.0
5+
version: 1.8.0

β€Žsrc/helm/helmfile.yamlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,6 @@ releases:
6262
environments:
6363
dev:
6464
values:
65-
- version: 0.0.1
65+
- version: 1.8.0
6666
secrets:
6767
- env.d/{{ .Environment.Name }}/secrets.enc.yaml

0 commit comments

Comments
Β (0)