Skip to content

Commit 033e770

Browse files
denobotkt3k
andauthored
chore: release 2025.03.04 (#6460)
Co-authored-by: kt3k <[email protected]>
1 parent e9b8e0b commit 033e770

File tree

10 files changed

+68
-16
lines changed

10 files changed

+68
-16
lines changed

Releases.md

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,55 @@
1+
### 2025.03.04
2+
3+
#### @std/async 1.0.11 (patch)
4+
5+
- test(async/unstable): add `retry()` tests (#6423)
6+
- test(async): fix flaky `pooledMap()` test (#6412)
7+
- test(async/unstable): fix flaky `waitFor()` test (#6413)
8+
9+
#### @std/cli 1.0.14 (patch)
10+
11+
- fix(cli/unstable): update interval in ProgressBar (#6402)
12+
- refactor(cli/unstable): clean up `start` end `stop` methods of `Spinner`, add
13+
test cases for multiple start/stop calls (#6420)
14+
- test(cli): fix flaky spinner test (#6404)
15+
- test(cli/unstable): make `ProgressBar` tests run faster (#6411)
16+
17+
#### @std/fmt 1.0.6 (patch)
18+
19+
- docs(fmt): fix `printf` module doc (#6424)
20+
21+
#### @std/front-matter 1.0.8 (patch)
22+
23+
- perf(front-matter): remove regexp `m` flags, reduce unnecessary string
24+
operations (#6393)
25+
- refactor(front-matter): cleanup `_shared.ts` (#6418)
26+
27+
#### @std/fs 1.0.14 (patch)
28+
29+
- feat(fs/unstable): add `remove` and `removeSync` api. (#6438)
30+
- feat(fs/unstable): add umask (#6454)
31+
- feat(fs/unstable): add utime and utimeSync (#6446)
32+
- feat(fs/unstable): add mkdir and mkdirSync (#6436)
33+
- feat(fs/unstable): add `copyFile` and `copyFileSync` (#6425)
34+
- feat(fs/unstable): add truncate and truncateSync (#6416)
35+
- feat(fs/unstable): add readTextFileSync and readTextFile (#6405)
36+
- fix(fs/unstable): fix node.js test runner, fix readTextFile and copyFile in
37+
Node.js (#6441)
38+
- test(fs/unstable): remove windows specific paths and fix ci (#6448)
39+
- test(fs/unstable): add test case for reading text file with BOM (#6431)
40+
41+
#### @std/tar 0.1.6 (patch)
42+
43+
- BREAKING(tar/unstable): fix handling of mode, uid, and gid (#6440)
44+
45+
#### @std/text 1.0.11 (patch)
46+
47+
- feat(text/unstable): add `reverse` function (#6410)
48+
49+
#### @std/uuid 1.0.5 (patch)
50+
51+
- fix(uuid): handle `rng` correctly in uuid v1 (#6432)
52+
153
### 2025.02.14a
254

355
#### @std/front-matter 1.0.7 (patch)

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.10",
3+
"version": "1.0.11",
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.13",
3+
"version": "1.0.14",
44
"exports": {
55
".": "./mod.ts",
66
"./parse-args": "./parse_args.ts",

fmt/deno.json

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

front_matter/deno.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@std/front-matter",
3-
"version": "1.0.7",
3+
"version": "1.0.8",
44
"exports": {
55
".": "./mod.ts",
66
"./any": "./any.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.13",
3+
"version": "1.0.14",
44
"exports": {
55
".": "./mod.ts",
66
"./copy": "./copy.ts",

import_map.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@
77
"graphviz": "npm:node-graphviz@^0.1.1",
88

99
"@std/assert": "jsr:@std/assert@^1.0.11",
10-
"@std/async": "jsr:@std/async@^1.0.10",
10+
"@std/async": "jsr:@std/async@^1.0.11",
1111
"@std/bytes": "jsr:@std/bytes@^1.0.5",
1212
"@std/cache": "jsr:@std/cache@^0.1.3",
1313
"@std/cbor": "jsr:@std/cbor@^0.1.6",
14-
"@std/cli": "jsr:@std/cli@^1.0.13",
14+
"@std/cli": "jsr:@std/cli@^1.0.14",
1515
"@std/collections": "jsr:@std/collections@^1.0.10",
1616
"@std/crypto": "jsr:@std/crypto@^1.0.4",
1717
"@std/csv": "jsr:@std/csv@^1.0.5",
@@ -20,9 +20,9 @@
2020
"@std/dotenv": "jsr:@std/dotenv@^0.225.3",
2121
"@std/encoding": "jsr:@std/encoding@^1.0.7",
2222
"@std/expect": "jsr:@std/expect@^1.0.13",
23-
"@std/fmt": "jsr:@std/fmt@^1.0.5",
24-
"@std/front-matter": "jsr:@std/front-matter@^1.0.7",
25-
"@std/fs": "jsr:@std/fs@^1.0.13",
23+
"@std/fmt": "jsr:@std/fmt@^1.0.6",
24+
"@std/front-matter": "jsr:@std/front-matter@^1.0.8",
25+
"@std/fs": "jsr:@std/fs@^1.0.14",
2626
"@std/html": "jsr:@std/html@^1.0.3",
2727
"@std/http": "jsr:@std/http@^1.0.13",
2828
"@std/ini": "jsr:@std/ini@^1.0.0-rc.5",
@@ -39,12 +39,12 @@
3939
"@std/random": "jsr:@std/random@^0.1.0",
4040
"@std/semver": "jsr:@std/semver@^1.0.4",
4141
"@std/streams": "jsr:@std/streams@^1.0.9",
42-
"@std/tar": "jsr:@std/tar@^0.1.5",
42+
"@std/tar": "jsr:@std/tar@^0.1.6",
4343
"@std/testing": "jsr:@std/testing@^1.0.9",
44-
"@std/text": "jsr:@std/text@^1.0.10",
44+
"@std/text": "jsr:@std/text@^1.0.11",
4545
"@std/toml": "jsr:@std/toml@^1.0.2",
4646
"@std/ulid": "jsr:@std/ulid@^1.0.0",
47-
"@std/uuid": "jsr:@std/uuid@^1.0.4",
47+
"@std/uuid": "jsr:@std/uuid@^1.0.5",
4848
"@std/webgpu": "jsr:@std/webgpu@^0.224.7",
4949
"@std/yaml": "jsr:@std/yaml@^1.0.5"
5050
}

tar/deno.json

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

text/deno.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@std/text",
3-
"version": "1.0.10",
3+
"version": "1.0.11",
44
"exports": {
55
".": "./mod.ts",
66
"./closest-string": "./closest_string.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.4",
3+
"version": "1.0.5",
44
"exports": {
55
".": "./mod.ts",
66
"./common": "./common.ts",

0 commit comments

Comments
 (0)