From: Mike Bayer Date: Wed, 27 Aug 2025 18:00:31 +0000 (-0400) Subject: - 1.16.5 X-Git-Tag: rel_1_16_5 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c026cf70aece7d6cddf929cb37748c6076b1d528;p=thirdparty%2Fsqlalchemy%2Falembic.git - 1.16.5 --- diff --git a/docs/build/changelog.rst b/docs/build/changelog.rst index 77f7beff..3d837447 100644 --- a/docs/build/changelog.rst +++ b/docs/build/changelog.rst @@ -5,7 +5,23 @@ Changelog .. changelog:: :version: 1.16.5 - :include_notes_from: unreleased + :released: August 27, 2025 + + .. change:: + :tags: bug, mysql + :tickets: 1492 + + Fixed Python-side autogenerate rendering of index expressions in MySQL + dialect by aligning it with SQLAlchemy's MySQL index expression rules. Pull + request courtesy david-fed. + + .. change:: + :tags: bug, config + :tickets: 1709 + + Fixed issue where new pyproject.toml config would fail to parse the integer + value used for the ``truncate_slug_length`` parameter. Pull request + courtesy Luís Henrique Allebrandt Schunemann. .. changelog:: :version: 1.16.4 diff --git a/docs/build/conf.py b/docs/build/conf.py index f537e488..38ce3290 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.4" -release_date = "July 10, 2025" +release = "1.16.5" +release_date = "August 27, 2025" # The language for content autogenerated by Sphinx. Refer to documentation diff --git a/docs/build/unreleased/1492.rst b/docs/build/unreleased/1492.rst deleted file mode 100644 index e963bd12..00000000 --- a/docs/build/unreleased/1492.rst +++ /dev/null @@ -1,7 +0,0 @@ -.. change:: - :tags: bug, mysql - :tickets: 1492 - - Fixed Python-side autogenerate rendering of index expressions in MySQL - dialect by aligning it with SQLAlchemy's MySQL index expression rules. Pull - request courtesy david-fed. \ No newline at end of file diff --git a/docs/build/unreleased/1709.rst b/docs/build/unreleased/1709.rst deleted file mode 100644 index 3d962d62..00000000 --- a/docs/build/unreleased/1709.rst +++ /dev/null @@ -1,7 +0,0 @@ -.. change:: - :tags: bug, config - :tickets: 1709 - - Fixed issue where new pyproject.toml config would fail to parse the integer - value used for the ``truncate_slug_length`` parameter. Pull request - courtesy Luís Henrique Allebrandt Schunemann.