]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
- 1.4.11 rel_1_4_11
authorMike Bayer <mike_mp@zzzcomputing.com>
Thu, 22 Apr 2021 03:10:02 +0000 (23:10 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Thu, 22 Apr 2021 03:10:02 +0000 (23:10 -0400)
doc/build/changelog/changelog_14.rst
doc/build/changelog/unreleased_14/6331.rst [deleted file]
doc/build/changelog/unreleased_14/6337.rst [deleted file]
doc/build/conf.py

index 05931d96e726d1ca5e49399cf0b6b2a9048b6d04..5bb7ad4b519fa984dd45a8d61e6b201c5f422161 100644 (file)
@@ -15,7 +15,25 @@ This document details individual issue-level changes made throughout
 
 .. changelog::
     :version: 1.4.11
-    :include_notes_from: unreleased_14
+    :released: April 21, 2021
+
+    .. change::
+        :tags: bug, engine, regression
+        :tickets: 6337
+
+        Fixed critical regression caused by the change in :ticket:`5497` where the
+        connection pool "init" phase no longer occurred within mutexed isolation,
+        allowing other threads to proceed with the dialect uninitialized, which
+        could then impact the compilation of SQL statements.
+
+
+    .. change::
+        :tags: bug, orm, regression, declarative
+        :tickets: 6331
+
+        Fixed regression where recent changes to support Python dataclasses had the
+        inadvertent effect that an ORM mapped class could not successfully override
+        the ``__new__()`` method.
 
 .. changelog::
     :version: 1.4.10
diff --git a/doc/build/changelog/unreleased_14/6331.rst b/doc/build/changelog/unreleased_14/6331.rst
deleted file mode 100644 (file)
index 0bcecae..0000000
+++ /dev/null
@@ -1,7 +0,0 @@
-.. change::
-    :tags: bug, orm, regression, declarative
-    :tickets: 6331
-
-    Fixed regression where recent changes to support Python dataclasses had the
-    inadvertent effect that an ORM mapped class could not successfully override
-    the ``__new__()`` method.
diff --git a/doc/build/changelog/unreleased_14/6337.rst b/doc/build/changelog/unreleased_14/6337.rst
deleted file mode 100644 (file)
index c85e3b0..0000000
+++ /dev/null
@@ -1,9 +0,0 @@
-.. change::
-    :tags: bug, engine, regression
-    :tickets: 6337
-
-    Fixed critical regression caused by the change in :ticket:`5497` where the
-    connection pool "init" phase no longer occurred within mutexed isolation,
-    allowing other threads to proceed with the dialect uninitialized, which
-    could then impact the compilation of SQL statements.
-
index 9e26b4986c4cecaa1f67272e2e05289aafa612d9..5a62d527f4a6f72cb6a0f582e687e0a8aa3e6611 100644 (file)
@@ -195,9 +195,9 @@ copyright = u"2007-2021, 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.10"
+release = "1.4.11"
 
-release_date = "April 20, 2021"
+release_date = "April 21, 2021"
 
 site_base = os.environ.get("RTD_SITE_BASE", "http://www.sqlalchemy.org")
 site_adapter_template = "docs_adapter.mako"