From: Mike Bayer Date: Mon, 4 Mar 2024 13:24:31 +0000 (-0500) Subject: - 1.4.52 X-Git-Tag: rel_1_4_52 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=768507602e4564108799c0c6bfd3d7ceb734784b;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git - 1.4.52 --- diff --git a/doc/build/changelog/changelog_14.rst b/doc/build/changelog/changelog_14.rst index 78b186863f..3ee8b6d2df 100644 --- a/doc/build/changelog/changelog_14.rst +++ b/doc/build/changelog/changelog_14.rst @@ -15,7 +15,17 @@ This document details individual issue-level changes made throughout .. changelog:: :version: 1.4.52 - :include_notes_from: unreleased_14 + :released: March 4, 2024 + + .. change:: + :tags: bug, orm + :tickets: 10365 + + Fixed bug where ORM :func:`_orm.with_loader_criteria` would not apply + itself to a :meth:`_sql.Select.join` where the ON clause were given as a + plain SQL comparison, rather than as a relationship target or similar. + + This is a backport of the same issue fixed in version 2.0 for 2.0.22. .. changelog:: :version: 1.4.51 diff --git a/doc/build/changelog/unreleased_14/10365.rst b/doc/build/changelog/unreleased_14/10365.rst deleted file mode 100644 index 5eb4f44065..0000000000 --- a/doc/build/changelog/unreleased_14/10365.rst +++ /dev/null @@ -1,9 +0,0 @@ -.. change:: - :tags: bug, orm - :tickets: 10365 - - Fixed bug where ORM :func:`_orm.with_loader_criteria` would not apply - itself to a :meth:`_sql.Select.join` where the ON clause were given as a - plain SQL comparison, rather than as a relationship target or similar. - - This is a backport of the same issue fixed in version 2.0 for 2.0.22. diff --git a/doc/build/conf.py b/doc/build/conf.py index 587ddb12da..508116a560 100644 --- a/doc/build/conf.py +++ b/doc/build/conf.py @@ -221,9 +221,9 @@ copyright = u"2007-2024, 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.51" +release = "1.4.52" -release_date = "January 2, 2024" +release_date = "March 4, 2024" site_base = os.environ.get("RTD_SITE_BASE", "https://www.sqlalchemy.org") site_adapter_template = "docs_adapter.mako"