From: Mike Bayer Date: Tue, 8 Jul 2025 18:56:28 +0000 (-0400) Subject: - 1.16.3 X-Git-Tag: rel_1_16_3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1133630b4717934e5b587139e8b23d49f42c1cfd;p=thirdparty%2Fsqlalchemy%2Falembic.git - 1.16.3 --- diff --git a/docs/build/changelog.rst b/docs/build/changelog.rst index e7b85f53..b12662d8 100644 --- a/docs/build/changelog.rst +++ b/docs/build/changelog.rst @@ -5,7 +5,45 @@ Changelog .. changelog:: :version: 1.16.3 - :include_notes_from: unreleased + :released: July 8, 2025 + + .. change:: + :tags: bug, autogenerate + :tickets: 1633 + + Fixed the rendering of ``server_default=FetchedValue()`` to ensure it is + preceded by the ``sa.`` prefix in the migration script. Pull request + courtesy david-fed. + + .. change:: + :tags: usecase, commands + :tickets: 1683 + + Added new ``pyproject_async`` template, combining the new ``pyproject`` + template with the ``async`` template. Pull request courtesy Alc-Alc. + + .. change:: + :tags: usecase, autogenerate + :tickets: 1686 + + Add "module" post-write hook. This hook type is almost identical to the + console_scripts hook, except it's running ``python -m black`` instead of + using black's ``console_script``. It is mainly useful for tools without + console scripts (e.g. ruff), but has semantics closer to the + console_scripts hook in that it finds the ruff module available to the + running interpreter instead of finding an executable by path. Pull request + courtesy Frazer McLean. + + .. change:: + :tags: bug, autogenerate + :tickets: 1692 + + Fixed autogenerate rendering bug which failed to render foreign key + constraints local to a :class:`.CreateTableOp` object if it did not refer + to a ``MetaData`` collection via a private constructor argument that would + not ordinarily be passed in user-defined rewriter recipes, including ones + in the Alembic cookbook section of the docs. + .. changelog:: :version: 1.16.2 diff --git a/docs/build/conf.py b/docs/build/conf.py index d5f73421..3a6f4967 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.2" -release_date = "June 16, 2025" +release = "1.16.3" +release_date = "July 8, 2025" # The language for content autogenerated by Sphinx. Refer to documentation diff --git a/docs/build/unreleased/1633.rst b/docs/build/unreleased/1633.rst deleted file mode 100644 index 3d38f5e7..00000000 --- a/docs/build/unreleased/1633.rst +++ /dev/null @@ -1,7 +0,0 @@ -.. change:: - :tags: bug, autogenerate - :tickets: 1633 - - Fixed the rendering of ``server_default=FetchedValue()`` to ensure it is - preceded by the ``sa.`` prefix in the migration script. Pull request - courtesy david-fed. diff --git a/docs/build/unreleased/1683.rst b/docs/build/unreleased/1683.rst deleted file mode 100644 index a20a65c8..00000000 --- a/docs/build/unreleased/1683.rst +++ /dev/null @@ -1,6 +0,0 @@ -.. change:: - :tags: usecase, commands - :tickets: 1683 - - Added new ``pyproject_async`` template, combining the new ``pyproject`` - template with the ``async`` template. Pull request courtesy Alc-Alc. diff --git a/docs/build/unreleased/1686.rst b/docs/build/unreleased/1686.rst deleted file mode 100644 index 624c313a..00000000 --- a/docs/build/unreleased/1686.rst +++ /dev/null @@ -1,11 +0,0 @@ -.. change:: - :tags: usecase, autogenerate - :tickets: 1686 - - Add "module" post-write hook. This hook type is almost identical to the - console_scripts hook, except it's running ``python -m black`` instead of - using black's ``console_script``. It is mainly useful for tools without - console scripts (e.g. ruff), but has semantics closer to the - console_scripts hook in that it finds the ruff module available to the - running interpreter instead of finding an executable by path. Pull request - courtesy Frazer McLean. \ No newline at end of file diff --git a/docs/build/unreleased/1692.rst b/docs/build/unreleased/1692.rst deleted file mode 100644 index 96bf0c94..00000000 --- a/docs/build/unreleased/1692.rst +++ /dev/null @@ -1,10 +0,0 @@ -.. change:: - :tags: bug, autogenerate - :tickets: 1692 - - Fixed autogenerate rendering bug which failed to render foreign key - constraints local to a :class:`.CreateTableOp` object if it did not refer - to a ``MetaData`` collection via a private constructor argument that would - not ordinarily be passed in user-defined rewriter recipes, including ones - in the Alembic cookbook section of the docs. -