From 8866bfa808de28147fdfd5f103b2d8f2acbb2417 Mon Sep 17 00:00:00 2001 From: Zach Dunn Date: Fri, 24 Jul 2026 16:30:17 -0400 Subject: [PATCH] fix(release): drop the deleted @uploads/workspace from changesets ignore MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit #522 deleted packages/workspace but left it in .changeset/config.json's ignore list. Changesets validates that every ignored entry resolves to a real package, so `changeset version` now fails config parsing before it does any work — blocking the release PR and every npm publish behind it. Removing the stale entry restores it. `changeset status` confirms the pending @buildinternet/uploads minor is intact, so nothing was lost; the release PR regenerates on the next run. Checked the remaining five ignore entries against the actual workspace list — all resolve. --- .changeset/config.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.changeset/config.json b/.changeset/config.json index 0263c89b..4428c074 100644 --- a/.changeset/config.json +++ b/.changeset/config.json @@ -13,7 +13,6 @@ "@uploads/web", "@uploads/storage", "@uploads/auth", - "@uploads/billing", - "@uploads/workspace" + "@uploads/billing" ] }