From cd80fe1a7273a70c3f1c0920aef5bfdb90b64805 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9my=20Taymans?= Date: Thu, 2 May 2024 22:17:21 +0200 Subject: [PATCH] [VER] Bump to version 0.7.0 --- CHANGES.rst | 28 +++++++++++++++++++ .../add-config-file-cli-option.feature | 3 -- .../allow-minus-in-database-names.bugfix | 1 - ...ade-multiple-databases-in-parallel.feature | 2 -- newsfragments/drop-old-python-support.feature | 2 -- .../option-postgresql-version.feature | 2 -- ...debug-default-in-cli_runner_invoke.feature | 1 - pyproject.toml | 2 +- 8 files changed, 29 insertions(+), 12 deletions(-) delete mode 100644 newsfragments/add-config-file-cli-option.feature delete mode 100644 newsfragments/allow-minus-in-database-names.bugfix delete mode 100644 newsfragments/allow-to-upgrade-multiple-databases-in-parallel.feature delete mode 100644 newsfragments/drop-old-python-support.feature delete mode 100644 newsfragments/option-postgresql-version.feature delete mode 100644 newsfragments/set-log-level-debug-default-in-cli_runner_invoke.feature diff --git a/CHANGES.rst b/CHANGES.rst index 710ed0c..db75fea 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -6,6 +6,34 @@ This file compiles releases and changes made in .. towncrier release notes start +odoo-openupgrade-wizard 0.7.0 (2024-05-02) +========================================== + +Features +-------- + +- Add ``--config-file`` and ``--modules-file`` CLI options. This allows to use + different files than the default ones. This is useful when using the same + environment for different databases. (add-config-file-cli-option) +- Add database name to container name and publish Docker ports only when needed + to allow to upgrade multiple databases in parallel. + (allow-to-upgrade-multiple-databases-in-parallel) +- Drop support for python version < 3.9. Update dependencies and fix some + issue liked to that. (drop-old-python-support) +- Add a new option ``--postgresql-version`` in ``oow init`` command to + define the version of the postgresql image to be used for the project. + (option-postgresql-version) +- Factorize code. Allways set --log-level=DEBUG in tests. + (set-log-level-debug-default-in-cli_runner_invoke) + + +Bugfixes +-------- + +- Allow hyphen-minus character in database names. + (allow-minus-in-database-names) + + odoo-openupgrade-wizard 0.6.0 (2024-03-20) ========================================== diff --git a/newsfragments/add-config-file-cli-option.feature b/newsfragments/add-config-file-cli-option.feature deleted file mode 100644 index 88271fb..0000000 --- a/newsfragments/add-config-file-cli-option.feature +++ /dev/null @@ -1,3 +0,0 @@ -Add ``--config-file`` and ``--modules-file`` CLI options. This allows to use -different files than the default ones. This is useful when using the same -environment for different databases. diff --git a/newsfragments/allow-minus-in-database-names.bugfix b/newsfragments/allow-minus-in-database-names.bugfix deleted file mode 100644 index f310f2a..0000000 --- a/newsfragments/allow-minus-in-database-names.bugfix +++ /dev/null @@ -1 +0,0 @@ -Allow hyphen-minus character in database names. diff --git a/newsfragments/allow-to-upgrade-multiple-databases-in-parallel.feature b/newsfragments/allow-to-upgrade-multiple-databases-in-parallel.feature deleted file mode 100644 index f15937f..0000000 --- a/newsfragments/allow-to-upgrade-multiple-databases-in-parallel.feature +++ /dev/null @@ -1,2 +0,0 @@ -Add database name to container name and publish Docker ports only when needed -to allow to upgrade multiple databases in parallel. diff --git a/newsfragments/drop-old-python-support.feature b/newsfragments/drop-old-python-support.feature deleted file mode 100644 index 8b4b78e..0000000 --- a/newsfragments/drop-old-python-support.feature +++ /dev/null @@ -1,2 +0,0 @@ -Drop support for python version < 3.9. Update dependencies and fix some -issue liked to that. diff --git a/newsfragments/option-postgresql-version.feature b/newsfragments/option-postgresql-version.feature deleted file mode 100644 index 9a155c4..0000000 --- a/newsfragments/option-postgresql-version.feature +++ /dev/null @@ -1,2 +0,0 @@ -Add a new option ``--postgresql-version`` in ``oow init`` command to -define the version of the postgresql image to be used for the project. diff --git a/newsfragments/set-log-level-debug-default-in-cli_runner_invoke.feature b/newsfragments/set-log-level-debug-default-in-cli_runner_invoke.feature deleted file mode 100644 index 01b5225..0000000 --- a/newsfragments/set-log-level-debug-default-in-cli_runner_invoke.feature +++ /dev/null @@ -1 +0,0 @@ -Factorize code. Allways set --log-level=DEBUG in tests. diff --git a/pyproject.toml b/pyproject.toml index ef2b40b..cbf3f99 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "odoo-openupgrade-wizard" -version = "0.6.0" +version = "0.7.0" description = "CLI tool to manage Odoo Major Upgrades" authors = [ "GRAP, Groupement Régional Alimentaire de Proximité",