Skip to content

Commit 059cf10

Browse files
committed
πŸ”–(minor) release 2.1.0
Added: - ✨(backend) add soft delete and restore API endpoints to documents - ✨(backend) allow organizing documents in a tree structure - ✨(backend) add "excerpt" field to document list serializer - ✨(backend) add github actions to manage Crowdin workflow - πŸ“ˆIntegrate Posthog - 🏷️(backend) add content-type to uploaded file - ✨(frontend) export pdf docx front side7 Changed: - πŸ’„(frontend) add abilities on doc row - πŸ’„(frontend) improve DocsGridItem responsive padding - πŸ”§(backend) Bump maximum page size to 200 - πŸ“(doc) Improve Read me Fixed: - πŸ›Fix invitations Removed: - πŸ”₯(backend) remove "content" field from list serializer
1 parent df6c9c7 commit 059cf10

File tree

11 files changed

+20
-13
lines changed

11 files changed

+20
-13
lines changed

β€ŽCHANGELOG.md

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ and this project adheres to
99

1010
## [Unreleased]
1111

12+
13+
## [2.1.0] - 2025-01-29
14+
1215
## Added
1316

1417
- ✨(backend) add soft delete and restore API endpoints to documents #516
@@ -23,15 +26,18 @@ and this project adheres to
2326

2427
- πŸ’„(frontend) add abilities on doc row #581
2528
- πŸ’„(frontend) improve DocsGridItem responsive padding #582
29+
- πŸ”§(backend) Bump maximum page size to 200 #516
30+
- πŸ“(doc) Improve Read me #558
2631

27-
## Changed
32+
## Fixed
2833

29-
- πŸ”§(backend) Bump page size to 200 #516
34+
- πŸ›Fix invitations #575
3035

3136
## Removed
3237

3338
- πŸ”₯(backend) remove "content" field from list serializer # 516
3439

40+
3541
## [2.0.1] - 2025-01-17
3642

3743
## Fixed
@@ -386,7 +392,8 @@ and this project adheres to
386392
- πŸš€ Impress, project to manage your documents easily and collaboratively.
387393

388394

389-
[unreleased]: https://github.com/numerique-gouv/impress/compare/v2.0.1...main
395+
[unreleased]: https://github.com/numerique-gouv/impress/compare/v2.1.0...main
396+
[v2.1.0]: https://github.com/numerique-gouv/impress/releases/v2.1.0
390397
[v2.0.1]: https://github.com/numerique-gouv/impress/releases/v2.0.1
391398
[v2.0.0]: https://github.com/numerique-gouv/impress/releases/v2.0.0
392399
[v1.10.0]: https://github.com/numerique-gouv/impress/releases/v1.10.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 = "2.0.1"
10+
version = "2.1.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": "2.0.1",
3+
"version": "2.1.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": "2.0.1",
3+
"version": "2.1.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": "2.0.1",
3+
"version": "2.1.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": "2.0.1",
3+
"version": "2.1.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": "2.0.1",
3+
"version": "2.1.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": "2.0.1",
3+
"version": "2.1.0",
44
"description": "Y.js provider for docs",
55
"repository": "https://github.com/numerique-gouv/impress",
66
"license": "MIT",

β€Žsrc/helm/helmfile.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,4 +93,4 @@ releases:
9393
environments:
9494
dev:
9595
values:
96-
- version: 2.0.1
96+
- version: 2.1.0

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
apiVersion: v2
22
type: application
33
name: docs
4-
version: 2.0.1-beta.8
4+
version: 2.1.0
55
appVersion: latest

0 commit comments

Comments
Β (0)