File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 100100# The short X.Y version.
101101version = 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
Load Diff This file was deleted.
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments