We are pleased to announce the release of: oslo.db 8.5.0: Oslo Database library This release is part of the wallaby release series. The source is available from: https://opendev.org/openstack/oslo.db Download the package from: https://pypi.org/project/oslo.db Please report issues through: https://bugs.launchpad.net/oslo.db/+bugs For more details, please see below. 8.5.0 ^^^^^ Deprecation Notes * The "oslo_db.sqlalchemy.migration" module is deprecated for removal. It only supports "sqlalchemy-migrate", which is no longer under active development and has been effectively replaced by "alembic". Users of this module should consider switching to "alembic" or, if necessary, using "sqlalchemy-migrate" directly. * The "oslo_db.sqlalchemy.migration_cli" module is deprecated for removal. It was intended to provide an abstraction layer over different migration backends - specifically "sqlalchemy-migrate" and "alembic" - however, takeup has been limited and its expected that users will use "alembic" directly nowadays. Changes in oslo.db 8.4.0..8.5.0 ------------------------------- 642dac1 Deprecate the 'oslo_db.sqlalchemy.migration_cli' module fc85587 Deprecate 'oslo_db.sqlalchemy.migration' module aad193a Imported Translations from Zanata 80190b3 Adding pre-commit 83471a1 Add Python3 wallaby unit tests 6a3def8 Update master for stable/victoria Diffstat (except docs and test files) ------------------------------------- .pre-commit-config.yaml | 35 ++++++++++++++++++++++ .zuul.yaml | 2 +- oslo_db/sqlalchemy/migration.py | 10 +++++++ oslo_db/sqlalchemy/migration_cli/manager.py | 7 +++++ ...recate-sqlalchemy-migrate-6f899935615d6984.yaml | 14 +++++++++ releasenotes/source/index.rst | 1 + .../locale/en_GB/LC_MESSAGES/releasenotes.po | 7 +++-- releasenotes/source/victoria.rst | 6 ++++ test-requirements.txt | 1 + tox.ini | 2 +- 11 files changed, 92 insertions(+), 13 deletions(-) Requirements updates -------------------- diff --git a/test-requirements.txt b/test-requirements.txt index ba3fbc1..4388b76 100644 --- a/test-requirements.txt +++ b/test-requirements.txt @@ -16,0 +17 @@ psycopg2>=2.8.0 # LGPL/ZPL +pre-commit>=2.6.0 # MIT