]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
changelog tweaks
authorMike Bayer <mike_mp@zzzcomputing.com>
Wed, 1 Feb 2023 17:11:30 +0000 (12:11 -0500)
committerMike Bayer <mike_mp@zzzcomputing.com>
Wed, 1 Feb 2023 17:11:30 +0000 (12:11 -0500)
Change-Id: I479adc6f387a31dbaf232fa22374118c1ce94bea

doc/build/changelog/unreleased_20/9174.rst
doc/build/changelog/unreleased_20/9183.rst

index 3defc72c4628e03b520b733344863fbd4a23b2ef..5f2442e6a819dd9d8043661ce459da8d75446351 100644 (file)
@@ -2,5 +2,6 @@
     :tags: bug, typing
     :tickets: 9174
 
-    Opened up typing on :meth:`.Select.with_for_update.of` to also accept table
-    and mapped class arguments, as seems to be available for the MySQL dialect.
+    Opened up typing on :paramref:`.Select.with_for_update.of` to also accept
+    table and mapped class arguments, as seems to be available for the MySQL
+    dialect.
index 76e306356cf2c9cd5136c0fdefbf09d30dc9efed..ef1eb80574afc8b51534b814b0932d3ecb5f8ca9 100644 (file)
@@ -2,6 +2,9 @@
     :tags: bug, typing
     :tickets: 9183
 
-    Fixed typing of limit, offset and fetch to allow ``None``.
+    Fixed typing for limit/offset methods including :meth:`.Select.limit`,
+    :meth:`.Select.offset`, :meth:`_orm.Query.limit`, :meth:`_orm.Query.offset`
+    to allow ``None``, which is the documented API to "cancel" the current
+    limit/offset.