From: Mike Bayer Date: Wed, 1 Feb 2023 17:11:30 +0000 (-0500) Subject: changelog tweaks X-Git-Tag: rel_2_0_1~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c3494d81805019ade34653bdd031f6e98bbf8a45;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git changelog tweaks Change-Id: I479adc6f387a31dbaf232fa22374118c1ce94bea --- diff --git a/doc/build/changelog/unreleased_20/9174.rst b/doc/build/changelog/unreleased_20/9174.rst index 3defc72c46..5f2442e6a8 100644 --- a/doc/build/changelog/unreleased_20/9174.rst +++ b/doc/build/changelog/unreleased_20/9174.rst @@ -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. diff --git a/doc/build/changelog/unreleased_20/9183.rst b/doc/build/changelog/unreleased_20/9183.rst index 76e306356c..ef1eb80574 100644 --- a/doc/build/changelog/unreleased_20/9183.rst +++ b/doc/build/changelog/unreleased_20/9183.rst @@ -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.