diff --git a/.changeset/unbreak-wildcard-gate.md b/.changeset/unbreak-wildcard-gate.md new file mode 100644 index 0000000000..2f0e16d40f --- /dev/null +++ b/.changeset/unbreak-wildcard-gate.md @@ -0,0 +1,4 @@ +--- +--- + +fix(tooling): drop the retired `/storage` mount from the wildcard fall-through gate (#4116). #4122 added the guard declaring `packages/adapters/hono/src/index.ts:all ${prefix}/storage/*` in its `MOUNTS` ratchet; #4112 had already retired that mount, so the declaration pointed at nothing and the ESLint job failed on `main` — every open PR inheriting a red check it did not cause. Removing the entry is what the guard's own message asks for; nothing is un-ratcheted, because the mount it described no longer exists. Tooling only; releases nothing. diff --git a/scripts/check-wildcard-fallthrough.mjs b/scripts/check-wildcard-fallthrough.mjs index 0a37024dfd..18db9f08e1 100644 --- a/scripts/check-wildcard-fallthrough.mjs +++ b/scripts/check-wildcard-fallthrough.mjs @@ -155,9 +155,6 @@ const MOUNTS = { 'packages/adapters/hono/src/index.ts:all `${prefix}/auth/*`': { ratchet: '#4117 — terminal, same shape as #4088; adapter has no in-repo consumer', }, - 'packages/adapters/hono/src/index.ts:all `${prefix}/storage/*`': { - ratchet: '#4117 — terminal, same shape as #4088; adapter has no in-repo consumer', - }, }; /** HTTP-verb registrars plus `use`; anything that can claim a path pattern. */