From: Mike Bayer Date: Thu, 22 Apr 2021 03:10:02 +0000 (-0400) Subject: - 1.4.11 X-Git-Tag: rel_1_4_11 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=507a828de6f8b5f878093d86332f1954bd154ca3;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git - 1.4.11 --- diff --git a/doc/build/changelog/changelog_14.rst b/doc/build/changelog/changelog_14.rst index 05931d96e7..5bb7ad4b51 100644 --- a/doc/build/changelog/changelog_14.rst +++ b/doc/build/changelog/changelog_14.rst @@ -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 index 0bcecaec90..0000000000 --- a/doc/build/changelog/unreleased_14/6331.rst +++ /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 index c85e3b0352..0000000000 --- a/doc/build/changelog/unreleased_14/6337.rst +++ /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. - diff --git a/doc/build/conf.py b/doc/build/conf.py index 9e26b4986c..5a62d527f4 100644 --- a/doc/build/conf.py +++ b/doc/build/conf.py @@ -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"