fix: paginate OSS deployment object verification - #61
Merged
Merged
Conversation
Collaborator
Author
|
Production deployment succeeded on September 15, 2026: run 34939745026. The new pagination code listed 1,063 objects and verified all 386 uploaded objects without a missing-object error. The workflow's public-file byte comparisons also passed. An additional read-only public audit matched 385 of 386 objects byte-for-byte. The remaining cached debug source map differs only in the build timestamp in its source URL; its source content, mappings, and the corresponding runtime JavaScript match. This does not affect the deployed pagination fix. |
This was referenced Sep 15, 2026
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.
Summary
Deployment verification reads every OSS object-list page so prefixes containing more than 1,000 objects do not produce false missing-object failures. It follows
NextMarkeruntilIsTruncatedis false, handles XML with or without a namespace, and rejects missing or non-advancing pagination markers.Related: #58, #59 and the failed deployment verification.
The pagination behavior follows the OSS ListObjects contract.
API contract
Not changed.
Validation
pnpm run validatepassed locally with Node 26.7.0, pnpm 8.10.2, and Python 3.12.14: type checks, production build, distribution verification, 13 deployment tests, and 22 browser tests.Checklist
pnpm run validate.