]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
changelog edits
authorMike Bayer <mike_mp@zzzcomputing.com>
Wed, 14 May 2025 12:20:03 +0000 (08:20 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Wed, 14 May 2025 12:20:03 +0000 (08:20 -0400)
Change-Id: Ib2bb33698f58a62c945d147c39d3ac6af908b802

doc/build/changelog/unreleased_20/12405.rst
doc/build/changelog/unreleased_20/12488.rst
doc/build/changelog/unreleased_20/12566.rst

index f90546ad5aeeb271d9af391579e714874662aaa2..f05d714bbadf1249cfb4fdcd3061175ab0730350 100644 (file)
@@ -1,10 +1,12 @@
 .. change::
-    :tags: bug, orm
+    :tags: bug, platform
     :tickets: 12405
 
-    Changes to the test suite to accommodate Python 3.14 and its new
-    implementation of :pep:`649`, which highly modifies how typing annotations
-    are interpreted at runtime.  Use of the new
-    ``annotationlib.get_annotations()`` function is enabled when python 3.14 is
-    present, and many other changes to how pep-484 type objects are interpreted
-    at runtime are made.
+    Adjusted the test suite as well as the ORM's method of scanning classes for
+    annotations to work under current beta releases of Python 3.14 (currently
+    3.14.0b1) as part of an ongoing effort to support the production release of
+    this Python release.  Further changes to Python's means of working with
+    annotations is expected in subsequent beta releases for which SQLAlchemy's
+    test suite will need further adjustments.
+
+
index d81d025bdd8d17fcc0ffeb083199880bea566ebc..55c6e7b6556d2e60c63d4c6db8567f8214eaf9a2 100644 (file)
@@ -2,7 +2,7 @@
     :tags: bug, mysql
     :tickets: 12488
 
-    Fixed regression caused by the DEFAULT rendering changes in 2.0.40
-    :ticket:`12425` where using lowercase `on update` in a MySQL server default
-    would incorrectly apply parenthesis, leading to errors when MySQL
+    Fixed regression caused by the DEFAULT rendering changes in version 2.0.40
+    via :ticket:`12425` where using lowercase ``on update`` in a MySQL server
+    default would incorrectly apply parenthesis, leading to errors when MySQL
     interpreted the rendered DDL.  Pull request courtesy Alexander Ruehe.
index 194936f9675781c390e5a0972dc98c6e5d331490..42d5eed1752b5667bd3c7c429cc2875d0b20a6b1 100644 (file)
@@ -2,6 +2,6 @@
     :tags: bug, sqlite
     :tickets: 12566
 
-    Fixed and added test support for a few SQLite SQL functions hardcoded into
-    the compiler most notably the "localtimestamp" function which rendered with
-    incorrect internal quoting.
+    Fixed and added test support for some SQLite SQL functions hardcoded into
+    the compiler, most notably the ``localtimestamp`` function which rendered
+    with incorrect internal quoting.