From: Justin Malin Date: Thu, 12 Jun 2025 19:14:06 +0000 (+0000) Subject: Add changelog X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F1672%2Fhead;p=thirdparty%2Fsqlalchemy%2Falembic.git Add changelog --- diff --git a/docs/build/unreleased/1672.rst b/docs/build/unreleased/1672.rst new file mode 100644 index 00000000..0c636bb8 --- /dev/null +++ b/docs/build/unreleased/1672.rst @@ -0,0 +1,10 @@ +.. 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.