mirror of
https://github.com/suitenumerique/docs.git
synced 2026-09-11 12:17:55 +02:00
🔖(minor) release 5.3.0
Added - ✨(backend) add limit on distinct reactions per comment #1978 - ✨(frontend) leave a document #2410 - ✨(frontend) add top parent on sub docs search #1952 - ✨(frontend) unauthenticated users can search #2407 - ✨(backend) specific user delete method to delete its relations #2437 Changed - 👷(CI) remove test-e2e-other-browser job #2404 - ♿️(frontend) use heading element for pinned documents section title #2380 - ♿️(frontend) use anchor links for table of contents entries #2390 - ♿️(frontend) improve presenter mode screen reader and keyboard support #2383 - ♿️(frontend) link export modal name to its heading #2422 Fixed - 🐛(frontend) overlap of block menu dropdown #2406 - ⚡️(backend) fix N+1 queries when serializing thread comments #2415
This commit is contained in:
+6
-3
@@ -6,13 +6,15 @@ and this project adheres to
|
||||
|
||||
## [Unreleased]
|
||||
|
||||
## [v5.3.0] - 2026-06-19
|
||||
|
||||
### Added
|
||||
|
||||
- ✨(backend) add limit on distinct reactions per comment #1978
|
||||
- ✨(frontend) leave a document #2410
|
||||
- ✨(frontend) add top parent on sub docs search #1952
|
||||
- ✨(frontend) unauthenticated users can search #2407
|
||||
- ✨(backend) specific user delete method to delete its relations
|
||||
- ✨(backend) specific user delete method to delete its relations #2437
|
||||
|
||||
### Changed
|
||||
|
||||
@@ -20,7 +22,7 @@ and this project adheres to
|
||||
- ♿️(frontend) use heading element for pinned documents section title #2380
|
||||
- ♿️(frontend) use anchor links for table of contents entries #2390
|
||||
- ♿️(frontend) improve presenter mode screen reader and keyboard support #2383
|
||||
♿️(frontend) link export modal name to its heading #2422
|
||||
- ♿️(frontend) link export modal name to its heading #2422
|
||||
|
||||
### Fixed
|
||||
|
||||
@@ -1369,7 +1371,8 @@ and this project adheres to
|
||||
- ✨(frontend) Coming Soon page (#67)
|
||||
- 🚀 Impress, project to manage your documents easily and collaboratively.
|
||||
|
||||
[unreleased]: https://github.com/suitenumerique/docs/compare/v5.2.1...main
|
||||
[unreleased]: https://github.com/suitenumerique/docs/compare/v5.3.0...main
|
||||
[v5.3.0]: https://github.com/suitenumerique/docs/releases/v5.3.0
|
||||
[v5.2.1]: https://github.com/suitenumerique/docs/releases/v5.2.1
|
||||
[v5.2.0]: https://github.com/suitenumerique/docs/releases/v5.2.0
|
||||
[v5.1.0]: https://github.com/suitenumerique/docs/releases/v5.1.0
|
||||
|
||||
@@ -7,7 +7,7 @@ build-backend = "uv_build"
|
||||
|
||||
[project]
|
||||
name = "impress"
|
||||
version = "5.2.1"
|
||||
version = "5.3.0"
|
||||
authors = [{ "name" = "DINUM", "email" = "dev@mail.numerique.gouv.fr" }]
|
||||
classifiers = [
|
||||
"Development Status :: 5 - Production/Stable",
|
||||
|
||||
Generated
+1
-1
@@ -883,7 +883,7 @@ wheels = [
|
||||
|
||||
[[package]]
|
||||
name = "impress"
|
||||
version = "5.2.1"
|
||||
version = "5.3.0"
|
||||
source = { editable = "." }
|
||||
dependencies = [
|
||||
{ name = "beautifulsoup4" },
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "app-e2e",
|
||||
"version": "5.2.1",
|
||||
"version": "5.3.0",
|
||||
"repository": "https://github.com/suitenumerique/docs",
|
||||
"author": "DINUM",
|
||||
"license": "MIT",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "app-impress",
|
||||
"version": "5.2.1",
|
||||
"version": "5.3.0",
|
||||
"repository": "https://github.com/suitenumerique/docs",
|
||||
"author": "DINUM",
|
||||
"license": "MIT",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "impress",
|
||||
"version": "5.2.1",
|
||||
"version": "5.3.0",
|
||||
"private": true,
|
||||
"repository": "https://github.com/suitenumerique/docs",
|
||||
"author": "DINUM",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "eslint-plugin-docs",
|
||||
"version": "5.2.1",
|
||||
"version": "5.3.0",
|
||||
"repository": "https://github.com/suitenumerique/docs",
|
||||
"author": "DINUM",
|
||||
"license": "MIT",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "packages-i18n",
|
||||
"version": "5.2.1",
|
||||
"version": "5.3.0",
|
||||
"repository": "https://github.com/suitenumerique/docs",
|
||||
"author": "DINUM",
|
||||
"license": "MIT",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "server-y-provider",
|
||||
"version": "5.2.1",
|
||||
"version": "5.3.0",
|
||||
"description": "Y.js provider for docs",
|
||||
"repository": "https://github.com/suitenumerique/docs",
|
||||
"license": "MIT",
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
environments:
|
||||
dev:
|
||||
values:
|
||||
- version: 5.2.1
|
||||
- version: 5.3.0
|
||||
feature:
|
||||
values:
|
||||
- version: 5.2.1
|
||||
- version: 5.3.0
|
||||
feature: ci
|
||||
domain: example.com
|
||||
imageTag: demo
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
apiVersion: v2
|
||||
type: application
|
||||
name: docs
|
||||
version: 5.2.1
|
||||
version: 5.3.0
|
||||
appVersion: latest
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "mail_mjml",
|
||||
"version": "5.2.1",
|
||||
"version": "5.3.0",
|
||||
"description": "An util to generate html and text django's templates from mjml templates",
|
||||
"type": "module",
|
||||
"dependencies": {
|
||||
|
||||
Reference in New Issue
Block a user