From: Mike Bayer Date: Fri, 28 Mar 2025 13:50:14 +0000 (-0400) Subject: - 1.15.2 X-Git-Tag: rel_1_15_2 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=3bd8d5190f7e02a73ff0d332356311b636f6b2a8;p=thirdparty%2Fsqlalchemy%2Falembic.git - 1.15.2 --- diff --git a/docs/build/changelog.rst b/docs/build/changelog.rst index 6539d6e9..89891970 100644 --- a/docs/build/changelog.rst +++ b/docs/build/changelog.rst @@ -5,7 +5,17 @@ Changelog .. changelog:: :version: 1.15.2 - :include_notes_from: unreleased + :released: March 28, 2025 + + .. change:: + :tags: bug, autogenerate + :tickets: 1635 + + Fixed issue where the "modified_name" of :class:`.AlterColumnOp` would not + be considered when rendering op directives for autogenerate. While + autogenerate cannot detect changes in column name, this would nonetheless + impact approaches that made use of this attribute in rewriter recipes. Pull + request courtesy lenvk. .. changelog:: :version: 1.15.1 diff --git a/docs/build/conf.py b/docs/build/conf.py index 80a16d7f..8b403072 100644 --- a/docs/build/conf.py +++ b/docs/build/conf.py @@ -99,8 +99,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.15.1" -release_date = "March 4, 2025" +release = "1.15.2" +release_date = "March 28, 2025" # The language for content autogenerated by Sphinx. Refer to documentation diff --git a/docs/build/unreleased/1635.rst b/docs/build/unreleased/1635.rst deleted file mode 100644 index 2c951463..00000000 --- a/docs/build/unreleased/1635.rst +++ /dev/null @@ -1,9 +0,0 @@ -.. change:: - :tags: bug, autogenerate - :tickets: 1635 - - Fixed issue where the "modified_name" of :class:`.AlterColumnOp` would not - be considered when rendering op directives for autogenerate. While - autogenerate cannot detect changes in column name, this would nonetheless - impact approaches that made use of this attribute in rewriter recipes. Pull - request courtesy lenvk.