]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
cherry-pick changelog from 1.2.10
authorMike Bayer <mike_mp@zzzcomputing.com>
Fri, 13 Jul 2018 23:03:48 +0000 (19:03 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Fri, 13 Jul 2018 23:03:48 +0000 (19:03 -0400)
doc/build/changelog/changelog_12.rst
doc/build/changelog/unreleased_12/4295.rst [deleted file]
doc/build/changelog/unreleased_12/4298.rst [deleted file]
doc/build/changelog/unreleased_12/4300.rst [deleted file]

index bd70927a4d390a5ac20442a2763d01a3b3a5abe8..e563995c51e0802118f8413044a5d75a387dee52 100644 (file)
 
 .. changelog::
     :version: 1.2.10
-    :include_notes_from: unreleased_12
+    :released: July 13, 2018
+
+    .. change::
+        :tags: bug, sql
+        :tickets: 4300
+
+        Fixed bug where a :class:`.Sequence` would be dropped explicitly before any
+        :class:`.Table` that refers to it, which breaks in the case when the
+        sequence is also involved in a server-side default for that table, when
+        using :meth:`.MetaData.drop_all`.   The step which processes sequences
+        to be dropped via non server-side column default functions is now invoked
+        after the table itself is dropped.
+
+    .. change::
+        :tags: bug, orm
+        :tickets: 4295
+
+        Fixed bug in :class:`.Bundle` construct where placing two columns of the
+        same name would be de-duplicated, when the :class:`.Bundle` were used as
+        part of the rendered SQL, such as in the ORDER BY or GROUP BY of the statement.
+
+
+    .. change::
+        :tags: bug, orm
+        :tickets: 4298
+
+        Fixed regression in 1.2.9 due to :ticket:`4287` where using a
+        :class:`.Load` option in conjunction with a string wildcard would result
+        in a TypeError.
 
 .. changelog::
     :version: 1.2.9
diff --git a/doc/build/changelog/unreleased_12/4295.rst b/doc/build/changelog/unreleased_12/4295.rst
deleted file mode 100644 (file)
index acfc8a0..0000000
+++ /dev/null
@@ -1,8 +0,0 @@
-.. change::
-    :tags: bug, orm
-    :tickets: 4295
-
-    Fixed bug in :class:`.Bundle` construct where placing two columns of the
-    same name would be de-duplicated, when the :class:`.Bundle` were used as
-    part of the rendered SQL, such as in the ORDER BY or GROUP BY of the statement.
-
diff --git a/doc/build/changelog/unreleased_12/4298.rst b/doc/build/changelog/unreleased_12/4298.rst
deleted file mode 100644 (file)
index 4c54be5..0000000
+++ /dev/null
@@ -1,7 +0,0 @@
-.. change::
-    :tags: bug, orm
-    :tickets: 4298
-
-    Fixed regression in 1.2.9 due to :ticket:`4287` where using a
-    :class:`.Load` option in conjunction with a string wildcard would result
-    in a TypeError.
diff --git a/doc/build/changelog/unreleased_12/4300.rst b/doc/build/changelog/unreleased_12/4300.rst
deleted file mode 100644 (file)
index b34742c..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-.. change::
-    :tags: bug, sql
-    :tickets: 4300
-
-    Fixed bug where a :class:`.Sequence` would be dropped explicitly before any
-    :class:`.Table` that refers to it, which breaks in the case when the
-    sequence is also involved in a server-side default for that table, when
-    using :meth:`.MetaData.drop_all`.   The step which processes sequences
-    to be dropped via non server-side column default functions is now invoked
-    after the table itself is dropped.