-
Notifications
You must be signed in to change notification settings - Fork 458
fix: paginate backwards if starting_after == None
#1563
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
mbroshi-stripe
merged 2 commits into
stripe:master
from
ryancausey:fix/backwards-pagination-fix
Sep 4, 2025
Merged
fix: paginate backwards if starting_after == None
#1563
mbroshi-stripe
merged 2 commits into
stripe:master
from
ryancausey:fix/backwards-pagination-fix
Sep 4, 2025
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This fixes the case where `starting_after` is present in `_retrieve_params` but is `None` so that the `auto_paging_iter` correctly paginates backwards. closes stripe#1562
mbroshi-stripe
approved these changes
Sep 2, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Change looks good! Thanks for adding tests too!
@ryancausey Looks great! Can you run |
Thanks for formatting and merging! |
prathmesh-stripe
pushed a commit
that referenced
this pull request
Sep 15, 2025
This fixes the case where `starting_after` is present in `_retrieve_params` but is `None` so that the `auto_paging_iter` correctly paginates backwards. closes #1562
helenye-stripe
pushed a commit
that referenced
this pull request
Sep 22, 2025
* Update generated code for v1868 and 2025-07-30.basil (#1541) Co-authored-by: Stripe OpenAPI <105521251+stripe-openapi[bot]@users.noreply.github.com> * Bump version to 12.4.0 * Introduce V1 namespaces in StripeClient (#1549) * Introduced V1 namespaces * Updated migration guide link * Import available http libraries more efficiently (#1553) * replace import stragety, fix some tests [skip ci] * wip fixing tests [skip ci] * [claude] fix tests * formatting * test cleanup * tests are fast * final cleanup * remove comment * remove accidential files * tweak import logic * Update generated code for v1932 and 2025-08-27.basil (#1544) Co-authored-by: Stripe OpenAPI <105521251+stripe-openapi[bot]@users.noreply.github.com> Co-authored-by: Ramya Rao <[email protected]> * Add section on private preview SDKs in readme (#1554) * Bump version to 12.5.0 * Add private-preview branch to CI workflow triggers 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]> * fix: paginate backwards if `starting_after == None` (#1563) This fixes the case where `starting_after` is present in `_retrieve_params` but is `None` so that the `auto_paging_iter` correctly paginates backwards. closes #1562 * Bump version to 12.5.1 * add support for v2 deleted objects (#1543) * add support for v2 deleted objects * revert event destination return type *⚠️ Build SDK w/ V2 OpenAPI spec (#1565) * generate w/ v2 openapi spec * gen again * gen * Updated stripeclient snippets in Readme.md (#1528) * Don't use mutable default arguments (#1570) * generate default assignments * add mutable args linter and fix errors * type generated args more accurately * only initialize optional params when needed * generate private-preview --------- Co-authored-by: stripe-openapi[bot] <105521251+stripe-openapi[bot]@users.noreply.github.com> Co-authored-by: Ramya Rao <[email protected]> Co-authored-by: prathmesh-stripe <[email protected]> Co-authored-by: Ramya Rao <[email protected]> Co-authored-by: Michael Broshi <[email protected]> Co-authored-by: Claude <[email protected]> Co-authored-by: Ryan Causey <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Why?
This fixes the case where
starting_after
is present in_retrieve_params
but isNone
so that theauto_paging_iter
correctly paginates backwards.What?
starting_after
is present in_retrieve_params
but isNone
so that theauto_paging_iter
correctly paginates backwards.See Also
closes #1562