]> git.ipfire.org Git - thirdparty/sqlalchemy/alembic.git/commitdiff
- 1.17.2 rel_1_17_2
authorMike Bayer <mike_mp@zzzcomputing.com>
Fri, 14 Nov 2025 20:32:35 +0000 (15:32 -0500)
committerMike Bayer <mike_mp@zzzcomputing.com>
Fri, 14 Nov 2025 20:32:35 +0000 (15:32 -0500)
docs/build/changelog.rst
docs/build/conf.py
docs/build/unreleased/1744.rst [deleted file]
docs/build/unreleased/1750.rst [deleted file]

index 7b6e27d6ae2a0534aa61e1e91d294b9479ec12e8..5973ed7d9d49e39c0507bfc0c5cc31db31d1768c 100644 (file)
@@ -5,7 +5,30 @@ Changelog
 
 .. changelog::
     :version: 1.17.2
-    :include_notes_from: unreleased
+    :released: November 14, 2025
+
+    .. change::
+        :tags: bug, mssql
+        :tickets: 1744
+
+        Fixed issue in SQL Server dialect where the DROP that's automatically
+        emitted for existing default constraints during an ALTER COLUMN needs to
+        take place before not just the modification of the column's default, but
+        also before the column's type is changed.
+
+    .. change::
+        :tags: feature, operations
+        :tickets: 1750
+
+        Added :paramref:`.Operations.implementation_for.replace` parameter to
+        :meth:`.Operations.implementation_for`, allowing replacement of existing
+        operation implementations.  This allows for existing operations such as
+        :class:`.CreateTableOp` to be extended directly.  Pull request courtesy
+        justanothercatgirl.
+
+        .. seealso::
+
+            :ref:`operations_extending_builtin`
 
 .. changelog::
     :version: 1.17.1
index d3c7e14dbf00078dd5983197a090d133b13fbb73..636eab517740bcf052bcabf4330c8e156e77a3cd 100644 (file)
@@ -100,8 +100,8 @@ copyright = "2010-2025, Mike Bayer"  # noqa
 # The short X.Y version.
 version = alembic.__version__
 # The full version, including alpha/beta/rc tags.
-release = "1.17.1"
-release_date = "October 28, 2025"
+release = "1.17.2"
+release_date = "November 14, 2025"
 
 
 # The language for content autogenerated by Sphinx. Refer to documentation
diff --git a/docs/build/unreleased/1744.rst b/docs/build/unreleased/1744.rst
deleted file mode 100644 (file)
index 4abdbe0..0000000
+++ /dev/null
@@ -1,8 +0,0 @@
-.. change::
-    :tags: bug, mssql
-    :tickets: 1744
-
-    Fixed issue in SQL Server dialect where the DROP that's automatically
-    emitted for existing default constraints during an ALTER COLUMN needs to
-    take place before not just the modification of the column's default, but
-    also before the column's type is changed.
diff --git a/docs/build/unreleased/1750.rst b/docs/build/unreleased/1750.rst
deleted file mode 100644 (file)
index 7837c64..0000000
+++ /dev/null
@@ -1,13 +0,0 @@
-.. change::
-    :tags: feature, operations
-    :tickets: 1750
-
-    Added :paramref:`.Operations.implementation_for.replace` parameter to
-    :meth:`.Operations.implementation_for`, allowing replacement of existing
-    operation implementations.  This allows for existing operations such as
-    :class:`.CreateTableOp` to be extended directly.  Pull request courtesy
-    justanothercatgirl.
-
-    .. seealso::
-
-        :ref:`operations_extending_builtin`