Skip to content

Commit 2001bae

Browse files
denobotkt3k
andauthored
chore: release 2025.06.12 (#6719)
Co-authored-by: kt3k <[email protected]>
1 parent 1641342 commit 2001bae

File tree

9 files changed

+49
-14
lines changed

9 files changed

+49
-14
lines changed

Releases.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,38 @@
1+
### 2025.06.12
2+
3+
#### @std/cli 1.0.20 (patch)
4+
5+
- fix(cli/unstable): `Spinner` print on `start()` (#6706)
6+
- refactor(cli/unstable): move unit related stuff to separate file (#6693)
7+
8+
#### @std/http 1.0.18 (patch)
9+
10+
- feat(http/unstable): add `cleanUrls` option to `serveDir` (#6231)
11+
12+
#### @std/streams 1.0.10 (patch)
13+
14+
- feat(streams/unstable): add `AbortStream` (#6708)
15+
- refactor(streams): throw `RangeError` within `Buffer` methods (#6714)
16+
17+
#### @std/testing 1.0.14 (patch)
18+
19+
- test(testing): ignore doc test of snapshot docs (#6718)
20+
21+
#### @std/toml 1.0.8 (patch)
22+
23+
- fix(toml): february edge cases in datetime (#6704)
24+
- fix(toml): leading zeroes in float (#6703)
25+
- refactor(toml): use RegExp groups for month validation (#6705)
26+
27+
#### @std/uuid 1.0.9 (patch)
28+
29+
- fix(uuid): support for UUID v7 validation (#6709)
30+
31+
#### @std/yaml 1.0.8 (patch)
32+
33+
- feat(yaml/unstable): export `unstable_stringify.ts` (#6702)
34+
- refactor(yaml): move `composeNode()` params in an object (#6658)
35+
136
### 2025.05.30
237

338
#### @std/cli 1.0.19 (patch)

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.19",
3+
"version": "1.0.20",
44
"exports": {
55
".": "./mod.ts",
66
"./parse-args": "./parse_args.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.17",
3+
"version": "1.0.18",
44
"exports": {
55
".": "./mod.ts",
66
"./cookie": "./cookie.ts",

import_map.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"@std/bytes": "jsr:@std/bytes@^1.0.6",
1313
"@std/cache": "jsr:@std/cache@^0.2.0",
1414
"@std/cbor": "jsr:@std/cbor@^0.1.8",
15-
"@std/cli": "jsr:@std/cli@^1.0.19",
15+
"@std/cli": "jsr:@std/cli@^1.0.20",
1616
"@std/collections": "jsr:@std/collections@^1.1.1",
1717
"@std/crypto": "jsr:@std/crypto@^1.0.5",
1818
"@std/csv": "jsr:@std/csv@^1.0.6",
@@ -25,7 +25,7 @@
2525
"@std/front-matter": "jsr:@std/front-matter@^1.0.9",
2626
"@std/fs": "jsr:@std/fs@^1.0.18",
2727
"@std/html": "jsr:@std/html@^1.0.4",
28-
"@std/http": "jsr:@std/http@^1.0.17",
28+
"@std/http": "jsr:@std/http@^1.0.18",
2929
"@std/ini": "jsr:@std/ini@^1.0.0-rc.8",
3030
"@std/internal": "jsr:@std/internal@^1.0.8",
3131
"@std/io": "jsr:@std/io@^0.225.2",
@@ -39,14 +39,14 @@
3939
"@std/regexp": "jsr:@std/regexp@^1.0.1",
4040
"@std/random": "jsr:@std/random@^0.1.2",
4141
"@std/semver": "jsr:@std/semver@^1.0.5",
42-
"@std/streams": "jsr:@std/streams@^1.0.9",
42+
"@std/streams": "jsr:@std/streams@^1.0.10",
4343
"@std/tar": "jsr:@std/tar@^0.1.6",
44-
"@std/testing": "jsr:@std/testing@^1.0.13",
44+
"@std/testing": "jsr:@std/testing@^1.0.14",
4545
"@std/text": "jsr:@std/text@^1.0.14",
46-
"@std/toml": "jsr:@std/toml@^1.0.7",
46+
"@std/toml": "jsr:@std/toml@^1.0.8",
4747
"@std/ulid": "jsr:@std/ulid@^1.0.0",
48-
"@std/uuid": "jsr:@std/uuid@^1.0.8",
48+
"@std/uuid": "jsr:@std/uuid@^1.0.9",
4949
"@std/webgpu": "jsr:@std/webgpu@^0.224.8",
50-
"@std/yaml": "jsr:@std/yaml@^1.0.7"
50+
"@std/yaml": "jsr:@std/yaml@^1.0.8"
5151
}
5252
}

streams/deno.json

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

testing/deno.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@std/testing",
3-
"version": "1.0.13",
3+
"version": "1.0.14",
44
"exports": {
55
"./bdd": "./bdd.ts",
66
"./mock": "./mock.ts",

toml/deno.json

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

uuid/deno.json

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

yaml/deno.json

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

0 commit comments

Comments
 (0)