diff --git a/CHANGES.rst b/CHANGES.rst index b97f5de..710ed0c 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -5,3 +5,40 @@ This file compiles releases and changes made in ``odoo-openupgrade-wizard``. .. towncrier release notes start + +odoo-openupgrade-wizard 0.6.0 (2024-03-20) +========================================== + +Features +-------- + +- Add ``dropdb`` command to easily delete database and filestore of existing + Odoo databases in PostgreSQL container. (add-dropdb) +- With ``install-from-csv`` and the ``--with-demo / --without-demo``, you + can control if the created database will be populated with demo data or + not. (add-install-from-csv-demo) +- Add ``restoredb`` command to restore database and filestore in the + PostgreSQL container. (add-restoredb) +- Add ``--update-modules`` option to ``run`` command. (imp-run-update-modules) +- ``run`` and ``upgrade`` command are now harmonized with the option + ``--with-demo / --without-demo``. By default demo data is always false. + (imp-run-upgrade) + + +Bugfixes +-------- + +- ``copydb`` now copy also the filestore of the database. (copydb-filestore) +- Fix warning message for ``estimate-workload`` command. + (fix-estimate-workload-warning-message) +- Fix getting url on apps.odoo.com that prevent from running + ``estimate-workload`` command. (fix-getting-url) +- Fix crash when a addons-path directory does not contain modules. + Directory that does not contains odoo modules are now removed from + addons-path option of odoo. (fix-repo) + + +Misc +---- + +- ci-improvement diff --git a/newsfragments/add-dropdb.feature b/newsfragments/add-dropdb.feature deleted file mode 100644 index 867e484..0000000 --- a/newsfragments/add-dropdb.feature +++ /dev/null @@ -1,2 +0,0 @@ -Add ``dropdb`` command to easily delete database and filestore of existing -Odoo databases in PostgreSQL container. diff --git a/newsfragments/add-install-from-csv-demo.feature b/newsfragments/add-install-from-csv-demo.feature deleted file mode 100644 index 0f5f1d6..0000000 --- a/newsfragments/add-install-from-csv-demo.feature +++ /dev/null @@ -1,3 +0,0 @@ -With ``install-from-csv`` and the ``--with-demo / --without-demo``, you -can control if the created database will be populated with demo data or -not. diff --git a/newsfragments/add-restoredb.feature b/newsfragments/add-restoredb.feature deleted file mode 100644 index 492e30d..0000000 --- a/newsfragments/add-restoredb.feature +++ /dev/null @@ -1,2 +0,0 @@ -Add ``restoredb`` command to restore database and filestore in the -PostgreSQL container. diff --git a/newsfragments/ci-improvement.misc b/newsfragments/ci-improvement.misc deleted file mode 100644 index 0a29f4c..0000000 --- a/newsfragments/ci-improvement.misc +++ /dev/null @@ -1 +0,0 @@ -Several CI improvement for testing and building application. diff --git a/newsfragments/copydb-filestore.bugfix b/newsfragments/copydb-filestore.bugfix deleted file mode 100644 index d4fa883..0000000 --- a/newsfragments/copydb-filestore.bugfix +++ /dev/null @@ -1 +0,0 @@ -``copydb`` now copy also the filestore of the database. diff --git a/newsfragments/fix-estimate-workload-warning-message.bugfix b/newsfragments/fix-estimate-workload-warning-message.bugfix deleted file mode 100644 index 309c0da..0000000 --- a/newsfragments/fix-estimate-workload-warning-message.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fix waring message for ``estimate-workload`` command. diff --git a/newsfragments/fix-getting-url.bugfix b/newsfragments/fix-getting-url.bugfix deleted file mode 100644 index b299754..0000000 --- a/newsfragments/fix-getting-url.bugfix +++ /dev/null @@ -1,2 +0,0 @@ -Fix getting url on apps.odoo.com that prevent from running -``estimate-workload`` command. diff --git a/newsfragments/fix-repo.bugfix b/newsfragments/fix-repo.bugfix deleted file mode 100644 index 8a51299..0000000 --- a/newsfragments/fix-repo.bugfix +++ /dev/null @@ -1,3 +0,0 @@ -Fix crash when a addons-path directory does not contain modules. -Directory that does not contains odoo modules are now removed from -addons-path option of odoo. diff --git a/newsfragments/imp-run-update-modules.feature b/newsfragments/imp-run-update-modules.feature deleted file mode 100644 index a302aa7..0000000 --- a/newsfragments/imp-run-update-modules.feature +++ /dev/null @@ -1 +0,0 @@ -Add ``--update-modules`` option to ``run`` command. diff --git a/newsfragments/imp-run-upgrade.feature b/newsfragments/imp-run-upgrade.feature deleted file mode 100644 index cefabe5..0000000 --- a/newsfragments/imp-run-upgrade.feature +++ /dev/null @@ -1,2 +0,0 @@ -``run`` and ``upgrade`` command are now harmonized with the option -``--with-demo / --without-demo``. By default demo data is always false. diff --git a/pyproject.toml b/pyproject.toml index 6ffcc70..c78325d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "odoo-openupgrade-wizard" -version = "0.5.0" +version = "0.6.0" description = "CLI tool to manage Odoo Major Upgrades" authors = [ "GRAP, Groupement Régional Alimentaire de Proximité",