mirror of
https://github.com/suitenumerique/docs.git
synced 2026-05-11 17:36:33 +02:00
🔖(minor) release 5.1.0
Added - ⚡️(frontend) add skeleton on content loading #2254 - ⚡️(frontend) close websocket connection when user change tab #2264 Changed - 🏗️(core) migrate from pip to uv Fixed - 🩺(project) reload app if front and back unsync #2276 - 🐛(frontend) fix patch and comments #2273 - 🐛(frontend) interlinking are exported correctly in print mode #2269 - 💬(frontend) add missing link in onboarding description #2233 - 🐛(frontend) sanitize pasted and dropped content in document title #2210 - 🐛(frontend) Emoji menu doesn't display above comment box #2229 - 🐛(frontend) Block menu doesn't stay open on 1st line #2229 - 🐛(frontend) The "+" on the first line of a new doc doesn't work #2229 - 🐛(backend) manage race condition between GET and PATCH content #2271 - 🐛(backend) replace document creation table locks with retry strategy #2274 Security - 🔒️(frontend) sanitize color during collaboration #2270
This commit is contained in:
@@ -6,6 +6,8 @@ and this project adheres to
|
||||
|
||||
## [Unreleased]
|
||||
|
||||
## [v5.1.0] - 2026-05-11
|
||||
|
||||
### Added
|
||||
|
||||
- ⚡️(frontend) add skeleton on content loading #2254
|
||||
@@ -34,7 +36,7 @@ and this project adheres to
|
||||
|
||||
|
||||
|
||||
## [v5.0.0] - 2026-04-08
|
||||
## [v5.0.0] - 2026-05-05
|
||||
|
||||
### Added
|
||||
|
||||
@@ -1298,7 +1300,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.0.0...main
|
||||
[unreleased]: https://github.com/suitenumerique/docs/compare/v5.1.0...main
|
||||
[v5.1.0]: https://github.com/suitenumerique/docs/releases/v5.1.0
|
||||
[v5.0.0]: https://github.com/suitenumerique/docs/releases/v5.0.0
|
||||
[v4.8.6]: https://github.com/suitenumerique/docs/releases/v4.8.6
|
||||
[v4.8.5]: https://github.com/suitenumerique/docs/releases/v4.8.5
|
||||
|
||||
@@ -7,7 +7,7 @@ build-backend = "uv_build"
|
||||
|
||||
[project]
|
||||
name = "impress"
|
||||
version = "5.0.0"
|
||||
version = "5.1.0"
|
||||
authors = [{ "name" = "DINUM", "email" = "dev@mail.numerique.gouv.fr" }]
|
||||
classifiers = [
|
||||
"Development Status :: 5 - Production/Stable",
|
||||
|
||||
2
src/backend/uv.lock
generated
2
src/backend/uv.lock
generated
@@ -871,7 +871,7 @@ wheels = [
|
||||
|
||||
[[package]]
|
||||
name = "impress"
|
||||
version = "5.0.0"
|
||||
version = "5.1.0"
|
||||
source = { editable = "." }
|
||||
dependencies = [
|
||||
{ name = "beautifulsoup4" },
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "app-e2e",
|
||||
"version": "5.0.0",
|
||||
"version": "5.1.0",
|
||||
"repository": "https://github.com/suitenumerique/docs",
|
||||
"author": "DINUM",
|
||||
"license": "MIT",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "app-impress",
|
||||
"version": "5.0.0",
|
||||
"version": "5.1.0",
|
||||
"repository": "https://github.com/suitenumerique/docs",
|
||||
"author": "DINUM",
|
||||
"license": "MIT",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "impress",
|
||||
"version": "5.0.0",
|
||||
"version": "5.1.0",
|
||||
"private": true,
|
||||
"repository": "https://github.com/suitenumerique/docs",
|
||||
"author": "DINUM",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "eslint-plugin-docs",
|
||||
"version": "5.0.0",
|
||||
"version": "5.1.0",
|
||||
"repository": "https://github.com/suitenumerique/docs",
|
||||
"author": "DINUM",
|
||||
"license": "MIT",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "packages-i18n",
|
||||
"version": "5.0.0",
|
||||
"version": "5.1.0",
|
||||
"repository": "https://github.com/suitenumerique/docs",
|
||||
"author": "DINUM",
|
||||
"license": "MIT",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "server-y-provider",
|
||||
"version": "5.0.0",
|
||||
"version": "5.1.0",
|
||||
"description": "Y.js provider for docs",
|
||||
"repository": "https://github.com/suitenumerique/docs",
|
||||
"license": "MIT",
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
environments:
|
||||
dev:
|
||||
values:
|
||||
- version: 5.0.0
|
||||
- version: 5.1.0
|
||||
feature:
|
||||
values:
|
||||
- version: 5.0.0
|
||||
- version: 5.1.0
|
||||
feature: ci
|
||||
domain: example.com
|
||||
imageTag: demo
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
apiVersion: v2
|
||||
type: application
|
||||
name: docs
|
||||
version: 5.0.0
|
||||
version: 5.1.0
|
||||
appVersion: latest
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "mail_mjml",
|
||||
"version": "5.0.0",
|
||||
"version": "5.1.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