diff --git a/.github/workflows/optic-ci.yml b/.github/workflows/optic-ci.yml index a3e85ac..7d3f285 100644 --- a/.github/workflows/optic-ci.yml +++ b/.github/workflows/optic-ci.yml @@ -13,7 +13,7 @@ jobs: - name: download deno uses: denolib/setup-deno@v2 with: - deno-version: v1.32.1 + deno-version: v1.34.3 - name: check format if: matrix.os == 'ubuntu-latest' run: deno fmt --check diff --git a/deps.ts b/deps.ts index 3ba99a0..4ceab67 100644 --- a/deps.ts +++ b/deps.ts @@ -5,4 +5,4 @@ export { gray, red, yellow, -} from "https://deno.land/std@0.181.0/fmt/colors.ts"; +} from "https://deno.land/std@0.192.0/fmt/colors.ts"; diff --git a/logger/profileMeasure_test.ts b/logger/profileMeasure_test.ts index 07e27e5..39bd85d 100644 --- a/logger/profileMeasure_test.ts +++ b/logger/profileMeasure_test.ts @@ -181,9 +181,11 @@ test({ ); assert( - outputWithHeapIncrease.includes(""), + outputWithHeapIncrease.includes("ms; heap usage increased "), ); + console.log(outputWithHeapIncrease); + assert( /^Measuring 'start of test' -> 'Now', took \d+(?:\.\d+)?ms; heap usage increased \d+\.\d+ [A-Z]{2} to \d+\.\d+ [A-Z]{2}$/ .test(outputWithHeapIncrease), diff --git a/streams/fileStream/deps.ts b/streams/fileStream/deps.ts index bc9f340..a1f14d0 100644 --- a/streams/fileStream/deps.ts +++ b/streams/fileStream/deps.ts @@ -2,9 +2,9 @@ export { basename as posixBasename, dirname as posixDirname, -} from "https://deno.land/std@0.181.0/path/posix.ts"; +} from "https://deno.land/std@0.192.0/path/posix.ts"; export { basename as win32Basename, dirname as win32Dirname, -} from "https://deno.land/std@0.181.0/path/win32.ts"; -export { BufWriterSync } from "https://deno.land/std@0.181.0/io/buf_writer.ts"; +} from "https://deno.land/std@0.192.0/path/win32.ts"; +export { BufWriterSync } from "https://deno.land/std@0.192.0/io/buf_writer.ts"; diff --git a/test_deps.ts b/test_deps.ts index 72811cc..5a20c0a 100644 --- a/test_deps.ts +++ b/test_deps.ts @@ -9,4 +9,4 @@ export { assertStrictEquals, assertStringIncludes, assertThrows, -} from "https://deno.land/std@0.181.0/testing/asserts.ts"; +} from "https://deno.land/std@0.192.0/testing/asserts.ts";