Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions Releases.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,26 @@
### 2025.09.04

#### @std/cli 1.0.22 (patch)

- fix(cli/unstable): update typing of ProgressBarStream for TS 5.9 (#6811)

#### @std/net 1.0.6 (patch)

- feat(net/unstable): add matchSubnets on @std/net (#6786)

#### @std/streams 1.0.12 (patch)

- deprecation(streams/unstable): AbortStream (#6799)

#### @std/tar 0.1.8 (patch)

- refactor(tar): clean up TarStream (#6783)
- test(tar): improve TarStream's tests (#6793)

#### @std/toml 1.0.10 (patch)

- fix(toml): nested table arrays (#6794)

### 2025.08.13

#### @std/assert 1.0.14 (patch)
Expand Down
2 changes: 1 addition & 1 deletion _tools/check_mod_exports.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { walk } from "../fs/walk.ts";
import { relative } from "../path/relative.ts";
import { dirname } from "../path/dirname.ts";
import * as colors from "../fmt/colors.ts";
import ts from "npm:typescript";
import ts from "npm:typescript@5.8.3";
import { getEntrypoints } from "./utils.ts";
import { fromFileUrl } from "@std/path/from-file-url";

Expand Down
11 changes: 11 additions & 0 deletions cli/_types.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
// Copyright 2018-2025 the Deno authors. MIT license.

/**
* Proxy type of {@code Uint8Array<ArrayBuffer} or {@code Uint8Array} in TypeScript 5.7 or below respectively.
*
* This type is internal utility type and should not be used directly.
*
* @internal @private
*/

export type Uint8Array_ = ReturnType<Uint8Array["slice"]>;
2 changes: 1 addition & 1 deletion cli/deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@std/cli",
"version": "1.0.21",
"version": "1.0.22",
"exports": {
".": "./mod.ts",
"./parse-args": "./parse_args.ts",
Expand Down
7 changes: 6 additions & 1 deletion cli/unstable_progress_bar_stream.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ import {
type ProgressBarOptions,
} from "./unstable_progress_bar.ts";

import type { Uint8Array_ } from "./_types.ts";

export type { Uint8Array_ };

/**
* `ProgressBarStream` is a {@link TransformStream} class that reports updates
* to a separate {@link WritableStream} on a 1s interval.
Expand All @@ -25,7 +29,8 @@ import {
* await readable?.pipeTo((await Deno.create("./_tmp/example.com.html")).writable);
* ```
*/
export class ProgressBarStream extends TransformStream<Uint8Array, Uint8Array> {
export class ProgressBarStream
extends TransformStream<Uint8Array_, Uint8Array_> {
/**
* Constructs a new instance.
*
Expand Down
10 changes: 5 additions & 5 deletions import_map.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"@std/bytes": "jsr:@std/bytes@^1.0.6",
"@std/cache": "jsr:@std/cache@^0.2.0",
"@std/cbor": "jsr:@std/cbor@^0.1.8",
"@std/cli": "jsr:@std/cli@^1.0.21",
"@std/cli": "jsr:@std/cli@^1.0.22",
"@std/collections": "jsr:@std/collections@^1.1.3",
"@std/crypto": "jsr:@std/crypto@^1.0.5",
"@std/csv": "jsr:@std/csv@^1.0.6",
Expand All @@ -34,16 +34,16 @@
"@std/log": "jsr:@std/log@^0.224.14",
"@std/media-types": "jsr:@std/media-types@^1.1.0",
"@std/msgpack": "jsr:@std/msgpack@^1.0.3",
"@std/net": "jsr:@std/net@^1.0.5",
"@std/net": "jsr:@std/net@^1.0.6",
"@std/path": "jsr:@std/path@^1.1.2",
"@std/regexp": "jsr:@std/regexp@^1.0.1",
"@std/random": "jsr:@std/random@^0.1.2",
"@std/semver": "jsr:@std/semver@^1.0.5",
"@std/streams": "jsr:@std/streams@^1.0.11",
"@std/tar": "jsr:@std/tar@^0.1.7",
"@std/streams": "jsr:@std/streams@^1.0.12",
"@std/tar": "jsr:@std/tar@^0.1.8",
"@std/testing": "jsr:@std/testing@^1.0.15",
"@std/text": "jsr:@std/text@^1.0.16",
"@std/toml": "jsr:@std/toml@^1.0.9",
"@std/toml": "jsr:@std/toml@^1.0.10",
"@std/ulid": "jsr:@std/ulid@^1.0.0",
"@std/uuid": "jsr:@std/uuid@^1.0.9",
"@std/webgpu": "jsr:@std/webgpu@^0.224.8",
Expand Down
2 changes: 1 addition & 1 deletion net/deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@std/net",
"version": "1.0.5",
"version": "1.0.6",
"exports": {
".": "./mod.ts",
"./get-available-port": "./get_available_port.ts",
Expand Down
2 changes: 1 addition & 1 deletion streams/deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@std/streams",
"version": "1.0.11",
"version": "1.0.12",
"exports": {
".": "./mod.ts",
"./unstable-abort-stream": "./unstable_abort_stream.ts",
Expand Down
2 changes: 1 addition & 1 deletion tar/deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@std/tar",
"version": "0.1.7",
"version": "0.1.8",
"exports": {
".": "./mod.ts",
"./tar-stream": "./tar_stream.ts",
Expand Down
2 changes: 1 addition & 1 deletion toml/deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@std/toml",
"version": "1.0.9",
"version": "1.0.10",
"exports": {
".": "./mod.ts",
"./parse": "./parse.ts",
Expand Down
Loading