From: Mike Bayer Date: Wed, 26 Jun 2024 15:37:04 +0000 (-0400) Subject: - 1.13.2 X-Git-Tag: rel_1_13_2 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=c57a5b7b4d88296bbfc73c1dd770a9122bc1002e;p=thirdparty%2Fsqlalchemy%2Falembic.git - 1.13.2 --- diff --git a/docs/build/changelog.rst b/docs/build/changelog.rst index 93e37479..b240948f 100644 --- a/docs/build/changelog.rst +++ b/docs/build/changelog.rst @@ -5,7 +5,43 @@ Changelog .. changelog:: :version: 1.13.2 - :include_notes_from: unreleased + :released: June 26, 2024 + + .. change:: + :tags: bug, commands + :tickets: 1384 + + Fixed bug in alembic command stdout where long messages were not properly + wrapping at the terminal width. Pull request courtesy Saif Hakim. + + .. change:: + :tags: usecase, autogenerate + :tickets: 1391 + + Improve computed column compare function to support multi-line expressions. + Pull request courtesy of Georg Wicke-Arndt. + + .. change:: + :tags: bug, execution + :tickets: 1394 + + Fixed internal issue where Alembic would call ``connection.execute()`` + sending an empty tuple to indicate "no params". In SQLAlchemy 2.1 this + case will be deprecated as "empty sequence" is ambiguous as to its intent. + + + .. change:: + :tags: bug, tests + :tickets: 1435 + + Fixes to support pytest 8.1 for the test suite. + + .. change:: + :tags: bug, autogenerate, postgresql + :tickets: 1479 + + Fixed the detection of serial column in autogenerate with tables + not under default schema on PostgreSQL .. changelog:: :version: 1.13.1 diff --git a/docs/build/conf.py b/docs/build/conf.py index 80a2082f..90a334e6 100644 --- a/docs/build/conf.py +++ b/docs/build/conf.py @@ -99,8 +99,8 @@ copyright = "2010-2024, Mike Bayer" # noqa # The short X.Y version. version = alembic.__version__ # The full version, including alpha/beta/rc tags. -release = "1.13.1" -release_date = "December 20, 2023" +release = "1.13.2" +release_date = "June 26, 2024" # The language for content autogenerated by Sphinx. Refer to documentation diff --git a/docs/build/unreleased/1384.rst b/docs/build/unreleased/1384.rst deleted file mode 100644 index 91e6ea23..00000000 --- a/docs/build/unreleased/1384.rst +++ /dev/null @@ -1,6 +0,0 @@ -.. change:: - :tags: bug, commands - :tickets: 1384 - - Fixed bug in alembic command stdout where long messages were not properly - wrapping at the terminal width. Pull request courtesy Saif Hakim. diff --git a/docs/build/unreleased/1391.rst b/docs/build/unreleased/1391.rst deleted file mode 100644 index c0661fbe..00000000 --- a/docs/build/unreleased/1391.rst +++ /dev/null @@ -1,6 +0,0 @@ -.. change:: - :tags: usecase, autogenerate - :tickets: 1391 - - Improve computed column compare function to support multi-line expressions. - Pull request courtesy of Georg Wicke-Arndt. diff --git a/docs/build/unreleased/1394.rst b/docs/build/unreleased/1394.rst deleted file mode 100644 index 7e597709..00000000 --- a/docs/build/unreleased/1394.rst +++ /dev/null @@ -1,8 +0,0 @@ -.. change:: - :tags: bug, execution - :tickets: 1394 - - Fixed internal issue where Alembic would call ``connection.execute()`` - sending an empty tuple to indicate "no params". In SQLAlchemy 2.1 this - case will be deprecated as "empty sequence" is ambiguous as to its intent. - diff --git a/docs/build/unreleased/1435.rst b/docs/build/unreleased/1435.rst deleted file mode 100644 index 8f9e4cd0..00000000 --- a/docs/build/unreleased/1435.rst +++ /dev/null @@ -1,5 +0,0 @@ -.. change:: - :tags: bug, tests - :tickets: 1435 - - Fixes to support pytest 8.1 for the test suite. diff --git a/docs/build/unreleased/1479.rst b/docs/build/unreleased/1479.rst deleted file mode 100644 index 5a653201..00000000 --- a/docs/build/unreleased/1479.rst +++ /dev/null @@ -1,6 +0,0 @@ -.. change:: - :tags: bug, autogenerate, postgresql - :tickets: 1479 - - Fixed the detection of serial column in autogenerate with tables - not under default schema on PostgreSQL