]> git.ipfire.org Git - thirdparty/sqlalchemy/alembic.git/commitdiff
changelog updates
authorMike Bayer <mike_mp@zzzcomputing.com>
Wed, 20 Dec 2023 16:17:53 +0000 (11:17 -0500)
committerMike Bayer <mike_mp@zzzcomputing.com>
Wed, 20 Dec 2023 16:17:53 +0000 (11:17 -0500)
Change-Id: I43bcd06ba5b48a97bc9270f33fbf893dc4c8408e

docs/build/unreleased/1337.rst
docs/build/unreleased/1370.rst

index 2660e8319c3910b8c32d4939f88ae02cd3e9239a..a87f9ae260ea1cd9088069996ecb93d3fdc374e5 100644 (file)
@@ -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.
+
index ce77204c1d3eb60ecb5321fc5129e3921489dea3..71a887ca9343811b6054c0b9c1a196e679e7fa6a 100644 (file)
@@ -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.