summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2022-11-25 10:31:20 -0500
committerFederico Caselli <cfederico87@gmail.com>2023-05-11 22:24:53 +0200
commitdf75e85489b9ae69fffff2c5ad2594b30bed2fd4 (patch)
tree1669378a851faf81724f3d5e83ab63814cb43e3f /docs
parent92e54a0e1c96cecd99397cb1aee9c3bb28f780c6 (diff)
downloadalembic-df75e85489b9ae69fffff2c5ad2594b30bed2fd4.tar.gz
keyword only arguments in ops
Argument signatures of Alembic operations now enforce keyword-only arguments as passed as keyword and not positionally, such as :paramref:`.Operations.create_table.schema`, :paramref:`.Operations.add_column.type_`, etc. Change-Id: I91b453c8848dc5d24d63840bfd7ce4d22dd0e693 Fixes: #1130
Diffstat (limited to 'docs')
-rw-r--r--docs/build/unreleased/1130.rst8
1 files changed, 8 insertions, 0 deletions
diff --git a/docs/build/unreleased/1130.rst b/docs/build/unreleased/1130.rst
new file mode 100644
index 0000000..dc11eb9
--- /dev/null
+++ b/docs/build/unreleased/1130.rst
@@ -0,0 +1,8 @@
+.. change::
+ :tags: change, py3k
+ :tickets: 1130
+
+ Argument signatures of Alembic operations now enforce keyword-only
+ arguments as passed as keyword and not positionally, such as
+ :paramref:`.Operations.create_table.schema`,
+ :paramref:`.Operations.add_column.type_`, etc.