Skip to content

Commit e8e47da

Browse files
denobotkt3k
andauthored
chore: release 2025.11.17 (#6872)
Co-authored-by: kt3k <kt3k@users.noreply.github.com>
1 parent 47b57f1 commit e8e47da

File tree

12 files changed

+75
-20
lines changed

12 files changed

+75
-20
lines changed

Releases.md

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,58 @@
1+
### 2025.11.17
2+
3+
#### @std/assert 1.0.16 (patch)
4+
5+
- fix(assert,streams): handle SharedArrayBuffer being disabled in some browser
6+
context (#6856)
7+
8+
#### @std/cache 0.2.1 (patch)
9+
10+
- feat(cache): add cleanup callback to `LruCache` and `TtlCache` (#6857)
11+
12+
#### @std/cbor 0.1.9 (patch)
13+
14+
- docs(cbor): remove h2 and change spelling from UK -> US (#6847)
15+
16+
#### @std/cli 1.0.24 (patch)
17+
18+
- feat(cli/unstable): custom progress bar refresh interval (#6862)
19+
- fix(cli/unstable): typo in ProgressBar example (#6848)
20+
21+
#### @std/fs 1.0.20 (patch)
22+
23+
- fix(fs): "Deno is not defined" when using the module in browser (#6868)
24+
- fix(fs): `expandGlob`/`expandGlobSync` - match non-glob path segments
25+
containing escaped glob chars (#6788)
26+
- fix(fs,path): `expandGlob`, `expandGlobSync`, and `isGlob` match
27+
`@(alternate)` syntax with only one member (#6850)
28+
29+
#### @std/http 1.0.22 (patch)
30+
31+
- feat(http/unstable): add support for extra headers in serveFile (#6842)
32+
- fix(http): runtime types for `getCookies` (#6853)
33+
34+
#### @std/math 0.0.0 (patch)
35+
36+
- feat(math/unstable): add `math` package with basic math utilities (#6823)
37+
38+
#### @std/path 1.1.3 (patch)
39+
40+
- fix(fs,path): `expandGlob`, `expandGlobSync`, and `isGlob` match
41+
`@(alternate)` syntax with only one member (#6850)
42+
43+
#### @std/random 0.1.4 (patch)
44+
45+
- docs(random): use PRNG initialization with secure random seed (#6855)
46+
47+
#### @std/semver 1.0.7 (patch)
48+
49+
- refactor(semver): reduce nesting in `testComparatorSet()` (#6866)
50+
51+
#### @std/streams 1.0.14 (patch)
52+
53+
- fix(assert,streams): handle SharedArrayBuffer being disabled in some browser
54+
context (#6856)
55+
156
### 2025.10.07a
257

358
#### @std/internal 1.0.12 (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.15",
3+
"version": "1.0.16",
44
"exports": {
55
".": "./mod.ts",
66
"./assert": "./assert.ts",

cache/deno.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@std/cache",
3-
"version": "0.2.0",
3+
"version": "0.2.1",
44
"exports": {
55
".": "./mod.ts",
66
"./lru-cache": "./lru_cache.ts",

cbor/deno.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@std/cbor",
3-
"version": "0.1.8",
3+
"version": "0.1.9",
44
"exports": {
55
".": "./mod.ts",
66
"./array-encoder-stream": "./array_encoder_stream.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.23",
3+
"version": "1.0.24",
44
"exports": {
55
".": "./mod.ts",
66
"./parse-args": "./parse_args.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.19",
3+
"version": "1.0.20",
44
"exports": {
55
".": "./mod.ts",
66
"./copy": "./copy.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.21",
3+
"version": "1.0.22",
44
"exports": {
55
".": "./mod.ts",
66
"./cookie": "./cookie.ts",

import_map.json

Lines changed: 10 additions & 10 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.15",
9+
"@std/assert": "jsr:@std/assert@^1.0.16",
1010
"@std/async": "jsr:@std/async@^1.0.15",
1111
"@std/bytes": "jsr:@std/bytes@^1.0.6",
12-
"@std/cache": "jsr:@std/cache@^0.2.0",
13-
"@std/cbor": "jsr:@std/cbor@^0.1.8",
14-
"@std/cli": "jsr:@std/cli@^1.0.23",
12+
"@std/cache": "jsr:@std/cache@^0.2.1",
13+
"@std/cbor": "jsr:@std/cbor@^0.1.9",
14+
"@std/cli": "jsr:@std/cli@^1.0.24",
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",
@@ -22,9 +22,9 @@
2222
"@std/expect": "jsr:@std/expect@^1.0.17",
2323
"@std/fmt": "jsr:@std/fmt@^1.0.8",
2424
"@std/front-matter": "jsr:@std/front-matter@^1.0.9",
25-
"@std/fs": "jsr:@std/fs@^1.0.19",
25+
"@std/fs": "jsr:@std/fs@^1.0.20",
2626
"@std/html": "jsr:@std/html@^1.0.5",
27-
"@std/http": "jsr:@std/http@^1.0.21",
27+
"@std/http": "jsr:@std/http@^1.0.22",
2828
"@std/ini": "jsr:@std/ini@^1.0.0-rc.8",
2929
"@std/internal": "jsr:@std/internal@^1.0.12",
3030
"@std/io": "jsr:@std/io@^0.225.2",
@@ -34,11 +34,11 @@
3434
"@std/media-types": "jsr:@std/media-types@^1.1.0",
3535
"@std/msgpack": "jsr:@std/msgpack@^1.0.3",
3636
"@std/net": "jsr:@std/net@^1.0.6",
37-
"@std/path": "jsr:@std/path@^1.1.2",
37+
"@std/path": "jsr:@std/path@^1.1.3",
3838
"@std/regexp": "jsr:@std/regexp@^1.0.1",
39-
"@std/random": "jsr:@std/random@^0.1.3",
40-
"@std/semver": "jsr:@std/semver@^1.0.6",
41-
"@std/streams": "jsr:@std/streams@^1.0.13",
39+
"@std/random": "jsr:@std/random@^0.1.4",
40+
"@std/semver": "jsr:@std/semver@^1.0.7",
41+
"@std/streams": "jsr:@std/streams@^1.0.14",
4242
"@std/tar": "jsr:@std/tar@^0.1.9",
4343
"@std/testing": "jsr:@std/testing@^1.0.16",
4444
"@std/text": "jsr:@std/text@^1.0.16",

path/deno.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@std/path",
3-
"version": "1.1.2",
3+
"version": "1.1.3",
44
"exports": {
55
".": "./mod.ts",
66
"./basename": "./basename.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.3",
3+
"version": "0.1.4",
44
"exports": {
55
".": "./mod.ts",
66
"./between": "./between.ts",

0 commit comments

Comments
 (0)