Clear consumed changesets from pre.json to fix release timeout#1623
Merged
VaguelySerious merged 3 commits intostablefrom Apr 7, 2026
Merged
Clear consumed changesets from pre.json to fix release timeout#1623VaguelySerious merged 3 commits intostablefrom
VaguelySerious merged 3 commits intostablefrom
Conversation
Contributor
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
|
| 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💻 Local Development (1 failed)hono-stable (1 failed):
🌍 Community Worlds (61 failed)mongodb-dev (1 failed):
redis-dev (1 failed):
turso-dev (1 failed):
turso (58 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. |
The changelog generator (@changesets/changelog-github) queries GitHub's GraphQL API for PR info on every changeset listed in pre.json. With 644 accumulated beta changesets, the query consistently times out. These changesets have already been published as beta releases and are not needed for the GA version exit. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> Signed-off-by: Peter Wielander <mittgfu@gmail.com>
f87894d to
e0fbb0e
Compare
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
Clear the 644 accumulated beta changesets from
pre.json'schangesetsarray. These have all been published as beta releases already.Problem
The release workflow consistently fails with
"Timeout on validation of query"because@changesets/changelog-githubtries to look up PR info for all 644 changesets via GitHub's GraphQL API, which times out on such a large query.Why this is safe
The
changesetsarray inpre.jsontracks which changesets were consumed during pre-release mode. Since we're exiting pre-release (mode: "exit"), changesets will process any remaining.mdchangeset files and produce GA versions. The list of previously consumed changesets is not needed for the exit.Test plan
🤖 Generated with Claude Code