🔖(minor) release 1.7.0
Added: - 📝Contributing.md - 🌐(frontend) add localization to editor - ✨Public and restricted doc editable - ✨(frontend) Add full name if available - ✨(backend) Add view accesses ability Changed: - ♻️(frontend) avoid documents indexing in search engine - ♻️(frontend) list accesses if user has abilities - 👔(backend) doc restricted by default Fixed: - 🐛(backend) require right to manage document accesses to see invitations - 🐛(i18n) same frontend and backend language using shared cookies - 🐛(frontend) add default toolbar buttons - 🐛(frontend) throttle error correctly display Removed: - 🔥(helm) remove infra related codes
This commit is contained in:
@@ -9,10 +9,12 @@ and this project adheres to
|
|||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [1.7.0] - 2024-10-24
|
||||||
|
|
||||||
## Added
|
## Added
|
||||||
|
|
||||||
- 📝Contributing.md #352
|
- 📝Contributing.md #352
|
||||||
- 🌐(frontend) add localization to editor #268
|
- 🌐(frontend) add localization to editor #368
|
||||||
- ✨Public and restricted doc editable #357
|
- ✨Public and restricted doc editable #357
|
||||||
- ✨(frontend) Add full name if available #380
|
- ✨(frontend) Add full name if available #380
|
||||||
- ✨(backend) Add view accesses ability #376
|
- ✨(backend) Add view accesses ability #376
|
||||||
@@ -20,6 +22,7 @@ and this project adheres to
|
|||||||
## Changed
|
## Changed
|
||||||
|
|
||||||
- ♻️(frontend) list accesses if user has abilities #376
|
- ♻️(frontend) list accesses if user has abilities #376
|
||||||
|
- ♻️(frontend) avoid documents indexing in search engine #372
|
||||||
- 👔(backend) doc restricted by default #388
|
- 👔(backend) doc restricted by default #388
|
||||||
|
|
||||||
## Fixed
|
## Fixed
|
||||||
@@ -28,7 +31,6 @@ and this project adheres to
|
|||||||
- 🐛(i18n) same frontend and backend language using shared cookies #365
|
- 🐛(i18n) same frontend and backend language using shared cookies #365
|
||||||
- 🐛(frontend) add default toolbar buttons #355
|
- 🐛(frontend) add default toolbar buttons #355
|
||||||
- 🐛(frontend) throttle error correctly display #378
|
- 🐛(frontend) throttle error correctly display #378
|
||||||
- 🐛(frontend) (frontend) avoid documents indexing in search engine #372
|
|
||||||
|
|
||||||
## Removed
|
## Removed
|
||||||
|
|
||||||
@@ -236,7 +238,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.6.0...main
|
[unreleased]: https://github.com/numerique-gouv/impress/compare/v1.7.0...main
|
||||||
|
[v1.7.0]: https://github.com/numerique-gouv/impress/releases/v1.7.0
|
||||||
[v1.6.0]: https://github.com/numerique-gouv/impress/releases/v1.6.0
|
[v1.6.0]: https://github.com/numerique-gouv/impress/releases/v1.6.0
|
||||||
[1.5.1]: https://github.com/numerique-gouv/impress/releases/v1.5.1
|
[1.5.1]: https://github.com/numerique-gouv/impress/releases/v1.5.1
|
||||||
[1.5.0]: https://github.com/numerique-gouv/impress/releases/v1.5.0
|
[1.5.0]: https://github.com/numerique-gouv/impress/releases/v1.5.0
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta"
|
|||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "impress"
|
name = "impress"
|
||||||
version = "1.6.0"
|
version = "1.7.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.6.0",
|
"version": "1.7.0",
|
||||||
"private": true,
|
"private": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"lint": "eslint . --ext .ts",
|
"lint": "eslint . --ext .ts",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "app-impress",
|
"name": "app-impress",
|
||||||
"version": "1.6.0",
|
"version": "1.7.0",
|
||||||
"private": true,
|
"private": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "next dev",
|
"dev": "next dev",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "impress",
|
"name": "impress",
|
||||||
"version": "1.6.0",
|
"version": "1.7.0",
|
||||||
"private": true,
|
"private": true,
|
||||||
"workspaces": {
|
"workspaces": {
|
||||||
"packages": [
|
"packages": [
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "eslint-config-impress",
|
"name": "eslint-config-impress",
|
||||||
"version": "1.6.0",
|
"version": "1.7.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.6.0",
|
"version": "1.7.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.6.0",
|
"version": "1.7.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",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "mail_mjml",
|
"name": "mail_mjml",
|
||||||
"version": "1.6.0",
|
"version": "1.7.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