]> git.ipfire.org Git - thirdparty/sqlalchemy/alembic.git/commitdiff
bump minimum sqlalchemy to 1.4.23
authorMike Bayer <mike_mp@zzzcomputing.com>
Thu, 29 Jan 2026 18:20:44 +0000 (13:20 -0500)
committerMike Bayer <mike_mp@zzzcomputing.com>
Thu, 29 Jan 2026 18:22:29 +0000 (13:22 -0500)
Fixed regression caused by :ticket:`1669` which requires SQLAlchemy objects
to support generic type subscripting; for the older SQLAlchemy 1.4 series,
this requires version 1.4.23.  Changed the minimum requirements in to be
for 1.4.23 rather than 1.4.0.

Fixes: #1788
Change-Id: I7996ae9cc613208a6ceded6d71afe33d11083034

docs/build/changelog.rst
docs/build/unreleased/1788.rst [new file with mode: 0644]
pyproject.toml

index 94c8fa0184cbc0b0211d547d5d40b72147e39176..041f9dcb161cf05fe1db3eeb597bc64162202cdd 100644 (file)
@@ -11,14 +11,6 @@ Changelog
     :version: 1.18.2
     :released: January 28, 2026
 
-    .. change::
-        :tags: change, platforms
-
-        For release 1.18.2, if still using the SQLAlchemy 1.4 series, **version
-        1.4.23 at minimum is required**.  It's strongly recommended to be on
-        the latest (and final) release in the 1.4 series which is version
-        1.4.54.
-
     .. change::
         :tags: usecase, operations
         :tickets: 1232
diff --git a/docs/build/unreleased/1788.rst b/docs/build/unreleased/1788.rst
new file mode 100644 (file)
index 0000000..6d949ed
--- /dev/null
@@ -0,0 +1,10 @@
+.. change::
+    :tags: bug, general
+    :tickets: 1788
+
+    Fixed regression caused by :ticket:`1669` which requires SQLAlchemy objects
+    to support generic type subscripting; for the older SQLAlchemy 1.4 series,
+    this requires version 1.4.23.  Changed the minimum requirements in to be
+    for 1.4.23 rather than 1.4.0.
+
+
index d7b73749d41952991acd27b7afb11cd58d838a8a..e9ea30367a2d4798fc3ded07ab1a228daaa99985 100644 (file)
@@ -26,7 +26,7 @@ classifiers = [
 ]
 requires-python = ">=3.10"
 dependencies = [
-    "SQLAlchemy>=1.4.0",
+    "SQLAlchemy>=1.4.23",
     "Mako",
     "typing-extensions>=4.12",
     "tomli;python_version<'3.11'",