From b0653c7469febbf689b6db7a986962ec032b9fe3 Mon Sep 17 00:00:00 2001 From: Kyle June Date: Sat, 25 Jul 2026 15:46:38 -0400 Subject: [PATCH] chore(deps): refresh the stale lockfile MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit `@std/testing`'s entry was missing its `jsr:@std/async` dependency, so a frozen install rejected the lockfile. This predates the release workflow — the same failure reproduces on d9fc4c7 — but nothing caught it, because the old publish workflow ran `npx jsr publish` without ever installing from the lock. The new release job runs `deno ci`, which is frozen, so it surfaced there first. Co-Authored-By: Claude Opus 5 --- deno.lock | 1 + 1 file changed, 1 insertion(+) diff --git a/deno.lock b/deno.lock index e636a12..fce5892 100644 --- a/deno.lock +++ b/deno.lock @@ -68,6 +68,7 @@ "integrity": "a917ffdeb5924c9be436dc78bc32e511760e14d3a96e49c607fc5ecca86d0092", "dependencies": [ "jsr:@std/assert", + "jsr:@std/async", "jsr:@std/data-structures", "jsr:@std/fs", "jsr:@std/internal@^1.0.12",