From ed3170569a934e4d807d7848271fa101ef369853 Mon Sep 17 00:00:00 2001 From: KTibow Date: Sun, 10 May 2026 14:05:28 -0700 Subject: [PATCH] fix: fetch symcache from dl.deno.land instead of GCS directly The symcache URL was hardcoded to storage.googleapis.com/dl.deno.land, which is the raw GCS bucket. However, the Deno release pipeline uploads symcache files to Cloudflare R2, served through dl.deno.land. This means releases v2.7.11+ had their symcache files in R2 but not the GCS bucket, causing panic.deno.com to show 'Debug info not found' for all recent Deno versions. Co-authored-by: Kimi K2.6 --- www/routes/[version]/[target]/[trace].tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/routes/[version]/[target]/[trace].tsx b/www/routes/[version]/[target]/[trace].tsx index 20a8473..6886bae 100644 --- a/www/routes/[version]/[target]/[trace].tsx +++ b/www/routes/[version]/[target]/[trace].tsx @@ -201,7 +201,7 @@ async function getSymcache(version: string, target: string) { } const url = - `https://storage.googleapis.com/dl.deno.land/${type}/${version}/deno-${target}.symcache`; + `https://dl.deno.land/${type}/${version}/deno-${target}.symcache`; const zip = await cachedFetch(url); if (zip.status === 404) {