Skip to content

Commit 15858ee

Browse files
committed
fix(deps): exclude @next/swc binaries from the release-age gate
1 parent a86b189 commit 15858ee

1 file changed

Lines changed: 12 additions & 4 deletions

File tree

bunfig.toml

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,14 @@ minimumReleaseAge = 604800
77
# dev builds, so every version is structurally younger than any age gate.
88
# The exactly pinned Pi 0.80.10 packages were vetted for the cloud-review SDK
99
# migration; they age out of the gate on 2026-07-24 — drop these four entries then.
10-
# next@16.2.11 and @next/env@16.2.11 are the official Vercel security patch for the
11-
# July 2026 advisories (SSRF, cache confusion, DoS, middleware bypass — GHSA-89xv-2m56-2m9x
12-
# et al.); published 2026-07-21, they age out of the gate on 2026-07-28 — drop these two
13-
# entries then.
10+
# next@16.2.11, @next/env@16.2.11 and the @next/swc-* binaries are the official Vercel
11+
# security patch for the July 2026 advisories (SSRF, cache confusion, DoS, middleware
12+
# bypass — GHSA-89xv-2m56-2m9x et al.); published 2026-07-21, they age out of the gate on
13+
# 2026-07-28 — drop these entries then. The swc binaries ship in lockstep with next and
14+
# MUST be excluded alongside it: they are next's platform-gated optionalDependencies, so
15+
# gating them out leaves them absent from bun.lock entirely, and `bun install
16+
# --frozen-lockfile` then installs no compiler at all — next falls back to downloading one
17+
# at build time, which fails in CI.
1418
# @anthropic-ai/sdk is exactly pinned to 0.114.0, vetted for the agent-events
1519
# streaming work (adaptive thinking display types + transform-json-schema);
1620
# published 2026-07-23, it ages out of the gate on 2026-07-30 — drop this entry then.
@@ -22,6 +26,10 @@ minimumReleaseAgeExcludes = [
2226
"@earendil-works/pi-tui",
2327
"next",
2428
"@next/env",
29+
"@next/swc-darwin-arm64",
30+
"@next/swc-darwin-x64",
31+
"@next/swc-linux-arm64-gnu",
32+
"@next/swc-linux-x64-gnu",
2533
"@anthropic-ai/sdk",
2634
]
2735

0 commit comments

Comments
 (0)