summaryrefslogtreecommitdiff
path: root/releasenotes
diff options
context:
space:
mode:
Diffstat (limited to 'releasenotes')
-rw-r--r--releasenotes/notes/deprecate-TpoolDbapiWrapper-2ce78aa7cbb9e585.yaml9
-rw-r--r--releasenotes/notes/remove-ModelsMigrationsSync-check_foreign_keys-467e0dbeb65a8c86.yaml12
2 files changed, 21 insertions, 0 deletions
diff --git a/releasenotes/notes/deprecate-TpoolDbapiWrapper-2ce78aa7cbb9e585.yaml b/releasenotes/notes/deprecate-TpoolDbapiWrapper-2ce78aa7cbb9e585.yaml
new file mode 100644
index 0000000..57812bb
--- /dev/null
+++ b/releasenotes/notes/deprecate-TpoolDbapiWrapper-2ce78aa7cbb9e585.yaml
@@ -0,0 +1,9 @@
+---
+deprecations:
+ - |
+ The ``oslo_db.concurrency.TpoolDbapiWrapper`` class and supporting
+ ``[database] use_tpool`` config option are now deprecated.
+ This feature never graduated from experimental status and is slated for
+ removal due to lack of maintenance and test coverage. Users should switch
+ to ``oslo_db.api.DBAPI.from_config`` and remove references to the
+ deprecated config option from their documentation.
diff --git a/releasenotes/notes/remove-ModelsMigrationsSync-check_foreign_keys-467e0dbeb65a8c86.yaml b/releasenotes/notes/remove-ModelsMigrationsSync-check_foreign_keys-467e0dbeb65a8c86.yaml
new file mode 100644
index 0000000..638421c
--- /dev/null
+++ b/releasenotes/notes/remove-ModelsMigrationsSync-check_foreign_keys-467e0dbeb65a8c86.yaml
@@ -0,0 +1,12 @@
+---
+upgrade:
+ - |
+ The ``check_foreign_keys`` helper of the
+ ``oslo_db.sqlalchemy.test_migrations.ModelsMigrationsSync`` base test class
+ has been removed. This was deprecated in 1.4.1 as alembic now supports this
+ capability.
+ - The ``_walk_versions``, ``_migrate_down``, and ``_migrate_up`` methods of
+ the ``oslo_db.sqlalchemy.test_migrations.ModelsMigrationsSync`` base test
+ class have been removed. These were deprecated in 0.5.0 in favour of their
+ non-private equivalents, ``walk_versions``, ``migrate_down``, and
+ ``migrate_up`` respectively.