From: Mike Bayer Date: Mon, 16 Jun 2025 18:03:04 +0000 (-0400) Subject: - 1.16.2 X-Git-Tag: rel_1_16_2 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=b63852d7c7a3be9c0ef7087aab2f86451f6b5e89;p=thirdparty%2Fsqlalchemy%2Falembic.git - 1.16.2 --- diff --git a/docs/build/changelog.rst b/docs/build/changelog.rst index 22c41e85..037499f1 100644 --- a/docs/build/changelog.rst +++ b/docs/build/changelog.rst @@ -5,7 +5,27 @@ Changelog .. changelog:: :version: 1.16.2 - :include_notes_from: unreleased + :released: June 16, 2025 + + .. change:: + :tags: bug, autogenerate + :tickets: 1671 + + Fixed issue where dialect-specific keyword arguments in ``dialect_kwargs`` + were not rendered when rendering the :meth:`.Operations.create_foreign_key` + operation. This prevented dialect-specific keywords from being rendered + using custom :class:`.Rewriter` recipes that modify + :class:`.ops.CreateForeignKeyOp`, similar to other issues such as + :ticket:`1635`. Pull request courtesy Justin Malin. + + .. change:: + :tags: bug, command + :tickets: 1679 + + Fixed rendering of ``pyproject.toml`` to include two newlines when + appending content to an existing file. Pull request courtesy Jonathan + Vanasco. + .. changelog:: :version: 1.16.1 diff --git a/docs/build/conf.py b/docs/build/conf.py index 060f8430..d5f73421 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.16.1" -release_date = "May 21, 2025" +release = "1.16.2" +release_date = "June 16, 2025" # The language for content autogenerated by Sphinx. Refer to documentation diff --git a/docs/build/unreleased/1671.rst b/docs/build/unreleased/1671.rst deleted file mode 100644 index dc0d5fb1..00000000 --- a/docs/build/unreleased/1671.rst +++ /dev/null @@ -1,10 +0,0 @@ -.. change:: - :tags: bug, autogenerate - :tickets: 1671 - - Fixed issue where dialect-specific keyword arguments in ``dialect_kwargs`` - were not rendered when rendering the :meth:`.Operations.create_foreign_key` - operation. This prevented dialect-specific keywords from being rendered - using custom :class:`.Rewriter` recipes that modify - :class:`.ops.CreateForeignKeyOp`, similar to other issues such as - :ticket:`1635`. Pull request courtesy Justin Malin. diff --git a/docs/build/unreleased/1679.rst b/docs/build/unreleased/1679.rst deleted file mode 100644 index 7dca6953..00000000 --- a/docs/build/unreleased/1679.rst +++ /dev/null @@ -1,8 +0,0 @@ -.. change:: - :tags: bug, command - :tickets: 1679 - - Fixed rendering of ``pyproject.toml`` to include two newlines when - appending content to an existing file. Pull request courtesy Jonathan - Vanasco. -