diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2021-04-21 23:10:02 -0400 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2021-04-21 23:10:02 -0400 |
| commit | 507a828de6f8b5f878093d86332f1954bd154ca3 (patch) | |
| tree | dd0eff3d319d3ab172921d0c5662dc704101c2f6 | |
| parent | e4281f5089a612d4dd245af9bb211b388085d96b (diff) | |
| download | sqlalchemy-507a828de6f8b5f878093d86332f1954bd154ca3.tar.gz | |
- 1.4.11rel_1_4_11
| -rw-r--r-- | doc/build/changelog/changelog_14.rst | 20 | ||||
| -rw-r--r-- | doc/build/changelog/unreleased_14/6331.rst | 7 | ||||
| -rw-r--r-- | doc/build/changelog/unreleased_14/6337.rst | 9 | ||||
| -rw-r--r-- | doc/build/conf.py | 4 |
4 files changed, 21 insertions, 19 deletions
diff --git a/doc/build/changelog/changelog_14.rst b/doc/build/changelog/changelog_14.rst index 05931d96e..5bb7ad4b5 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 0bcecaec9..000000000 --- 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 c85e3b035..000000000 --- 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 9e26b4986..5a62d527f 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" |
