Remove old changeset files to fix release timeout#1636
Merged
VaguelySerious merged 1 commit intostablefrom Apr 7, 2026
Merged
Conversation
The changelog generator queries GitHub's GraphQL API for each changeset file. With 661 files on disk, the query consistently times out. Remove the 638 already-published beta changesets, keeping only the 22 from recent commits that should appear in the 4.2.0 GA changelog. Also restores the pre.json changesets list to match. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> Signed-off-by: Peter Wielander <mittgfu@gmail.com>
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🌍 Community Worlds (60 failed)mongodb-dev (1 failed):
redis-dev (1 failed):
turso-dev (1 failed):
turso (57 failed):
Details by Category✅ ▲ Vercel Production
✅ 💻 Local Development
✅ 📦 Local Production
✅ 🐘 Local Postgres
✅ 🪟 Windows
❌ 🌍 Community Worlds
✅ 📋 Other
|
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
Delete 638 already-published beta changeset
.mdfiles and restore thepre.jsonchangesets list to match the 22 remaining files.Problem
The previous PR (#1623) trimmed
pre.jsonbut left all 661.mdchangeset files on disk. Whenchangeset versionruns to exit pre-release mode, the changelog generator (@changesets/changelog-github) queries GitHub's GraphQL API for every.mdfile — not just thepre.jsonlist. 661 lookups consistently times out the API.What's kept
The 22 changesets from the last ~20 commits on
stable(everything since the serde compliance tooling through stream flush interval). These will appear in the 4.2.0 GA changelog.Test plan
🤖 Generated with Claude Code