From: Mike Bayer Date: Fri, 14 Nov 2025 20:32:35 +0000 (-0500) Subject: - 1.17.2 X-Git-Tag: rel_1_17_2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c8384551f41a4a06deefa61597a6f173fcb1a820;p=thirdparty%2Fsqlalchemy%2Falembic.git - 1.17.2 --- diff --git a/docs/build/changelog.rst b/docs/build/changelog.rst index 7b6e27d6..5973ed7d 100644 --- a/docs/build/changelog.rst +++ b/docs/build/changelog.rst @@ -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 diff --git a/docs/build/conf.py b/docs/build/conf.py index d3c7e14d..636eab51 100644 --- a/docs/build/conf.py +++ b/docs/build/conf.py @@ -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 index 4abdbe0d..00000000 --- a/docs/build/unreleased/1744.rst +++ /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 index 7837c648..00000000 --- a/docs/build/unreleased/1750.rst +++ /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`