We jubilantly announce the release of: trove 23.0.0 This release is part of the epoxy release series. The source is available from: https://opendev.org/openstack/trove Download the package from: https://tarballs.openstack.org/trove/ Please report issues through: https://bugs.launchpad.net/trove/+bugs For more details, please see below. 23.0.0 ^^^^^^ Bug Fixes * Fixes support for PostgreSQL v13 and above. Sets the *wal_keep_size* or *wal_keep_segments* in the instance configuration file depending on the version in the data store version name. The version number is parsed from the Datastore Version name and is exposed to the database instance configuration templates to allow the the use of conditional based on the version. Story 2008285 Changes in trove 22.0.0..23.0.0 ------------------------------- 62857880 Add support for PostgreSQL 13 and above. 057c4cb5 Update TOX_CONSTRAINTS_FILE for stable/2025.1 674e1a26 Update .gitreview for stable/2025.1 5d7b5053 Fix typo a94e7f39 Change the default configuration value 34d2b097 Do not try to split packages if None provided 82b753cf Optimize the link address in docs 08cd4365 doc: Use dnf instead of yum 644edc9e Install and configure the Trove dashboard - several improvements e4113c55 Support new storage driver for backup objects 8331446f Replace oslo_utils.encodeutils.exception_to_unicode e9fa651a [CI]: fix unittest failure 6a016ff4 Fix missing instance_ports_cache options 9c92df81 Remove python3-venv if is_fedora is true 0f1fc5db [CI]: run perodical jobs on master branch only 1526b208 Fix: trovestack failed to build images 89274df2 Working on missing postgresql features 0138ce30 Using quay.io registry in project ff502ae6 [CI] Follow up: I7baf7391d2bc7f0f17f525792eff5c0c82e41b42 a74ea979 CI: push images to quay.io 550b0f0d Update gate jobs as per the 2025.1 cycle testing runtime f0f186ef Fix replication detach error 3d8501db Remove diskimage-builder requirement 5437bc48 Use venv to install diskimage-builder 3833d470 Ignore config/policy sample file for doc build 0057801f Remove pylint target 51e947a8 Add note about requirements lower bounds 316334b7 reno: Update master for unmaintained/2023.1 93d67678 Fix MariaDB target dir for backup syntax fca1c02d Remove default override for config options policy_file 596134e3 Follow up: Add Datastore Version Registry Extension 3ff63904 Remove Python 3.8 support 608e9860 Make more flexible with locality options 50f62389 Imported Translations from Zanata d3516167 Remove workaround for eventlet < 0.27.0 65fbb640 Remove unused dependencies af2bea2d Update master for stable/2024.2 82362540 Replace deprecated LegacyEngineFacade Diffstat (except docs and test files) ------------------------------------- .gitignore | 2 + .gitreview | 1 + api-ref/source/backups.inc | 6 +- api-ref/source/parameters.yaml | 6 + api-ref/source/samples/backup-create-request.json | 3 +- api-ref/source/samples/backup-create-response.json | 3 +- api-ref/source/samples/backup-get-response.json | 3 +- api-ref/source/samples/backup-list-response.json | 6 +- .../samples/datastore-version-show-response.json | 36 +- backup/Dockerfile | 2 +- backup/drivers/mariabackup.py | 2 +- devstack/plugin.sh | 4 +- devstack/settings | 11 +- .../{install-redhat.rst => install-rdo.rst} | 8 +- .../fedora-guest/install.d/15-trove-dep | 3 +- .../files/requirements/fedora-requirements.txt | 1 - .../files/requirements/ubuntu-requirements.txt | 1 - integration/scripts/projects-list | 1 - integration/scripts/trovestack | 7 +- playbooks/image-build/docker-registry.yaml | 99 +++--- playbooks/image-build/pre.yaml | 10 + .../notes/fix-db-migration-b47ae342b4645b66.yaml | 5 + .../fix-replication-detach-a21f29c89d089f9b.yaml | 5 + ...-postgresql-v13-and-above-90ba30c4ab62df3d.yaml | 11 + .../notes/remove-py38-36acc6f5340ac604.yaml | 5 + .../notes/story-2010956-73a2e2436e84e6c3.yaml | 6 + releasenotes/source/2023.1.rst | 2 +- releasenotes/source/2024.2.rst | 6 + releasenotes/source/index.rst | 1 + .../locale/en_GB/LC_MESSAGES/releasenotes.po | 78 ++++- requirements.txt | 12 +- setup.cfg | 4 +- test-requirements.txt | 3 +- tox.ini | 12 +- trove/backup/models.py | 44 ++- trove/backup/service.py | 4 +- trove/cmd/__init__.py | 6 - trove/cmd/common.py | 2 +- trove/cmd/manage.py | 2 +- trove/cmd/status.py | 2 +- trove/common/cache.py | 30 +- trove/common/cfg.py | 15 +- trove/common/db/models.py | 22 ++ trove/common/extensions.py | 4 +- trove/common/policy.py | 7 - trove/common/template.py | 25 ++ trove/common/wsgi.py | 4 +- trove/conductor/manager.py | 4 +- trove/configuration/models.py | 6 +- trove/datastore/models.py | 9 +- trove/db/sqlalchemy/api.py | 36 +- ...cd1_add_datastore_version_registry_extension.py | 6 +- ...154548a6_add_storage_driver_to_backups_table.py | 50 +++ trove/db/sqlalchemy/session.py | 34 +- trove/extensions/{mysql => common}/common.py | 8 +- trove/extensions/common/models.py | 263 ++++++++++++++- trove/extensions/common/service.py | 344 +++++++++++++++++++ trove/extensions/common/views.py | 46 +++ trove/extensions/mgmt/instances/models.py | 6 +- trove/extensions/mgmt/instances/service.py | 8 +- trove/extensions/mysql/__init__.py | 0 trove/extensions/mysql/models.py | 273 --------------- trove/extensions/mysql/service.py | 373 --------------------- trove/extensions/mysql/views.py | 74 ---- trove/extensions/routes/mysql.py | 7 +- trove/guestagent/api.py | 26 +- trove/guestagent/common/operating_system.py | 24 ++ trove/guestagent/datastore/manager.py | 37 +- trove/guestagent/datastore/mariadb/manager.py | 45 +++ trove/guestagent/datastore/mariadb/service.py | 31 ++ trove/guestagent/datastore/mysql/manager.py | 37 ++ trove/guestagent/datastore/mysql/service.py | 35 ++ trove/guestagent/datastore/mysql_common/manager.py | 12 + trove/guestagent/datastore/mysql_common/service.py | 27 +- trove/guestagent/datastore/postgres/manager.py | 78 ++++- trove/guestagent/datastore/postgres/service.py | 14 +- trove/guestagent/datastore/service.py | 11 +- .../strategies/replication/mysql_base.py | 6 +- .../strategies/replication/mysql_gtid.py | 6 +- .../strategies/replication/postgresql.py | 9 +- trove/instance/models.py | 2 +- trove/instance/service.py | 8 +- trove/taskmanager/manager.py | 5 +- trove/taskmanager/models.py | 197 ++++++++--- trove/templates/postgresql/config.template | 4 + trove/templates/postgresql/validation-rules.json | 6 + .../cluster/test_cluster_pxc_controller.py | 2 +- .../cluster/test_cluster_redis_controller.py | 2 +- .../cluster/test_cluster_vertica_controller.py | 2 +- .../configuration/test_configuration_controller.py | 2 +- zuul.d/jobs.yaml | 25 +- zuul.d/nodesets.yaml | 44 ++- zuul.d/projects.yaml | 10 +- 108 files changed, 2094 insertions(+), 1076 deletions(-) Requirements updates -------------------- diff --git a/requirements.txt b/requirements.txt index 6a2ea703..4a39a3cc 100644 --- a/requirements.txt +++ b/requirements.txt @@ -0,0 +1,4 @@ +# Requirements lower bounds listed here are our best effort to keep them up to +# date but we do not test them so no guarantee of having them all correct. If +# you find any incorrect lower bounds, let us know or propose a fix. + @@ -3 +7 @@ pbr!=2.1.0,>=2.0.0 # Apache-2.0 -eventlet!=0.18.3,!=0.20.1,>=0.18.2 # MIT +eventlet>=0.27.0 # MIT @@ -11 +14,0 @@ netaddr>=0.7.18 # BSD -httplib2>=0.9.1 # MIT @@ -13 +15,0 @@ lxml!=3.7.0,>=3.4.1 # BSD -python-heatclient>=1.10.0 # Apache-2.0 @@ -22 +23,0 @@ python-troveclient>=2.2.0 # Apache-2.0 -iso8601>=0.1.11 # MIT @@ -43,2 +44 @@ cryptography>=2.1.4 # BSD/Apache-2.0 -oslo.policy>=3.6.0 # Apache-2.0 -diskimage-builder!=1.6.0,!=1.7.0,!=1.7.1,>=1.1.2 # Apache-2.0 +oslo.policy>=4.5.0 # Apache-2.0 diff --git a/test-requirements.txt b/test-requirements.txt index d01d7501..d8f4157c 100644 --- a/test-requirements.txt +++ b/test-requirements.txt @@ -2 +2 @@ -hacking<6.0.0 # Apache-2.0 +hacking>=7.0.0,<7.1.0 # Apache-2.0 @@ -12 +11,0 @@ astroid==1.6.5 # LGPLv2.1 -pylint==1.9.2 # GPLv2
participants (1)
-
no-reply@openstack.org