]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
- 1.4.31 rel_1_4_31
authorMike Bayer <mike_mp@zzzcomputing.com>
Fri, 21 Jan 2022 01:33:00 +0000 (20:33 -0500)
committerMike Bayer <mike_mp@zzzcomputing.com>
Fri, 21 Jan 2022 01:33:00 +0000 (20:33 -0500)
doc/build/changelog/changelog_14.rst
doc/build/changelog/unreleased_14/7243.rst [deleted file]
doc/build/changelog/unreleased_14/7590.rst [deleted file]
doc/build/changelog/unreleased_14/7591.rst [deleted file]
doc/build/changelog/unreleased_14/7593.rst [deleted file]
doc/build/conf.py

index 32580a7e079d667c541ef2195f1a21e83c538a0a..4c68a387e86d6989b2e1407a2060fa3d9b42ceab 100644 (file)
@@ -15,7 +15,45 @@ This document details individual issue-level changes made throughout
 
 .. changelog::
     :version: 1.4.31
-    :include_notes_from: unreleased_14
+    :released: January 20, 2022
+
+    .. change::
+        :tags: bug, postgresql, regression
+        :tickets: 7590
+
+        Fixed regression where the change in :ticket:`7148` to repair ENUM handling
+        in PostgreSQL broke the use case of an empty ARRAY of ENUM, preventing rows
+        that contained an empty array from being handled correctly when fetching
+        results.
+
+    .. change::
+        :tags: bug, orm
+        :tickets: 7591
+
+        Fixed issue in :meth:`_orm.Session.bulk_save_objects` where the sorting
+        that takes place when the ``preserve_order`` parameter is set to False
+        would sort partially on ``Mapper`` objects, which is rejected in Python
+        3.11.
+
+
+    .. change::
+        :tags: bug, mysql, regression
+        :tickets: 7593
+
+        Fixed regression in asyncmy dialect caused by :ticket:`7567` where removal
+        of the PyMySQL dependency broke binary columns, due to the asyncmy dialect
+        not being properly included within CI tests.
+
+    .. change::
+        :tags: mssql
+        :tickets: 7243
+
+        Added support for ``FILESTREAM`` when using ``VARBINARY(max)``
+        in MSSQL.
+
+        .. seealso::
+
+            :paramref:`_mssql.VARBINARY.filestream`
 
 .. changelog::
     :version: 1.4.30
diff --git a/doc/build/changelog/unreleased_14/7243.rst b/doc/build/changelog/unreleased_14/7243.rst
deleted file mode 100644 (file)
index b4661c2..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-.. change::
-    :tags: mssql
-    :tickets: 7243
-
-    Added support for ``FILESTREAM`` when using ``VARBINARY(max)``
-    in MSSQL.
-
-    .. seealso::
-
-        :paramref:`_mssql.VARBINARY.filestream`
diff --git a/doc/build/changelog/unreleased_14/7590.rst b/doc/build/changelog/unreleased_14/7590.rst
deleted file mode 100644 (file)
index 822adf6..0000000
+++ /dev/null
@@ -1,8 +0,0 @@
-.. change::
-    :tags: bug, postgresql, regression
-    :tickets: 7590
-
-    Fixed regression where the change in :ticket:`7148` to repair ENUM handling
-    in PostgreSQL broke the use case of an empty ARRAY of ENUM, preventing rows
-    that contained an empty array from being handled correctly when fetching
-    results.
diff --git a/doc/build/changelog/unreleased_14/7591.rst b/doc/build/changelog/unreleased_14/7591.rst
deleted file mode 100644 (file)
index 5724a05..0000000
+++ /dev/null
@@ -1,9 +0,0 @@
-.. change::
-    :tags: bug, orm
-    :tickets: 7591
-
-    Fixed issue in :meth:`_orm.Session.bulk_save_objects` where the sorting
-    that takes place when the ``preserve_order`` parameter is set to False
-    would sort partially on ``Mapper`` objects, which is rejected in Python
-    3.11.
-
diff --git a/doc/build/changelog/unreleased_14/7593.rst b/doc/build/changelog/unreleased_14/7593.rst
deleted file mode 100644 (file)
index ebb3406..0000000
+++ /dev/null
@@ -1,7 +0,0 @@
-.. change::
-    :tags: bug, mysql, regression
-    :tickets: 7593
-
-    Fixed regression in asyncmy dialect caused by :ticket:`7567` where removal
-    of the PyMySQL dependency broke binary columns, due to the asyncmy dialect
-    not being properly included within CI tests.
index f964e14e391d58a681f69348173bb0de653bd8e0..67a629799b363e5b586fd077b2cfe0d72f6b44ab 100644 (file)
@@ -205,9 +205,9 @@ copyright = u"2007-2022, the SQLAlchemy authors and contributors"  # noqa
 # The short X.Y version.
 version = "1.4"
 # The full version, including alpha/beta/rc tags.
-release = "1.4.30"
+release = "1.4.31"
 
-release_date = "January 19, 2022"
+release_date = "January 20, 2022"
 
 site_base = os.environ.get("RTD_SITE_BASE", "https://www.sqlalchemy.org")
 site_adapter_template = "docs_adapter.mako"