diff --git a/CHANGELOG.md b/CHANGELOG.md index 48932b9633b8ef625f26589b7b8adbbdd922ae34..4f3bfc41d217ae3070fa84ea1d95ce113bdd9802 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,13 @@ Toutes les modifications apportées au projet seront documentées dans ce fichie Le format est basé sur le modèle [Keep a Changelog](http://keepachangelog.com/) et adhère aux principes du [Semantic Versioning](http://semver.org/). +## [4.7.19] - 24-08-06 + +### Corrections + +- Les compteurs de dossiers n'étaient pas correctement mis à jour en mode "multi-tenant" +- L'affichage des métadonnées en administration pouvait poser problème lors d'un usage intensif + ## [4.7.18] - 24-06-11 ### Corrections diff --git a/iparapheur-amp/pom.xml b/iparapheur-amp/pom.xml index 4f9d0394fbdb4836a99d952bf2b71ae5ecee7ba3..209a898bbbda7ffd3fe3e0a8c402c6b395981c21 100644 --- a/iparapheur-amp/pom.xml +++ b/iparapheur-amp/pom.xml @@ -6,13 +6,13 @@ <parent> <groupId>org.adullact.iparapheur</groupId> <artifactId>iparapheur</artifactId> - <version>4.7.18</version> + <version>4.7.19</version> </parent> <groupId>org.adullact.iparapheur</groupId> <artifactId>iparapheur-amp</artifactId> <description>Parapheur electronique</description> <packaging>war</packaging> - <version>4.7.18-for-Alf3.4.c</version> + <version>4.7.19-for-Alf3.4.c</version> <name>i-Parapheur AMP packaging</name> <url>http://maven.apache.org</url> <properties> @@ -65,13 +65,13 @@ <dependency> <groupId>org.adullact.iparapheur</groupId> <artifactId>iparapheur-core</artifactId> - <version>4.7.18</version> + <version>4.7.19</version> </dependency> <dependency> <groupId>org.adullact.iparapheur</groupId> <artifactId>iparapheur-mobile-webscripts</artifactId> - <version>4.7.18</version> + <version>4.7.19</version> </dependency> <dependency> diff --git a/iparapheur-core/pom.xml b/iparapheur-core/pom.xml index 9248b27fba3f98bcea8b3baa8a65202d5b89f35e..a87ed9cda824a59fa07f0e36e32316086c8b2f3f 100644 --- a/iparapheur-core/pom.xml +++ b/iparapheur-core/pom.xml @@ -5,14 +5,14 @@ <parent> <groupId>org.adullact.iparapheur</groupId> <artifactId>iparapheur</artifactId> - <version>4.7.18</version> + <version>4.7.19</version> </parent> <modelVersion>4.0.0</modelVersion> <groupId>org.adullact.iparapheur</groupId> <artifactId>iparapheur-core</artifactId> <packaging>jar</packaging> <name>iparapheur core module</name> - <version>4.7.18</version> + <version>4.7.19</version> <description>Parapheur electronique</description> <!-- General Info --> <url>https://adullact.net/projects/paraphelec/</url> @@ -294,7 +294,7 @@ <dependency> <groupId>org.adullact.iparapheur</groupId> <artifactId>iparapheur-rules</artifactId> - <version>4.7.18</version> + <version>4.7.19</version> <!-- exclusions> <exclusion> <artifactId>asm</artifactId> diff --git a/iparapheur-core/src/main/resources/alfresco/module/parapheur/core/parapheur-version.properties b/iparapheur-core/src/main/resources/alfresco/module/parapheur/core/parapheur-version.properties index b50fc34eb1b2e842851b6ebd40b2f4edfbaadd88..b07c1a6f1b43aa542962cedbc7c1e1b8726e8b2c 100755 --- a/iparapheur-core/src/main/resources/alfresco/module/parapheur/core/parapheur-version.properties +++ b/iparapheur-core/src/main/resources/alfresco/module/parapheur/core/parapheur-version.properties @@ -1,2 +1,2 @@ -ph_version=4.7.18 +ph_version=4.7.19 ph_build=20240611 diff --git a/iparapheur-mobile-webscripts/pom.xml b/iparapheur-mobile-webscripts/pom.xml index cc9ebc33a1ab7d5847f50b0cd4677908f44bdbf2..13c3de9a42b194150e13d2dcbbc7b7a06f0d03e2 100644 --- a/iparapheur-mobile-webscripts/pom.xml +++ b/iparapheur-mobile-webscripts/pom.xml @@ -5,7 +5,7 @@ <parent> <artifactId>iparapheur</artifactId> <groupId>org.adullact.iparapheur</groupId> - <version>4.7.18</version> + <version>4.7.19</version> </parent> <modelVersion>4.0.0</modelVersion> @@ -94,7 +94,7 @@ <dependency> <groupId>org.adullact.iparapheur</groupId> <artifactId>iparapheur-core</artifactId> - <version>4.7.18</version> + <version>4.7.19</version> <scope>provided</scope> </dependency> diff --git a/iparapheur-rules/pom.xml b/iparapheur-rules/pom.xml index bf80fc87989a9c597808af1bfca5624e0cb9cc4f..a4a4bcd69e42395e7491851843ccf4c0bb80e180 100644 --- a/iparapheur-rules/pom.xml +++ b/iparapheur-rules/pom.xml @@ -5,10 +5,10 @@ <parent> <groupId>org.adullact.iparapheur</groupId> <artifactId>iparapheur</artifactId> - <version>4.7.18</version> + <version>4.7.19</version> </parent> <artifactId>iparapheur-rules</artifactId> - <version>4.7.18</version> + <version>4.7.19</version> <name>iparapheur-rules</name> <url>http://maven.apache.org</url> <properties> diff --git a/pom.xml b/pom.xml index ea1bd5900976e8b5be220a168ee17dac518da7fa..b2d0061b4922c7a7ddca9b121225e146e9611491 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ <artifactId>iparapheur</artifactId> <packaging>pom</packaging> <name>iparapheur</name> - <version>4.7.18</version> + <version>4.7.19</version> <description>Parapheur electronique</description> <url>https://adullact.net/projects/paraphelec/</url>