]> git.ipfire.org Git - thirdparty/sqlalchemy/alembic.git/commitdiff
changelog edits
authorMike Bayer <mike_mp@zzzcomputing.com>
Mon, 16 Jun 2025 18:02:26 +0000 (14:02 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Mon, 16 Jun 2025 18:02:26 +0000 (14:02 -0400)
Change-Id: I5bd111c1a2110bb6c386d40295836aae87922c32

docs/build/unreleased/1671.rst [new file with mode: 0644]
docs/build/unreleased/1672.rst [deleted file]

diff --git a/docs/build/unreleased/1671.rst b/docs/build/unreleased/1671.rst
new file mode 100644 (file)
index 0000000..dc0d5fb
--- /dev/null
@@ -0,0 +1,10 @@
+.. change::
+    :tags: bug, autogenerate
+    :tickets: 1671
+
+    Fixed issue where dialect-specific keyword arguments in ``dialect_kwargs``
+    were not rendered when rendering the :meth:`.Operations.create_foreign_key`
+    operation.   This prevented dialect-specific keywords from being rendered
+    using custom :class:`.Rewriter` recipes that modify
+    :class:`.ops.CreateForeignKeyOp`, similar to other issues such as
+    :ticket:`1635`.  Pull request courtesy Justin Malin.
diff --git a/docs/build/unreleased/1672.rst b/docs/build/unreleased/1672.rst
deleted file mode 100644 (file)
index 0c636bb..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-.. change::
-    :tags: usecase, operations
-    :tickets: 1671
-    Fixed an issue where dialect-specific keyword arguments, dialect_kwargs, were
-    not passed through when using the op.create_foreign_key() operation. This
-    prevented the use of backend-specific foreign key options, such as
-    postgresql_not_valid for PostgreSQL constraints. The renderer for
-    ops.CreateForeignKeyOp now correctly includes these arguments, aligning its
-    behavior with other constraint operations.
-    Pull request courtesy of Justin Malin.