Skip to content

Commit e0c6e65

Browse files
committed
- 1.17.1
1 parent 51029b2 commit e0c6e65

4 files changed

Lines changed: 25 additions & 23 deletions

File tree

docs/build/changelog.rst

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,29 @@ Changelog
55

66
.. changelog::
77
:version: 1.17.1
8-
:include_notes_from: unreleased
8+
:released: October 28, 2025
9+
10+
.. change::
11+
:tags: bug, commands
12+
:tickets: 1540
13+
14+
Disallow ':' character in custom revision identifiers. Previously, using a
15+
colon in a revision ID (e.g., 'REV:1') would create the revision, however
16+
revisions with colons in them are not correctly interpreted by other
17+
commands, as it overlaps with the revision range syntax. Pull request
18+
courtesy Kim Wooseok with original implementation by Hrushikesh Patil.
19+
20+
.. change::
21+
:tags: usecase, commands
22+
:tickets: 1705
23+
24+
Added :paramref:`.command.current.check_heads` parameter to
25+
:func:`.command.current` command, available from the command line via the
26+
``--check-heads`` option to ``alembic current``. This tests if all head
27+
revisions are applied to the database and raises :class:`.DatabaseNotAtHead`
28+
(or from the command line, exits with a non-zero exit code) if this is not
29+
the case. The parameter operates equvialently to the cookbook recipe
30+
:ref:`cookbook_check_heads`. Pull request courtesy Stefan Scherfke.
931

1032
.. changelog::
1133
:version: 1.17.0

docs/build/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,8 +100,8 @@
100100
# The short X.Y version.
101101
version = alembic.__version__
102102
# The full version, including alpha/beta/rc tags.
103-
release = "1.17.0"
104-
release_date = "October 11, 2025"
103+
release = "1.17.1"
104+
release_date = "October 28, 2025"
105105

106106

107107
# The language for content autogenerated by Sphinx. Refer to documentation

docs/build/unreleased/1540.rst

Lines changed: 0 additions & 9 deletions
This file was deleted.

docs/build/unreleased/1705.rst

Lines changed: 0 additions & 11 deletions
This file was deleted.

0 commit comments

Comments
 (0)