diff options
-rw-r--r-- | changelog/en/changelog_2022-06-15.md | 19 | ||||
-rw-r--r-- | changelog/fr/changelog_2023-01-25.md | 20 | ||||
-rw-r--r-- | ishtar_common/version.py | 4 |
3 files changed, 40 insertions, 3 deletions
diff --git a/changelog/en/changelog_2022-06-15.md b/changelog/en/changelog_2022-06-15.md index 77a3b118d..0305366e5 100644 --- a/changelog/en/changelog_2022-06-15.md +++ b/changelog/en/changelog_2022-06-15.md @@ -1,3 +1,22 @@ +v4.3.1 - 2024-11-13 +-------------------- + +### Features/improvements ### +- permissions management: + - use of queries to manage permissions + - expiration date for profiles + - specific deletion permissions (not anymore linked to modification) +- search: OR syntax with "||" + + +### Technical ### +- permissions management: + - refactoring of possession (direct, on creation, with basket) + - refactoring of heritage + - refactoring of areas association +- special syntax for using identifier in search "id:1234" (used by permission query mecanism) + + v4.1.53 - 2025-02-19 -------------------- diff --git a/changelog/fr/changelog_2023-01-25.md b/changelog/fr/changelog_2023-01-25.md index ba3dce52b..84eeb5481 100644 --- a/changelog/fr/changelog_2023-01-25.md +++ b/changelog/fr/changelog_2023-01-25.md @@ -1,3 +1,22 @@ +v4.3.1 - 2024-11-13 +-------------------- + +### Fonctionnalités/améliorations ### +- gestion des permissions : + - utilisation de requêtes + - date d'expiration des profils + - autorisations de suppression spécifiques (qui ne sont plus liées à la modification) +- recherche : syntaxe OU avec « || » + + +### Technique ### +- gestion des permissions : + - refactorisation de la possession (directe, à la création, avec panier) + - refactorisation de l'héritage + - refactorisation de l'association de zones géographiques +- syntaxe spéciale pour utiliser l'identifiant dans la recherche « id:1234 » (utilisée par le mécanisme de gestion des permissions) + + v4.1.53 - 2025-02-19 -------------------- @@ -57,7 +76,6 @@ v4.1.47 - 2025-01-07 ### Correction de dysfonctionnements ### - correction de la génération des libellés du mobilier d'origine - v4.1.46 - 2024-12-30 -------------------- diff --git a/ishtar_common/version.py b/ishtar_common/version.py index 0bfd401b0..6a4d8d305 100644 --- a/ishtar_common/version.py +++ b/ishtar_common/version.py @@ -1,5 +1,5 @@ -# 4.1.53 -VERSION = (4, 1, 53) +# 4.3.1 +VERSION = (4, 3, 1) def get_version(): |