From d332064825a9dfca4e19993e3cb93720714f2fea Mon Sep 17 00:00:00 2001 From: Alexander Harding Date: Sun, 24 May 2026 13:20:24 -0600 Subject: [PATCH 1/2] Made changes to account for the deno v2.8 release --- deno.json | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/deno.json b/deno.json index a03ca06..146d1d7 100644 --- a/deno.json +++ b/deno.json @@ -54,12 +54,9 @@ "until" ], "license": "MIT", - "tasks": { - "test": "deno test --watch --parallel", - "test:ci": "deno test --parallel" - }, + "tasks": { "test": "deno test --watch --parallel", "test:ci": "deno test --parallel" }, "fmt": { "lineWidth": 100, "bracePosition": "sameLine" }, - "imports": { - "@std/assert": "jsr:@std/assert@^1.0.17" - } + "imports": { "@std/assert": "jsr:@std/assert@^1.0.17" }, + "lint": { "rules": { "include": ["no-process-global", "no-node-globals"] } }, + "test": { "sanitizeOps": true, "sanitizeResources": true } } From 950b68e09a64426c643ab2bbb791c0a0499a287e Mon Sep 17 00:00:00 2001 From: Alexander Harding Date: Sun, 24 May 2026 13:28:32 -0600 Subject: [PATCH 2/2] Unpin the @std/assert package per recommendation --- deno.json | 2 +- deno.lock | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/deno.json b/deno.json index 146d1d7..d76e37f 100644 --- a/deno.json +++ b/deno.json @@ -56,7 +56,7 @@ "license": "MIT", "tasks": { "test": "deno test --watch --parallel", "test:ci": "deno test --parallel" }, "fmt": { "lineWidth": 100, "bracePosition": "sameLine" }, - "imports": { "@std/assert": "jsr:@std/assert@^1.0.17" }, + "imports": { "@std/assert": "jsr:@std/assert" }, "lint": { "rules": { "include": ["no-process-global", "no-node-globals"] } }, "test": { "sanitizeOps": true, "sanitizeResources": true } } diff --git a/deno.lock b/deno.lock index 855b025..f7b0092 100644 --- a/deno.lock +++ b/deno.lock @@ -1,13 +1,13 @@ { "version": "5", "specifiers": { - "jsr:@std/assert@^1.0.17": "1.0.17", + "jsr:@std/assert@*": "1.0.19", "jsr:@std/internal@^1.0.12": "1.0.12", "npm:rxjs@^7.8.2": "7.8.2" }, "jsr": { - "@std/assert@1.0.17": { - "integrity": "df5ebfffe77c03b3fa1401e11c762cc8f603d51021c56c4d15a8c7ab45e90dbe", + "@std/assert@1.0.19": { + "integrity": "eaada96ee120cb980bc47e040f82814d786fe8162ecc53c91d8df60b8755991e", "dependencies": [ "jsr:@std/internal" ] @@ -29,7 +29,7 @@ }, "workspace": { "dependencies": [ - "jsr:@std/assert@^1.0.17" + "jsr:@std/assert@*" ], "members": { "rxjs-interop": {