]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
backport 1.4 changelogs
authorMike Bayer <mike_mp@zzzcomputing.com>
Mon, 29 Jul 2024 15:33:58 +0000 (11:33 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Mon, 29 Jul 2024 15:33:58 +0000 (11:33 -0400)
we have a few issues that were fixed only in 1.4, not yet released.
backport the changelog so that release mechanics proceed without issue

Change-Id: I376aa5c854314e86134c8f935b80d6c0dd083033

doc/build/changelog/unreleased_14/11417.rst [new file with mode: 0644]
doc/build/changelog/unreleased_14/11499.rst [new file with mode: 0644]

diff --git a/doc/build/changelog/unreleased_14/11417.rst b/doc/build/changelog/unreleased_14/11417.rst
new file mode 100644 (file)
index 0000000..5182c03
--- /dev/null
@@ -0,0 +1,11 @@
+.. change::
+    :tags: bug, general
+    :tickets: 11417
+
+    Set up full Python 3.13 support to the extent currently possible, repairing
+    issues within internal language helpers as well as the serializer extension
+    module.
+
+    For version 1.4, this also modernizes the "extras" names in setup.cfg
+    to use dashes and not underscores for two-word names.  Underscore names
+    are still present to accommodate potential compatibility issues.
diff --git a/doc/build/changelog/unreleased_14/11499.rst b/doc/build/changelog/unreleased_14/11499.rst
new file mode 100644 (file)
index 0000000..e03062c
--- /dev/null
@@ -0,0 +1,6 @@
+.. change::
+    :tags: bug, engine
+    :tickets: 11499
+
+    Adjustments to the C extensions, which are specific to the SQLAlchemy 1.x
+    series, to work under Python 3.13.  Pull request courtesy Ben Beasley.