From: Mike Bayer Date: Wed, 29 Oct 2025 00:21:39 +0000 (-0400) Subject: - 1.17.1 X-Git-Tag: rel_1_17_1 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e0c6e652f43aa225494c552ed54fbd449ad4ba79;p=thirdparty%2Fsqlalchemy%2Falembic.git - 1.17.1 --- diff --git a/docs/build/changelog.rst b/docs/build/changelog.rst index f411078d..31945357 100644 --- a/docs/build/changelog.rst +++ b/docs/build/changelog.rst @@ -5,7 +5,29 @@ Changelog .. changelog:: :version: 1.17.1 - :include_notes_from: unreleased + :released: October 28, 2025 + + .. change:: + :tags: bug, commands + :tickets: 1540 + + Disallow ':' character in custom revision identifiers. Previously, using a + colon in a revision ID (e.g., 'REV:1') would create the revision, however + revisions with colons in them are not correctly interpreted by other + commands, as it overlaps with the revision range syntax. Pull request + courtesy Kim Wooseok with original implementation by Hrushikesh Patil. + + .. change:: + :tags: usecase, commands + :tickets: 1705 + + Added :paramref:`.command.current.check_heads` parameter to + :func:`.command.current` command, available from the command line via the + ``--check-heads`` option to ``alembic current``. This tests if all head + revisions are applied to the database and raises :class:`.DatabaseNotAtHead` + (or from the command line, exits with a non-zero exit code) if this is not + the case. The parameter operates equvialently to the cookbook recipe + :ref:`cookbook_check_heads`. Pull request courtesy Stefan Scherfke. .. changelog:: :version: 1.17.0 diff --git a/docs/build/conf.py b/docs/build/conf.py index 1375950d..d3c7e14d 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.0" -release_date = "October 11, 2025" +release = "1.17.1" +release_date = "October 28, 2025" # The language for content autogenerated by Sphinx. Refer to documentation diff --git a/docs/build/unreleased/1540.rst b/docs/build/unreleased/1540.rst deleted file mode 100644 index c0f8f0d2..00000000 --- a/docs/build/unreleased/1540.rst +++ /dev/null @@ -1,9 +0,0 @@ -.. change:: - :tags: bug, commands - :tickets: 1540 - - Disallow ':' character in custom revision identifiers. Previously, using a - colon in a revision ID (e.g., 'REV:1') would create the revision, however - revisions with colons in them are not correctly interpreted by other - commands, as it overlaps with the revision range syntax. Pull request - courtesy Kim Wooseok with original implementation by Hrushikesh Patil. \ No newline at end of file diff --git a/docs/build/unreleased/1705.rst b/docs/build/unreleased/1705.rst deleted file mode 100644 index f1daf2e0..00000000 --- a/docs/build/unreleased/1705.rst +++ /dev/null @@ -1,11 +0,0 @@ -.. change:: - :tags: usecase, commands - :tickets: 1705 - - Added :paramref:`.command.current.check_heads` parameter to - :func:`.command.current` command, available from the command line via the - ``--check-heads`` option to ``alembic current``. This tests if all head - revisions are applied to the database and raises :class:`.DatabaseNotAtHead` - (or from the command line, exits with a non-zero exit code) if this is not - the case. The parameter operates equvialently to the cookbook recipe - :ref:`cookbook_check_heads`. Pull request courtesy Stefan Scherfke.