From: Mike Bayer Date: Sat, 14 Jan 2023 19:11:02 +0000 (-0500) Subject: - 1.9.2 X-Git-Tag: rel_1_9_2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=071eaf3c02aa93b89a58863ad8682e52fe448725;p=thirdparty%2Fsqlalchemy%2Falembic.git - 1.9.2 --- diff --git a/docs/build/changelog.rst b/docs/build/changelog.rst index fa6dcc0a..a949c45e 100644 --- a/docs/build/changelog.rst +++ b/docs/build/changelog.rst @@ -5,7 +5,24 @@ Changelog .. changelog:: :version: 1.9.2 - :include_notes_from: unreleased + :released: January 14, 2023 + + .. change:: + :tags: bug, typing + :tickets: 1146, 1147 + + Fixed typing definitions for :meth:`.EnvironmentContext.get_x_argument`. + + Typing stubs are now generated for overloaded proxied methods such as + :meth:`.EnvironmentContext.get_x_argument`. + + .. change:: + :tags: bug, autogenerate + :tickets: 1152 + + Fixed regression caused by :ticket:`1145` where the string transformations + applied to server defaults caused expressions such as ``(getdate())`` to no + longer compare as equivalent on SQL Server, others. .. changelog:: :version: 1.9.1 diff --git a/docs/build/conf.py b/docs/build/conf.py index a8c23d33..37e271a7 100644 --- a/docs/build/conf.py +++ b/docs/build/conf.py @@ -95,8 +95,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.9.1" -release_date = "December 23, 2022" +release = "1.9.2" +release_date = "January 14, 2023" # The language for content autogenerated by Sphinx. Refer to documentation diff --git a/docs/build/unreleased/1147.rst b/docs/build/unreleased/1147.rst deleted file mode 100644 index 5f6f7dec..00000000 --- a/docs/build/unreleased/1147.rst +++ /dev/null @@ -1,8 +0,0 @@ -.. change:: - :tags: bug, typing - :tickets: 1146, 1147 - - Fixed typing definitions for :meth:`.EnvironmentContext.get_x_argument`. - - Typing stubs are now generated for overloaded proxied methods such as - :meth:`.EnvironmentContext.get_x_argument`. \ No newline at end of file diff --git a/docs/build/unreleased/1152.rst b/docs/build/unreleased/1152.rst deleted file mode 100644 index c5af2d5a..00000000 --- a/docs/build/unreleased/1152.rst +++ /dev/null @@ -1,7 +0,0 @@ -.. change:: - :tags: bug, autogenerate - :tickets: 1152 - - Fixed regression caused by :ticket:`1145` where the string transformations - applied to server defaults caused expressions such as ``(getdate())`` to no - longer compare as equivalent on SQL Server, others.