summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2021-03-30 18:57:25 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2021-03-30 18:57:47 -0400
commit6fd379647d3929303013d5ac52d3566c52c993e3 (patch)
treeb9121ef7c47adc648cc1127778a0855fc3b00795
parente1ee44322c25c05064e7d10c870af8c4be2f718e (diff)
downloadsqlalchemy-6fd379647d3929303013d5ac52d3566c52c993e3.tar.gz
Adjust version numbers for some changes, tags
Change-Id: I53263bd27a9012f1c41a2c491441c5fed79df673 (cherry picked from commit 8ecfecefe81f4fef6ed30ad46b7a36d76e3ea14b)
-rw-r--r--doc/build/changelog/unreleased_13/6007.rst2
-rw-r--r--doc/build/changelog/unreleased_13/6023.rst1
-rw-r--r--doc/build/changelog/unreleased_13/6071.rst9
3 files changed, 10 insertions, 2 deletions
diff --git a/doc/build/changelog/unreleased_13/6007.rst b/doc/build/changelog/unreleased_13/6007.rst
index 5b06e18b6..62c5af1d4 100644
--- a/doc/build/changelog/unreleased_13/6007.rst
+++ b/doc/build/changelog/unreleased_13/6007.rst
@@ -1,5 +1,5 @@
.. change::
- :tags: bug, sql, sqlite
+ :tags: bug, schema, sqlite
:tickets: 6007
:versions: 1.4.0
diff --git a/doc/build/changelog/unreleased_13/6023.rst b/doc/build/changelog/unreleased_13/6023.rst
index 2cfe88567..1c4b6ac8c 100644
--- a/doc/build/changelog/unreleased_13/6023.rst
+++ b/doc/build/changelog/unreleased_13/6023.rst
@@ -1,6 +1,7 @@
.. change::
:tags: bug, types, postgresql
:tickets: 6023
+ :versions: 1.4.3
Adjusted the psycopg2 dialect to emit an explicit PostgreSQL-style cast for
bound parameters that contain ARRAY elements. This allows the full range of
diff --git a/doc/build/changelog/unreleased_13/6071.rst b/doc/build/changelog/unreleased_13/6071.rst
index f9a04c98c..44e8abfab 100644
--- a/doc/build/changelog/unreleased_13/6071.rst
+++ b/doc/build/changelog/unreleased_13/6071.rst
@@ -1,5 +1,12 @@
.. change::
:tags: bug, schema
:tickets: 6071
+ :versions: 1.4.3
- Allow dropping a schema with a sequence shared by more than one table.
+ Adjusted the logic that emits DROP statements for :class:`_schema.Sequence`
+ objects among the dropping of multiple tables, such that all
+ :class:`_schema.Sequence` objects are dropped after all tables, even if the
+ given :class:`_schema.Sequence` is related only to a :class:`_schema.Table`
+ object and not directly to the overall :class:`_schema.MetaData` object.
+ The use case supports the same :class:`_schema.Sequence` being associated
+ with more than one :class:`_schema.Table` at a time.