.. 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
+++ /dev/null
-.. 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.
+++ /dev/null
-.. 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.
-
# 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"