fix(projects): raise page size to 250 and add page controls - #147
Open
sentry-junior[bot] wants to merge 4 commits into
Open
fix(projects): raise page size to 250 and add page controls#147sentry-junior[bot] wants to merge 4 commits into
sentry-junior[bot] wants to merge 4 commits into
Conversation
The projects page only requested the first API page, so years with more than 50 projects hid the rest. Walk nextCursor until the full filtered list is loaded. Co-Authored-By: Trevor Elkins <trevor.elkins@sentry.io>
Allow the projects API to return up to 250 items per request so current Hackweek years fit in one fetch. Keep next/previous controls for any result set that still returns a next cursor. Co-Authored-By: Trevor Elkins <trevor.elkins@sentry.io>
trevor-e
marked this pull request as ready for review
August 17, 2026 18:50
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 1 potential issue.
❌ Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, enable autofix in the Cursor dashboard.
Reviewed by Cursor Bugbot for commit 561a443. Configure here.
D1 allows at most 100 bound parameters per query. listProjects loads members with IN (...), so page sizes above 100 failed. Chunk those lookups and cover the path with a 101-project list test. Co-Authored-By: Trevor Elkins <trevor.elkins@sentry.io>
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
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.

The projects page stopped at the first API page (
limitmax 50), so years with more than 50 projects hid the rest.This change raises the API max and client page size to 250 so a typical Hackweek year fits in one request. If a result set still has more pages, the UI shows previous/next controls from
nextCursor.Test plan
npm run test:appRequested by telkins.
--
View Junior Session [Sentry]