Use bundled changelog-github with batched GraphQL queries#1625
Closed
TooTallNate wants to merge 1 commit intostablefrom
Closed
Use bundled changelog-github with batched GraphQL queries#1625TooTallNate wants to merge 1 commit intostablefrom
TooTallNate wants to merge 1 commit intostablefrom
Conversation
Bundles a patched version of @changesets/changelog-github that batches GitHub GraphQL API requests to avoid "Timeout on validation of query" errors when there are many changesets. Upstream PR: changesets/changesets#1925
Contributor
|
| Name | Type |
|---|---|
| @workflow/example-app | Patch |
| nextjs-turbopack | Patch |
| nextjs-webpack | Patch |
| @workflow/ai | Patch |
| @workflow/astro | Patch |
| @workflow/builders | Patch |
| @workflow/cli | Patch |
| @workflow/core | Patch |
| @workflow/docs-typecheck | Patch |
| @workflow/errors | Patch |
| @workflow/nest | Patch |
| @workflow/next | Patch |
| @workflow/nitro | Patch |
| @workflow/nuxt | Patch |
| @workflow/rollup | Patch |
| @workflow/serde | Patch |
| @workflow/sveltekit | Patch |
| @workflow/swc-plugin | Patch |
| @workflow/tsconfig | Patch |
| @workflow/typescript-plugin | Patch |
| @workflow/utils | Patch |
| @workflow/vite | Patch |
| @workflow/vitest | Patch |
| @workflow/web-shared | Patch |
| @workflow/web | Patch |
| workflow | Patch |
| @workflow/world-local | Patch |
| @workflow/world-postgres | Patch |
| @workflow/world-testing | Patch |
| @workflow/world-vercel | Patch |
| @workflow/world | Patch |
Click here to learn what changesets are, and how to add one.
Click here if you're a maintainer who wants to add a changeset to this PR
Contributor
🧪 E2E Test Results❌ Some tests failed Summary
❌ Failed Tests▲ Vercel Production (1 failed)hono (1 failed):
🌍 Community Worlds (64 failed)mongodb (4 failed):
redis (3 failed):
turso (57 failed):
Details by Category❌ ▲ Vercel Production
✅ 💻 Local Development
✅ 📦 Local Production
✅ 🐘 Local Postgres
✅ 🪟 Windows
❌ 🌍 Community Worlds
✅ 📋 Other
❌ Some E2E test jobs failed:
Check the workflow run for details. |
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
@changesets/changelog-github(via esbuild) that batches GitHub GraphQL API requests to avoid"Timeout on validation of query"errors when there are many changesets.changeset/config.jsonat the local bundled file instead of the npm packageContext
With 654+ changeset files, the upstream
@changesets/changelog-githubpackage sends a single massive GraphQL query to GitHub's API, which times out during query validation. The patched version splits requests into batches of 100 (configurable) and also fixes a DataLoader cache deduplication bug that was inflating the number of API lookups by ~6-7x.Upstream PR: changesets/changesets#1925
This can be reverted once the upstream PR is merged and released.