Skip to content

Commit ceca626

Browse files
denobotkt3k
andauthored
chore: release 2025.01.22 (#6358)
Co-authored-by: kt3k <[email protected]>
1 parent 1f4d0b2 commit ceca626

File tree

11 files changed

+60
-18
lines changed

11 files changed

+60
-18
lines changed

Releases.md

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,45 @@
1+
### 2025.01.22
2+
3+
#### @std/assert 1.0.11 (patch)
4+
5+
- fix(assert): handle `__proto__` correctly in `assertObjectMatch` (#6342)
6+
7+
#### @std/async 1.0.10 (patch)
8+
9+
- feat(async/unstable): add `waitFor` function to wait for condition to be true
10+
(#6230)
11+
12+
#### @std/cbor 0.1.6 (patch)
13+
14+
- fix(cbor): incorrect decoding with subarrays (#6344)
15+
16+
#### @std/cli 1.0.11 (patch)
17+
18+
- fix(cli): handle overflow in `promptSecret` (#6318)
19+
20+
#### @std/collections 1.0.10 (patch)
21+
22+
- docs(collections): add the word "unique" to `distinctBy` JSDoc for grepping
23+
purposes (#6336)
24+
25+
#### @std/csv 1.0.5 (patch)
26+
27+
- test(csv): unstable stringify tests (#6337)
28+
29+
#### @std/expect 1.0.12 (patch)
30+
31+
- docs(expect): fix typo on objectContaining example (#6357)
32+
33+
#### @std/fs 1.0.10 (patch)
34+
35+
- feat(fs/unstable): add symlink and symlinkSync (#6352)
36+
- feat(fs/unstable): add chmod and chmodSync (#6343)
37+
- feat(fs/unstable): add readDir (#6338)
38+
39+
#### @std/io 0.225.1 (patch)
40+
41+
- fix(io): fix readAllSync for the case when read source is slow (#6355)
42+
143
### 2025.01.10
244

345
#### @std/cbor 0.1.5 (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.10",
3+
"version": "1.0.11",
44
"exports": {
55
".": "./mod.ts",
66
"./assert": "./assert.ts",

async/deno.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@std/async",
3-
"version": "1.0.9",
3+
"version": "1.0.10",
44
"exports": {
55
".": "./mod.ts",
66
"./abortable": "./abortable.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.5",
3+
"version": "0.1.6",
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.10",
3+
"version": "1.0.11",
44
"exports": {
55
".": "./mod.ts",
66
"./parse-args": "./parse_args.ts",

collections/deno.json

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

csv/deno.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@std/csv",
3-
"version": "1.0.4",
3+
"version": "1.0.5",
44
"exports": {
55
".": "./mod.ts",
66
"./parse": "./parse.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.11",
3+
"version": "1.0.12",
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.9",
3+
"version": "1.0.10",
44
"exports": {
55
".": "./mod.ts",
66
"./copy": "./copy.ts",

import_map.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,28 +6,28 @@
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.10",
10-
"@std/async": "jsr:@std/async@^1.0.9",
9+
"@std/assert": "jsr:@std/assert@^1.0.11",
10+
"@std/async": "jsr:@std/async@^1.0.10",
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.5",
14-
"@std/cli": "jsr:@std/cli@^1.0.10",
15-
"@std/collections": "jsr:@std/collections@^1.0.9",
13+
"@std/cbor": "jsr:@std/cbor@^0.1.6",
14+
"@std/cli": "jsr:@std/cli@^1.0.11",
15+
"@std/collections": "jsr:@std/collections@^1.0.10",
1616
"@std/crypto": "jsr:@std/crypto@^1.0.3",
17-
"@std/csv": "jsr:@std/csv@^1.0.4",
17+
"@std/csv": "jsr:@std/csv@^1.0.5",
1818
"@std/data-structures": "jsr:@std/data-structures@^1.0.6",
1919
"@std/datetime": "jsr:@std/datetime@^0.225.3",
2020
"@std/dotenv": "jsr:@std/dotenv@^0.225.3",
2121
"@std/encoding": "jsr:@std/encoding@^1.0.6",
22-
"@std/expect": "jsr:@std/expect@^1.0.11",
22+
"@std/expect": "jsr:@std/expect@^1.0.12",
2323
"@std/fmt": "jsr:@std/fmt@^1.0.4",
2424
"@std/front-matter": "jsr:@std/front-matter@^1.0.5",
25-
"@std/fs": "jsr:@std/fs@^1.0.9",
25+
"@std/fs": "jsr:@std/fs@^1.0.10",
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",
30-
"@std/io": "jsr:@std/io@^0.225.0",
30+
"@std/io": "jsr:@std/io@^0.225.1",
3131
"@std/json": "jsr:@std/json@^1.0.1",
3232
"@std/jsonc": "jsr:@std/jsonc@^1.0.1",
3333
"@std/log": "jsr:@std/log@^0.224.13",

io/deno.json

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

0 commit comments

Comments
 (0)