Skip to content

Commit 7cf700f

Browse files
denobotkt3k
andauthored
chore: release 2025.09.04 (#6811)
Co-authored-by: kt3k <[email protected]>
1 parent 08061ad commit 7cf700f

File tree

10 files changed

+51
-12
lines changed

10 files changed

+51
-12
lines changed

Releases.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
### 2025.09.04
2+
3+
#### @std/cli 1.0.22 (patch)
4+
5+
- fix(cli/unstable): update typing of ProgressBarStream for TS 5.9 (#6811)
6+
7+
#### @std/net 1.0.6 (patch)
8+
9+
- feat(net/unstable): add matchSubnets on @std/net (#6786)
10+
11+
#### @std/streams 1.0.12 (patch)
12+
13+
- deprecation(streams/unstable): AbortStream (#6799)
14+
15+
#### @std/tar 0.1.8 (patch)
16+
17+
- refactor(tar): clean up TarStream (#6783)
18+
- test(tar): improve TarStream's tests (#6793)
19+
20+
#### @std/toml 1.0.10 (patch)
21+
22+
- fix(toml): nested table arrays (#6794)
23+
124
### 2025.08.13
225

326
#### @std/assert 1.0.14 (patch)

_tools/check_mod_exports.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { walk } from "../fs/walk.ts";
55
import { relative } from "../path/relative.ts";
66
import { dirname } from "../path/dirname.ts";
77
import * as colors from "../fmt/colors.ts";
8-
import ts from "npm:typescript";
8+
import ts from "npm:typescript@5.8.3";
99
import { getEntrypoints } from "./utils.ts";
1010
import { fromFileUrl } from "@std/path/from-file-url";
1111

cli/_types.ts

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
// Copyright 2018-2025 the Deno authors. MIT license.
2+
3+
/**
4+
* Proxy type of {@code Uint8Array<ArrayBuffer} or {@code Uint8Array} in TypeScript 5.7 or below respectively.
5+
*
6+
* This type is internal utility type and should not be used directly.
7+
*
8+
* @internal @private
9+
*/
10+
11+
export type Uint8Array_ = ReturnType<Uint8Array["slice"]>;

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

cli/unstable_progress_bar_stream.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ import {
55
type ProgressBarOptions,
66
} from "./unstable_progress_bar.ts";
77

8+
import type { Uint8Array_ } from "./_types.ts";
9+
10+
export type { Uint8Array_ };
11+
812
/**
913
* `ProgressBarStream` is a {@link TransformStream} class that reports updates
1014
* to a separate {@link WritableStream} on a 1s interval.
@@ -25,7 +29,8 @@ import {
2529
* await readable?.pipeTo((await Deno.create("./_tmp/example.com.html")).writable);
2630
* ```
2731
*/
28-
export class ProgressBarStream extends TransformStream<Uint8Array, Uint8Array> {
32+
export class ProgressBarStream
33+
extends TransformStream<Uint8Array_, Uint8Array_> {
2934
/**
3035
* Constructs a new instance.
3136
*

import_map.json

Lines changed: 5 additions & 5 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.21",
15+
"@std/cli": "jsr:@std/cli@^1.0.22",
1616
"@std/collections": "jsr:@std/collections@^1.1.3",
1717
"@std/crypto": "jsr:@std/crypto@^1.0.5",
1818
"@std/csv": "jsr:@std/csv@^1.0.6",
@@ -34,16 +34,16 @@
3434
"@std/log": "jsr:@std/log@^0.224.14",
3535
"@std/media-types": "jsr:@std/media-types@^1.1.0",
3636
"@std/msgpack": "jsr:@std/msgpack@^1.0.3",
37-
"@std/net": "jsr:@std/net@^1.0.5",
37+
"@std/net": "jsr:@std/net@^1.0.6",
3838
"@std/path": "jsr:@std/path@^1.1.2",
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.11",
43-
"@std/tar": "jsr:@std/tar@^0.1.7",
42+
"@std/streams": "jsr:@std/streams@^1.0.12",
43+
"@std/tar": "jsr:@std/tar@^0.1.8",
4444
"@std/testing": "jsr:@std/testing@^1.0.15",
4545
"@std/text": "jsr:@std/text@^1.0.16",
46-
"@std/toml": "jsr:@std/toml@^1.0.9",
46+
"@std/toml": "jsr:@std/toml@^1.0.10",
4747
"@std/ulid": "jsr:@std/ulid@^1.0.0",
4848
"@std/uuid": "jsr:@std/uuid@^1.0.9",
4949
"@std/webgpu": "jsr:@std/webgpu@^0.224.8",

net/deno.json

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

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.11",
3+
"version": "1.0.12",
44
"exports": {
55
".": "./mod.ts",
66
"./unstable-abort-stream": "./unstable_abort_stream.ts",

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.7",
3+
"version": "0.1.8",
44
"exports": {
55
".": "./mod.ts",
66
"./tar-stream": "./tar_stream.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.9",
3+
"version": "1.0.10",
44
"exports": {
55
".": "./mod.ts",
66
"./parse": "./parse.ts",

0 commit comments

Comments
 (0)