]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
- 1.4.52 rel_1_4_52
authorMike Bayer <mike_mp@zzzcomputing.com>
Mon, 4 Mar 2024 13:24:31 +0000 (08:24 -0500)
committerMike Bayer <mike_mp@zzzcomputing.com>
Mon, 4 Mar 2024 13:24:31 +0000 (08:24 -0500)
doc/build/changelog/changelog_14.rst
doc/build/changelog/unreleased_14/10365.rst [deleted file]
doc/build/conf.py

index 78b186863f0a830e19baae2f21397784781119d9..3ee8b6d2df3919f74f5771436eef0a6fc3f7167d 100644 (file)
@@ -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 (file)
index 5eb4f44..0000000
+++ /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.
index 587ddb12da5cd461550b1cb1d323bf13923239d5..508116a5608b73702f036f1f91320a951aaa3214 100644 (file)
@@ -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"