Skip to content

Commit 8573618

Browse files
denobotkt3k
andauthored
chore: release 2024.12.18 (#6277)
Co-authored-by: kt3k <kt3k@users.noreply.github.com>
1 parent 4e5c7aa commit 8573618

File tree

12 files changed

+74
-20
lines changed

12 files changed

+74
-20
lines changed

Releases.md

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,57 @@
1+
### 2024.12.18
2+
3+
#### @std/assert 1.0.10 (patch)
4+
5+
- fix(assert): fix formatting for `assertNotEquals` error messages (#6246)
6+
7+
#### @std/cbor 0.1.4 (patch)
8+
9+
- feat(cbor): add encoding/decoding for `new Map()` instance (#6252)
10+
11+
#### @std/cli 1.0.9 (patch)
12+
13+
- feat(cli/unstable): add `promptMultipleSelect()` (#6223)
14+
- fix(cli/unstable): `promptMultipleSelect()` add `isTerminal()` check (#6263)
15+
- fix(cli/unstable): `promptSelect()` add `isTerminal()` check (#6264)
16+
- docs(cli): remove `parseArgs()` console logs from examples (#6268)
17+
- test(cli): add `promptSecret()` empty mask option test (#6273)
18+
- test(cli/unstable): add `promptSelect()` ETX test (#6267)
19+
- test(cli/unstable): add `promptMultipleSelect()` ETX test (#6266)
20+
- test(cli): add tests for `promptSecret()` (#6256)
21+
- test(cli/unstable): clean up `promptSelect()` tests (#6253)
22+
- test(cli/unstable): rewrite `Spinner` tests using stub (#6254)
23+
24+
#### @std/data-structures 1.0.5 (patch)
25+
26+
- fix(data-structures): ensure size consistency in BinarySearchTree.from (#6272)
27+
28+
#### @std/encoding 1.0.6 (patch)
29+
30+
- feat(encoding/unstable): Crockford base32 unstable support (#6238)
31+
32+
#### @std/expect 1.0.10 (patch)
33+
34+
- fix(expect): fix `expect.arrayContaining` bug (#6271)
35+
- fix(expect): always show custom message (#6217)
36+
- docs(expect): suggest using top-level code instead of beforeAll (#6240)
37+
38+
#### @std/fs 1.0.7 (patch)
39+
40+
- feat(fs/unstable): add `fs.stat` (#6258)
41+
- docs(fs/unstable): use `stat` function in `stat` example (#6275)
42+
43+
#### @std/log 0.224.12 (patch)
44+
45+
- docs(log): fix level name assertion in LogRecord example (#6269)
46+
47+
#### @std/regexp 1.0.1 (patch)
48+
49+
- fix(regexp): escape leading digit (#6208)
50+
51+
#### @std/testing 1.0.7 (patch)
52+
53+
- fix(testing): stop code execution in `describe.ignore` (#6237)
54+
155
### 2024.12.06
256

357
#### @std/assert 1.0.9 (patch)

assert/deno.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@std/assert",
3-
"version": "1.0.9",
3+
"version": "1.0.10",
44
"exports": {
55
".": "./mod.ts",
66
"./assert": "./assert.ts",

cbor/deno.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@std/cbor",
3-
"version": "0.1.3",
3+
"version": "0.1.4",
44
"exports": {
55
".": "./mod.ts",
66
"./array-encoder-stream": "./array_encoder_stream.ts",

cli/deno.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@std/cli",
3-
"version": "1.0.8",
3+
"version": "1.0.9",
44
"exports": {
55
".": "./mod.ts",
66
"./parse-args": "./parse_args.ts",

data_structures/deno.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@std/data-structures",
3-
"version": "1.0.4",
3+
"version": "1.0.5",
44
"exports": {
55
".": "./mod.ts",
66
"./unstable-bidirectional-map": "./unstable_bidirectional_map.ts",

encoding/deno.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@std/encoding",
3-
"version": "1.0.5",
3+
"version": "1.0.6",
44
"exports": {
55
".": "./mod.ts",
66
"./ascii85": "./ascii85.ts",

expect/deno.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@std/expect",
3-
"version": "1.0.9",
3+
"version": "1.0.10",
44
"exports": {
55
".": "./mod.ts",
66
"./expect": "./expect.ts",

fs/deno.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@std/fs",
3-
"version": "1.0.6",
3+
"version": "1.0.7",
44
"exports": {
55
".": "./mod.ts",
66
"./copy": "./copy.ts",

import_map.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -6,41 +6,41 @@
66
"automation/": "https://raw.githubusercontent.com/denoland/automation/0.10.0/",
77
"graphviz": "npm:node-graphviz@^0.1.1",
88

9-
"@std/assert": "jsr:@std/assert@^1.0.9",
9+
"@std/assert": "jsr:@std/assert@^1.0.10",
1010
"@std/async": "jsr:@std/async@^1.0.9",
1111
"@std/bytes": "jsr:@std/bytes@^1.0.4",
1212
"@std/cache": "jsr:@std/cache@^0.1.3",
13-
"@std/cbor": "jsr:@std/cbor@^0.1.3",
14-
"@std/cli": "jsr:@std/cli@^1.0.8",
13+
"@std/cbor": "jsr:@std/cbor@^0.1.4",
14+
"@std/cli": "jsr:@std/cli@^1.0.9",
1515
"@std/collections": "jsr:@std/collections@^1.0.9",
1616
"@std/crypto": "jsr:@std/crypto@^1.0.3",
1717
"@std/csv": "jsr:@std/csv@^1.0.4",
18-
"@std/data-structures": "jsr:@std/data-structures@^1.0.4",
18+
"@std/data-structures": "jsr:@std/data-structures@^1.0.5",
1919
"@std/datetime": "jsr:@std/datetime@^0.225.2",
2020
"@std/dotenv": "jsr:@std/dotenv@^0.225.3",
21-
"@std/encoding": "jsr:@std/encoding@^1.0.5",
22-
"@std/expect": "jsr:@std/expect@^1.0.9",
21+
"@std/encoding": "jsr:@std/encoding@^1.0.6",
22+
"@std/expect": "jsr:@std/expect@^1.0.10",
2323
"@std/fmt": "jsr:@std/fmt@^1.0.3",
2424
"@std/front-matter": "jsr:@std/front-matter@^1.0.5",
25-
"@std/fs": "jsr:@std/fs@^1.0.6",
25+
"@std/fs": "jsr:@std/fs@^1.0.7",
2626
"@std/html": "jsr:@std/html@^1.0.3",
2727
"@std/http": "jsr:@std/http@^1.0.12",
2828
"@std/ini": "jsr:@std/ini@^1.0.0-rc.5",
2929
"@std/internal": "jsr:@std/internal@^1.0.5",
3030
"@std/io": "jsr:@std/io@^0.225.0",
3131
"@std/json": "jsr:@std/json@^1.0.1",
3232
"@std/jsonc": "jsr:@std/jsonc@^1.0.1",
33-
"@std/log": "jsr:@std/log@^0.224.11",
33+
"@std/log": "jsr:@std/log@^0.224.12",
3434
"@std/media-types": "jsr:@std/media-types@^1.1.0",
3535
"@std/msgpack": "jsr:@std/msgpack@^1.0.2",
3636
"@std/net": "jsr:@std/net@^1.0.4",
3737
"@std/path": "jsr:@std/path@^1.0.8",
38-
"@std/regexp": "jsr:@std/regexp@^1.0.0",
38+
"@std/regexp": "jsr:@std/regexp@^1.0.1",
3939
"@std/random": "jsr:@std/random@^0.1.0",
4040
"@std/semver": "jsr:@std/semver@^1.0.3",
4141
"@std/streams": "jsr:@std/streams@^1.0.8",
4242
"@std/tar": "jsr:@std/tar@^0.1.4",
43-
"@std/testing": "jsr:@std/testing@^1.0.6",
43+
"@std/testing": "jsr:@std/testing@^1.0.7",
4444
"@std/text": "jsr:@std/text@^1.0.9",
4545
"@std/toml": "jsr:@std/toml@^1.0.2",
4646
"@std/ulid": "jsr:@std/ulid@^1.0.0",

log/deno.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@std/log",
3-
"version": "0.224.11",
3+
"version": "0.224.12",
44
"exports": {
55
".": "./mod.ts",
66
"./base-handler": "./base_handler.ts",

0 commit comments

Comments
 (0)