diff --git a/CHANGES.rst b/CHANGES.rst index cb5173e..f073372 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -6,6 +6,29 @@ This file compiles releases and changes made in .. towncrier release notes start +odoo-openupgrade-wizard 1.2.0 (2025-04-12) +========================================== + +Features +-------- + +- Add an option ``update`` in the configuration file at migration_step level. + If disabled, the update=all step will be skipped during this step. + That can be interesting to save time, during the first and the last steps of the migration + process (when ``execution_context='regular'``). +- Improve workload analysis file with button to hide done module. + +Bugfixes +-------- + +- Handles the case where the filestore data provided in the source is in a "filestore" subfolder. + +Misc +---- + +- restoredb: Use builtins click feature to check if provided paths exist +- Refactoring of the function tools.tools_odoo.generate_odoo_command. + odoo-openupgrade-wizard 1.1.0 (2024-11-07) ========================================== diff --git a/newsfragments/+63.bugfix b/newsfragments/+63.bugfix deleted file mode 100644 index 20f54be..0000000 --- a/newsfragments/+63.bugfix +++ /dev/null @@ -1 +0,0 @@ -Handles the case where the filestore data provided in the source is in a "filestore" subfolder diff --git a/newsfragments/+add-option-no-update-all.feature b/newsfragments/+add-option-no-update-all.feature deleted file mode 100644 index 3e1ea61..0000000 --- a/newsfragments/+add-option-no-update-all.feature +++ /dev/null @@ -1,4 +0,0 @@ -Add an option ``update`` in the configuration file at migration_step level. -If disabled, the update=all step will be skipped during this step. -That can be interesting to save time, during the first and the last steps of the migration -process (when ``execution_context='regular'). diff --git a/newsfragments/+cli-restoredb-check-if-provided-paths-exist.misc b/newsfragments/+cli-restoredb-check-if-provided-paths-exist.misc deleted file mode 100644 index 0bef3cf..0000000 --- a/newsfragments/+cli-restoredb-check-if-provided-paths-exist.misc +++ /dev/null @@ -1 +0,0 @@ -restoredb: Use builtins click feature to check if provided paths exist diff --git a/newsfragments/+improving-workload-analysis-file.feature b/newsfragments/+improving-workload-analysis-file.feature deleted file mode 100644 index 0c73d32..0000000 --- a/newsfragments/+improving-workload-analysis-file.feature +++ /dev/null @@ -1 +0,0 @@ -Improve workload analysis file with button to hide done module. diff --git a/newsfragments/+refactoring.misc b/newsfragments/+refactoring.misc deleted file mode 100644 index aa5edbe..0000000 --- a/newsfragments/+refactoring.misc +++ /dev/null @@ -1 +0,0 @@ -Refactoring of the function tools.tools_odoo.generate_odoo_command. diff --git a/pyproject.toml b/pyproject.toml index fe34a81..5008973 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "odoo-openupgrade-wizard" -version = "1.1.0" +version = "1.2.0" description = "CLI tool to manage Odoo Major Upgrades" authors = [ {name = "Sylvain LE GAL", email = "sylvain.legal@grap.coop"},