From c6067a5367015b6f1437a4357515e63dd8561829 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Mon, 24 Apr 2023 11:08:10 -0400 Subject: - 1.10.4 --- docs/build/changelog.rst | 19 ++++++++++++++++++- docs/build/conf.py | 4 ++-- docs/build/unreleased/1213.rst | 6 ------ docs/build/unreleased/1215.rst | 9 --------- 4 files changed, 20 insertions(+), 18 deletions(-) delete mode 100644 docs/build/unreleased/1213.rst delete mode 100644 docs/build/unreleased/1215.rst (limited to 'docs') diff --git a/docs/build/changelog.rst b/docs/build/changelog.rst index a64e976..f6e9d74 100644 --- a/docs/build/changelog.rst +++ b/docs/build/changelog.rst @@ -5,7 +5,24 @@ Changelog .. changelog:: :version: 1.10.4 - :include_notes_from: unreleased + :released: April 24, 2023 + + .. change:: + :tags: postgresql, autogenerate + :tickets: 1213 + + Added support for autogenerate comparison of indexes on PostgreSQL which + include SQL sort option, such as ``ASC`` or ``NULLS FIRST``. + + .. change:: + :tags: bug, operations + :tickets: 1215 + + Fixed issue where using a directive such as ``op.create_foreign_key()`` to + create a self-referential constraint on a single table where the same + column were present on both sides (e.g. within a composite foreign key) + would produce an error under SQLAlchemy 2.0 and a warning under SQLAlchemy + 1.4 indicating that a duplicate column were being added to a table. .. changelog:: :version: 1.10.3 diff --git a/docs/build/conf.py b/docs/build/conf.py index 0c10809..6c615df 100644 --- a/docs/build/conf.py +++ b/docs/build/conf.py @@ -99,8 +99,8 @@ copyright = "2010-2023, Mike Bayer" # noqa # The short X.Y version. version = alembic.__version__ # The full version, including alpha/beta/rc tags. -release = "1.10.3" -release_date = "April 5, 2023" +release = "1.10.4" +release_date = "April 24, 2023" # The language for content autogenerated by Sphinx. Refer to documentation diff --git a/docs/build/unreleased/1213.rst b/docs/build/unreleased/1213.rst deleted file mode 100644 index 29b88a4..0000000 --- a/docs/build/unreleased/1213.rst +++ /dev/null @@ -1,6 +0,0 @@ -.. change:: - :tags: postgresql, autogenerate - :tickets: 1213 - - Added support for autogenerate comparison of indexes on PostgreSQL which - include SQL sort option, such as ``ASC`` or ``NULLS FIRST``. diff --git a/docs/build/unreleased/1215.rst b/docs/build/unreleased/1215.rst deleted file mode 100644 index c2c3a08..0000000 --- a/docs/build/unreleased/1215.rst +++ /dev/null @@ -1,9 +0,0 @@ -.. change:: - :tags: bug, operations - :tickets: 1215 - - Fixed issue where using a directive such as ``op.create_foreign_key()`` to - create a self-referential constraint on a single table where the same - column were present on both sides (e.g. within a composite foreign key) - would produce an error under SQLAlchemy 2.0 and a warning under SQLAlchemy - 1.4 indicating that a duplicate column were being added to a table. -- cgit v1.2.1