From: Mike Bayer Date: Wed, 20 Dec 2023 16:17:53 +0000 (-0500) Subject: changelog updates X-Git-Tag: rel_1_13_1~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=3452979f0d1fcd42f0a8311642f6ee4e70d6f95c;p=thirdparty%2Fsqlalchemy%2Falembic.git changelog updates Change-Id: I43bcd06ba5b48a97bc9270f33fbf893dc4c8408e --- diff --git a/docs/build/unreleased/1337.rst b/docs/build/unreleased/1337.rst index 2660e831..a87f9ae2 100644 --- a/docs/build/unreleased/1337.rst +++ b/docs/build/unreleased/1337.rst @@ -2,6 +2,7 @@ :tags: bug, autogenerate :tickets: 1337 - Fixes `autogenerate.Rewriter` so that more than two instances could be - chained together correctly, and `process_revision_directives` callable - could also be chained. + Fixed :class:`.Rewriter` so that more than two instances could be chained + together correctly, also allowing multiple ``process_revision_directives`` + callables to be chained. Pull request courtesy zrotceh. + diff --git a/docs/build/unreleased/1370.rst b/docs/build/unreleased/1370.rst index ce77204c..71a887ca 100644 --- a/docs/build/unreleased/1370.rst +++ b/docs/build/unreleased/1370.rst @@ -2,8 +2,10 @@ :tags: bug, environment :tickets: 1369 - Fixed issue where ``get_x_arguments(as_dictionary=True)`` would fail if an - argument key were passed without an equal sign ``=`` or a value. - Behavior is repaired where this condition is detected and will return a - blank string for the given key, consistent with the behavior where the - ``=`` sign is present and no value. Pull request courtesy Iuri de Silvio. + Fixed issue where the method :meth:`.EnvironmentContext.get_x_argument` + using the :paramref:`.EnvironmentContext.get_x_argument.as_dictionary` + parameter would fail if an argument key were passed on the command line as + a name alone, that is, without an equal sign ``=`` or a value. Behavior is + repaired where this condition is detected and will return a blank string + for the given key, consistent with the behavior where the ``=`` sign is + present and no value. Pull request courtesy Iuri de Silvio.