From ddad871b46ca3dbd373280b70fdeb0f1553bfba4 Mon Sep 17 00:00:00 2001 From: Dax Raad Date: Tue, 14 Apr 2026 22:35:03 -0400 Subject: [PATCH] core: pin downloads to v1.4.3 to ensure users get a tested, stable build instead of potentially unstable latest releases --- .../console/app/src/routes/download/[channel]/[platform].ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/console/app/src/routes/download/[channel]/[platform].ts b/packages/console/app/src/routes/download/[channel]/[platform].ts index e9b3f23e79..3321b1999e 100644 --- a/packages/console/app/src/routes/download/[channel]/[platform].ts +++ b/packages/console/app/src/routes/download/[channel]/[platform].ts @@ -22,7 +22,7 @@ export async function GET({ params: { platform, channel } }: APIEvent) { if (!assetName) return new Response(null, { status: 404 }) const resp = await fetch( - `https://github.com/anomalyco/${channel === "stable" ? "opencode" : "opencode-beta"}/releases/latest/download/${assetName}`, + `https://github.com/anomalyco/${channel === "stable" ? "opencode" : "opencode-beta"}/releases/download/v1.4.3/${assetName}`, { cf: { // in case gh releases has rate limits