From fa12f2bf5e1caea20424c51b828aec9376dbc6fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Herv=C3=A9=20Hennes?= Date: Sun, 12 Nov 2023 12:37:50 +0100 Subject: [PATCH] Release 0.3.0 --- README.md | 26 +++++++++++++++++++++++--- changelog.txt | 2 +- src/Patch/Generator.php | 3 +++ 3 files changed, 27 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index f52b196..116a966 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,25 @@ -Module de gestion des mises à jour des modules et configuration via la CLI +Module Prestashop de gestion des mises à jour des modules et configuration via la CLI Work in progress -Compatible et testé avec php7.4 et prestashop 1.7.8.x -Les autres versions seront à tester ultérieurement \ No newline at end of file +Vous pouvez voir des informations sur ce module sur ces articles : + +- https://www.h-hennes.fr/blog/2023/11/06/prestashop-comment-limiter-les-interactions-manuelles-avec-le-deploiement-continu/ +- https://www.h-hennes.fr/blog/2023/11/12/prestashop-hhmodule-manager-fonctionnement-technique-et-extension/ + + +Compatibility +--- + +| Prestashop Version | Compatible | +|--------------------| ---------| +| 1.7.8.x | :heavy_check_mark: | +| 8+ | :interrobang: Not yet tested | + + + +| Php Version | Compatible | +|-------------|------------------------------| +| Under 7.4 | :x: | +| 7.4 | :heavy_check_mark: | +| 8.0 | :interrobang: Not yet tested | +| 8.1 | :interrobang: Not yet tested | \ No newline at end of file diff --git a/changelog.txt b/changelog.txt index 5bb5abd..4d8aca0 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,4 +1,4 @@ -V 0.3.0 2023-11-10 : Code refactoring and improvements +V 0.3.0 2023-11-12 : Code refactoring and improvements Allow to add your owns converters and upgraders from custom modules Add a hook to allow custom modules to exclude some configurations from changes V 0.2.0 2023-11-06 : First public release of the module \ No newline at end of file diff --git a/src/Patch/Generator.php b/src/Patch/Generator.php index a2d4b2b..1d8b2e7 100644 --- a/src/Patch/Generator.php +++ b/src/Patch/Generator.php @@ -43,6 +43,9 @@ public function __construct(ConverterFactory $converterFactory) * @param string $changeVersion * * @return string + * + * @throws \PrestaShopDatabaseException + * @throws \PrestaShopException */ public function generateChangeFile(array $changeIds, string $changeVersion): string {