From e302af459f0bd503cf40440ee3318ec40d163881 Mon Sep 17 00:00:00 2001 From: Jack Zhuang <277994282+os-zhuang@users.noreply.github.com> Date: Fri, 31 Jul 2026 12:45:38 +0800 Subject: [PATCH] fix(release): rename stale @objectstack/adapter-hono ref in pending changeset changeset version hard-fails on a changeset naming a package that is not in the workspace, and adapter-hono-auth-wildcard-yields still said @objectstack/adapter-hono while the workspace package is named @objectstack/hono. Same class of blocker as #3635: it kills the version step of the v17 train before the Version Packages PR can be created. A sweep of all 559 pending changesets' frontmatter (974 package refs) and pre.json initialVersions against the 77 workspace package names found no other stale reference. Adds an empty changeset for the Check Changeset gate; releases nothing. Co-Authored-By: Claude Fable 5 --- .changeset/adapter-hono-auth-wildcard-yields.md | 2 +- .changeset/fix-stale-hono-changeset-ref.md | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 .changeset/fix-stale-hono-changeset-ref.md diff --git a/.changeset/adapter-hono-auth-wildcard-yields.md b/.changeset/adapter-hono-auth-wildcard-yields.md index 58157ad6e6..6b0561ca65 100644 --- a/.changeset/adapter-hono-auth-wildcard-yields.md +++ b/.changeset/adapter-hono-auth-wildcard-yields.md @@ -1,5 +1,5 @@ --- -"@objectstack/adapter-hono": patch +"@objectstack/hono": patch --- fix(adapters/hono): the auth wildcard yields paths the auth service does not own (#4117) diff --git a/.changeset/fix-stale-hono-changeset-ref.md b/.changeset/fix-stale-hono-changeset-ref.md new file mode 100644 index 0000000000..7ab3ba6518 --- /dev/null +++ b/.changeset/fix-stale-hono-changeset-ref.md @@ -0,0 +1,4 @@ +--- +--- + +Repo-plumbing only: the pending changeset `adapter-hono-auth-wildcard-yields` referenced the Hono adapter by its old `@objectstack/adapter-hono` name, which `changeset version` rejects because the workspace package is named `@objectstack/hono`. Renamed the entry; a full sweep of every other pending changeset (and `pre.json`) against the workspace found nothing else stale. Releases nothing by itself.