From 857361819ea3e32960ce82376e94bce5b87477e3 Mon Sep 17 00:00:00 2001 From: denobot <33910674+denobot@users.noreply.github.com> Date: Wed, 18 Dec 2024 02:12:10 -0500 Subject: [PATCH] chore: release 2024.12.18 (#6277) Co-authored-by: kt3k --- Releases.md | 54 +++++++++++++++++++++++++++++++++++++++ assert/deno.json | 2 +- cbor/deno.json | 2 +- cli/deno.json | 2 +- data_structures/deno.json | 2 +- encoding/deno.json | 2 +- expect/deno.json | 2 +- fs/deno.json | 2 +- import_map.json | 20 +++++++-------- log/deno.json | 2 +- regexp/deno.json | 2 +- testing/deno.json | 2 +- 12 files changed, 74 insertions(+), 20 deletions(-) diff --git a/Releases.md b/Releases.md index ec5b03c6e99e..1c3bc486ec14 100644 --- a/Releases.md +++ b/Releases.md @@ -1,3 +1,57 @@ +### 2024.12.18 + +#### @std/assert 1.0.10 (patch) + +- fix(assert): fix formatting for `assertNotEquals` error messages (#6246) + +#### @std/cbor 0.1.4 (patch) + +- feat(cbor): add encoding/decoding for `new Map()` instance (#6252) + +#### @std/cli 1.0.9 (patch) + +- feat(cli/unstable): add `promptMultipleSelect()` (#6223) +- fix(cli/unstable): `promptMultipleSelect()` add `isTerminal()` check (#6263) +- fix(cli/unstable): `promptSelect()` add `isTerminal()` check (#6264) +- docs(cli): remove `parseArgs()` console logs from examples (#6268) +- test(cli): add `promptSecret()` empty mask option test (#6273) +- test(cli/unstable): add `promptSelect()` ETX test (#6267) +- test(cli/unstable): add `promptMultipleSelect()` ETX test (#6266) +- test(cli): add tests for `promptSecret()` (#6256) +- test(cli/unstable): clean up `promptSelect()` tests (#6253) +- test(cli/unstable): rewrite `Spinner` tests using stub (#6254) + +#### @std/data-structures 1.0.5 (patch) + +- fix(data-structures): ensure size consistency in BinarySearchTree.from (#6272) + +#### @std/encoding 1.0.6 (patch) + +- feat(encoding/unstable): Crockford base32 unstable support (#6238) + +#### @std/expect 1.0.10 (patch) + +- fix(expect): fix `expect.arrayContaining` bug (#6271) +- fix(expect): always show custom message (#6217) +- docs(expect): suggest using top-level code instead of beforeAll (#6240) + +#### @std/fs 1.0.7 (patch) + +- feat(fs/unstable): add `fs.stat` (#6258) +- docs(fs/unstable): use `stat` function in `stat` example (#6275) + +#### @std/log 0.224.12 (patch) + +- docs(log): fix level name assertion in LogRecord example (#6269) + +#### @std/regexp 1.0.1 (patch) + +- fix(regexp): escape leading digit (#6208) + +#### @std/testing 1.0.7 (patch) + +- fix(testing): stop code execution in `describe.ignore` (#6237) + ### 2024.12.06 #### @std/assert 1.0.9 (patch) diff --git a/assert/deno.json b/assert/deno.json index fad689e6118c..0d688cee1e64 100644 --- a/assert/deno.json +++ b/assert/deno.json @@ -1,6 +1,6 @@ { "name": "@std/assert", - "version": "1.0.9", + "version": "1.0.10", "exports": { ".": "./mod.ts", "./assert": "./assert.ts", diff --git a/cbor/deno.json b/cbor/deno.json index 982c0b1e5549..85d9ad80c1a0 100644 --- a/cbor/deno.json +++ b/cbor/deno.json @@ -1,6 +1,6 @@ { "name": "@std/cbor", - "version": "0.1.3", + "version": "0.1.4", "exports": { ".": "./mod.ts", "./array-encoder-stream": "./array_encoder_stream.ts", diff --git a/cli/deno.json b/cli/deno.json index ccc994fd0568..36644843677e 100644 --- a/cli/deno.json +++ b/cli/deno.json @@ -1,6 +1,6 @@ { "name": "@std/cli", - "version": "1.0.8", + "version": "1.0.9", "exports": { ".": "./mod.ts", "./parse-args": "./parse_args.ts", diff --git a/data_structures/deno.json b/data_structures/deno.json index 83b6cda689d8..ee978a287aef 100644 --- a/data_structures/deno.json +++ b/data_structures/deno.json @@ -1,6 +1,6 @@ { "name": "@std/data-structures", - "version": "1.0.4", + "version": "1.0.5", "exports": { ".": "./mod.ts", "./unstable-bidirectional-map": "./unstable_bidirectional_map.ts", diff --git a/encoding/deno.json b/encoding/deno.json index c85a3adda282..016f8a3f47ee 100644 --- a/encoding/deno.json +++ b/encoding/deno.json @@ -1,6 +1,6 @@ { "name": "@std/encoding", - "version": "1.0.5", + "version": "1.0.6", "exports": { ".": "./mod.ts", "./ascii85": "./ascii85.ts", diff --git a/expect/deno.json b/expect/deno.json index 40a4c4d397b7..f3fb501e394d 100644 --- a/expect/deno.json +++ b/expect/deno.json @@ -1,6 +1,6 @@ { "name": "@std/expect", - "version": "1.0.9", + "version": "1.0.10", "exports": { ".": "./mod.ts", "./expect": "./expect.ts", diff --git a/fs/deno.json b/fs/deno.json index 4d044652921b..9038fe4586a0 100644 --- a/fs/deno.json +++ b/fs/deno.json @@ -1,6 +1,6 @@ { "name": "@std/fs", - "version": "1.0.6", + "version": "1.0.7", "exports": { ".": "./mod.ts", "./copy": "./copy.ts", diff --git a/import_map.json b/import_map.json index 17e3645d60be..77d68521eed3 100644 --- a/import_map.json +++ b/import_map.json @@ -6,23 +6,23 @@ "automation/": "https://raw.githubusercontent.com/denoland/automation/0.10.0/", "graphviz": "npm:node-graphviz@^0.1.1", - "@std/assert": "jsr:@std/assert@^1.0.9", + "@std/assert": "jsr:@std/assert@^1.0.10", "@std/async": "jsr:@std/async@^1.0.9", "@std/bytes": "jsr:@std/bytes@^1.0.4", "@std/cache": "jsr:@std/cache@^0.1.3", - "@std/cbor": "jsr:@std/cbor@^0.1.3", - "@std/cli": "jsr:@std/cli@^1.0.8", + "@std/cbor": "jsr:@std/cbor@^0.1.4", + "@std/cli": "jsr:@std/cli@^1.0.9", "@std/collections": "jsr:@std/collections@^1.0.9", "@std/crypto": "jsr:@std/crypto@^1.0.3", "@std/csv": "jsr:@std/csv@^1.0.4", - "@std/data-structures": "jsr:@std/data-structures@^1.0.4", + "@std/data-structures": "jsr:@std/data-structures@^1.0.5", "@std/datetime": "jsr:@std/datetime@^0.225.2", "@std/dotenv": "jsr:@std/dotenv@^0.225.3", - "@std/encoding": "jsr:@std/encoding@^1.0.5", - "@std/expect": "jsr:@std/expect@^1.0.9", + "@std/encoding": "jsr:@std/encoding@^1.0.6", + "@std/expect": "jsr:@std/expect@^1.0.10", "@std/fmt": "jsr:@std/fmt@^1.0.3", "@std/front-matter": "jsr:@std/front-matter@^1.0.5", - "@std/fs": "jsr:@std/fs@^1.0.6", + "@std/fs": "jsr:@std/fs@^1.0.7", "@std/html": "jsr:@std/html@^1.0.3", "@std/http": "jsr:@std/http@^1.0.12", "@std/ini": "jsr:@std/ini@^1.0.0-rc.5", @@ -30,17 +30,17 @@ "@std/io": "jsr:@std/io@^0.225.0", "@std/json": "jsr:@std/json@^1.0.1", "@std/jsonc": "jsr:@std/jsonc@^1.0.1", - "@std/log": "jsr:@std/log@^0.224.11", + "@std/log": "jsr:@std/log@^0.224.12", "@std/media-types": "jsr:@std/media-types@^1.1.0", "@std/msgpack": "jsr:@std/msgpack@^1.0.2", "@std/net": "jsr:@std/net@^1.0.4", "@std/path": "jsr:@std/path@^1.0.8", - "@std/regexp": "jsr:@std/regexp@^1.0.0", + "@std/regexp": "jsr:@std/regexp@^1.0.1", "@std/random": "jsr:@std/random@^0.1.0", "@std/semver": "jsr:@std/semver@^1.0.3", "@std/streams": "jsr:@std/streams@^1.0.8", "@std/tar": "jsr:@std/tar@^0.1.4", - "@std/testing": "jsr:@std/testing@^1.0.6", + "@std/testing": "jsr:@std/testing@^1.0.7", "@std/text": "jsr:@std/text@^1.0.9", "@std/toml": "jsr:@std/toml@^1.0.2", "@std/ulid": "jsr:@std/ulid@^1.0.0", diff --git a/log/deno.json b/log/deno.json index 49f935303d79..9bf80aedf8b7 100644 --- a/log/deno.json +++ b/log/deno.json @@ -1,6 +1,6 @@ { "name": "@std/log", - "version": "0.224.11", + "version": "0.224.12", "exports": { ".": "./mod.ts", "./base-handler": "./base_handler.ts", diff --git a/regexp/deno.json b/regexp/deno.json index 3ab465b91430..b01d3aeb8dba 100644 --- a/regexp/deno.json +++ b/regexp/deno.json @@ -1,6 +1,6 @@ { "name": "@std/regexp", - "version": "1.0.0", + "version": "1.0.1", "exports": { ".": "./mod.ts", "./escape": "./escape.ts" diff --git a/testing/deno.json b/testing/deno.json index 98f2326d9f8b..4459a3a362d1 100644 --- a/testing/deno.json +++ b/testing/deno.json @@ -1,6 +1,6 @@ { "name": "@std/testing", - "version": "1.0.6", + "version": "1.0.7", "exports": { "./bdd": "./bdd.ts", "./mock": "./mock.ts",