Skip to content

Commit 4615e11

Browse files
denobotkt3k
andauthored
chore: release 2025.10.07 (#6844)
Co-authored-by: kt3k <[email protected]>
1 parent dca626c commit 4615e11

File tree

16 files changed

+95
-28
lines changed

16 files changed

+95
-28
lines changed

Releases.md

Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,70 @@
1+
### 2025.10.07
2+
3+
#### @std/assert 1.0.15 (patch)
4+
5+
- feat(assert/unstable): truncate big diffs (#6835)
6+
- fix(assert): add support for checking ArrayBuffer equality (#6821)
7+
8+
#### @std/async 1.0.15 (patch)
9+
10+
- feat(async/unstable): add `ensureLastCall` option for `throttle` (#6800)
11+
- fix(async/unstable): fix handling of async predicate in waitFor (#6839)
12+
- fix(async): convert setTimeout return values to Number (fixing type error when
13+
used with Node.js) (#6833)
14+
- fix(async): pass numeric value of `delay` timer to `unrefTimer` when
15+
`persistent=false` (#6822)
16+
17+
#### @std/cli 1.0.23 (patch)
18+
19+
- fix(cli): improve Node compatibility by removing top-level Deno API usage
20+
(#6837)
21+
- fix(cli): ensure unknown() is not called for collect args (parseArgs) (#6813)
22+
23+
#### @std/html 1.0.5 (patch)
24+
25+
- feat(html/unstable): add escapeJs and escapeCss functions (#6782)
26+
27+
#### @std/http 1.0.21 (patch)
28+
29+
- fix(http,random,streams,tar,webgpu): update types for Deno 2.5 (#6817)
30+
31+
#### @std/internal 1.0.11 (patch)
32+
33+
- chore(internal): support truncating of big diffs (#6835)
34+
35+
#### @std/random 0.1.3 (patch)
36+
37+
- fix(http,random,streams,tar,webgpu): update types for Deno 2.5 (#6817)
38+
39+
#### @std/semver 1.0.6 (patch)
40+
41+
- fix(semver): allow users to set prerelease number during increment (#6825)
42+
43+
#### @std/streams 1.0.13 (patch)
44+
45+
- fix(http,random,streams,tar,webgpu): update types for Deno 2.5 (#6817)
46+
47+
#### @std/tar 0.1.9 (patch)
48+
49+
- fix(http,random,streams,tar,webgpu): update types for Deno 2.5 (#6817)
50+
51+
#### @std/testing 1.0.16 (patch)
52+
53+
- feat(testing/unstable): add `it.todo` `test.todo` and `describe.todo` API
54+
(#6712)
55+
56+
#### @std/toml 1.0.11 (patch)
57+
58+
- test(toml): test with the official toml-test suite (#6798)
59+
60+
#### @std/webgpu 0.224.9 (patch)
61+
62+
- fix(http,random,streams,tar,webgpu): update types for Deno 2.5 (#6817)
63+
64+
#### @std/yaml 1.0.10 (patch)
65+
66+
- feat(yaml/unstable): allow to add custom types for parse and stringify (#6841)
67+
168
### 2025.09.04
269

370
#### @std/cli 1.0.22 (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.14",
3+
"version": "1.0.15",
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.14",
3+
"version": "1.0.15",
44
"exports": {
55
".": "./mod.ts",
66
"./abortable": "./abortable.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.22",
3+
"version": "1.0.23",
44
"exports": {
55
".": "./mod.ts",
66
"./parse-args": "./parse_args.ts",

html/deno.json

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

http/deno.json

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

import_map.json

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@
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.14",
10-
"@std/async": "jsr:@std/async@^1.0.14",
9+
"@std/assert": "jsr:@std/assert@^1.0.15",
10+
"@std/async": "jsr:@std/async@^1.0.15",
1111
"@std/bytes": "jsr:@std/bytes@^1.0.6",
1212
"@std/cache": "jsr:@std/cache@^0.2.0",
1313
"@std/cbor": "jsr:@std/cbor@^0.1.8",
14-
"@std/cli": "jsr:@std/cli@^1.0.22",
14+
"@std/cli": "jsr:@std/cli@^1.0.23",
1515
"@std/collections": "jsr:@std/collections@^1.1.3",
1616
"@std/crypto": "jsr:@std/crypto@^1.0.5",
1717
"@std/csv": "jsr:@std/csv@^1.0.6",
@@ -23,10 +23,10 @@
2323
"@std/fmt": "jsr:@std/fmt@^1.0.8",
2424
"@std/front-matter": "jsr:@std/front-matter@^1.0.9",
2525
"@std/fs": "jsr:@std/fs@^1.0.19",
26-
"@std/html": "jsr:@std/html@^1.0.4",
27-
"@std/http": "jsr:@std/http@^1.0.20",
26+
"@std/html": "jsr:@std/html@^1.0.5",
27+
"@std/http": "jsr:@std/http@^1.0.21",
2828
"@std/ini": "jsr:@std/ini@^1.0.0-rc.8",
29-
"@std/internal": "jsr:@std/internal@^1.0.10",
29+
"@std/internal": "jsr:@std/internal@^1.0.11",
3030
"@std/io": "jsr:@std/io@^0.225.2",
3131
"@std/json": "jsr:@std/json@^1.0.2",
3232
"@std/jsonc": "jsr:@std/jsonc@^1.0.2",
@@ -35,16 +35,16 @@
3535
"@std/net": "jsr:@std/net@^1.0.6",
3636
"@std/path": "jsr:@std/path@^1.1.2",
3737
"@std/regexp": "jsr:@std/regexp@^1.0.1",
38-
"@std/random": "jsr:@std/random@^0.1.2",
39-
"@std/semver": "jsr:@std/semver@^1.0.5",
40-
"@std/streams": "jsr:@std/streams@^1.0.12",
41-
"@std/tar": "jsr:@std/tar@^0.1.8",
42-
"@std/testing": "jsr:@std/testing@^1.0.15",
38+
"@std/random": "jsr:@std/random@^0.1.3",
39+
"@std/semver": "jsr:@std/semver@^1.0.6",
40+
"@std/streams": "jsr:@std/streams@^1.0.13",
41+
"@std/tar": "jsr:@std/tar@^0.1.9",
42+
"@std/testing": "jsr:@std/testing@^1.0.16",
4343
"@std/text": "jsr:@std/text@^1.0.16",
44-
"@std/toml": "jsr:@std/toml@^1.0.10",
44+
"@std/toml": "jsr:@std/toml@^1.0.11",
4545
"@std/ulid": "jsr:@std/ulid@^1.0.0",
4646
"@std/uuid": "jsr:@std/uuid@^1.0.9",
47-
"@std/webgpu": "jsr:@std/webgpu@^0.224.8",
48-
"@std/yaml": "jsr:@std/yaml@^1.0.9"
47+
"@std/webgpu": "jsr:@std/webgpu@^0.224.9",
48+
"@std/yaml": "jsr:@std/yaml@^1.0.10"
4949
}
5050
}

internal/deno.json

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

random/deno.json

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

semver/deno.json

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

0 commit comments

Comments
 (0)