Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 07a6758cdc |
+9
-3
@@ -9,20 +9,25 @@ 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
|
||||||
|
|
||||||
|
## Changed
|
||||||
|
|
||||||
|
- ♻️(frontend) avoid documents indexing in search engine #372
|
||||||
|
|
||||||
## Fixed
|
## Fixed
|
||||||
|
|
||||||
- 🐛(backend) require right to manage document accesses to see invitations #369
|
- 🐛(backend) require right to manage document accesses to see invitations #369
|
||||||
- 🐛(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
|
||||||
|
|
||||||
@@ -230,7 +235,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