]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
cherry-pick changelog from 2.0.48
authorMike Bayer <mike_mp@zzzcomputing.com>
Mon, 2 Mar 2026 15:29:07 +0000 (10:29 -0500)
committerMike Bayer <mike_mp@zzzcomputing.com>
Mon, 2 Mar 2026 15:29:07 +0000 (10:29 -0500)
doc/build/changelog/changelog_20.rst
doc/build/changelog/unreleased_20/13144.rst [deleted file]

index cf5e0cd52152473141beba3dd2f1527e9eb1d783..14d3f8216c9c3429d9483ff32941ae3e39537eb1 100644 (file)
 
 .. changelog::
     :version: 2.0.48
-    :include_notes_from: unreleased_20
+    :released: March 2, 2026
+
+    .. change::
+        :tags: bug, engine
+        :tickets: 13144
+
+        Fixed a critical issue in :class:`.Engine` where connections created in
+        conjunction with the :meth:`.DialectEvents.do_connect` event listeners
+        would receive shared, mutable collections for the connection arguments,
+        leading to a variety of potential issues including unlimited growth of the
+        argument list as well as elements within the parameter dictionary being
+        shared among concurrent connection calls.  In particular this could impact
+        do_connect routines making use of complex mutable authentication
+        structures.
 
 .. changelog::
     :version: 2.0.47
diff --git a/doc/build/changelog/unreleased_20/13144.rst b/doc/build/changelog/unreleased_20/13144.rst
deleted file mode 100644 (file)
index 89e97ce..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
-.. change::
-    :tags: bug, engine
-    :tickets: 13144
-
-    Fixed a critical issue in :class:`.Engine` where connections created in
-    conjunction with the :meth:`.DialectEvents.do_connect` event listeners
-    would receive shared, mutable collections for the connection arguments,
-    leading to a variety of potential issues including unlimited growth of the
-    argument list as well as elements within the parameter dictionary being
-    shared among concurrent connection calls.  In particular this could impact
-    do_connect routines making use of complex mutable authentication
-    structures.