Skip to content

Commit 93d103f

Browse files
denobotkt3k
andauthored
chore: release 2025.07.01 (#6749)
Co-authored-by: kt3k <[email protected]>
1 parent 003aaaf commit 93d103f

File tree

9 files changed

+43
-14
lines changed

9 files changed

+43
-14
lines changed

Releases.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,32 @@
1+
### 2025.07.01
2+
3+
#### @std/collections 1.1.2 (patch)
4+
5+
- chore(collections): add browser compatibility declaration to `unstable-cycle`
6+
module (#6720)
7+
8+
#### @std/fs 1.0.19 (patch)
9+
10+
- fix(fs,internal,path): unify `isWindows` implementations (#6744)
11+
12+
#### @std/http 1.0.19 (patch)
13+
14+
- perf(http): increase performance of HTML rendering (#6727)
15+
16+
#### @std/internal 1.0.9 (patch)
17+
18+
- fix(fs,internal,path): unify `isWindows` implementations (#6744)
19+
20+
#### @std/path 1.1.1 (patch)
21+
22+
- fix(fs,internal,path): unify `isWindows` implementations (#6744)
23+
24+
#### @std/text 1.0.15 (patch)
25+
26+
- feat(text/unstable): add `longestCommonPrefix` (#6734)
27+
- feat(text/unstable): add `toTitleCase()` and `toSentenceCase()` (#6701)
28+
- fix(text/unstable): `dedent()` correct blank line handling (#6738)
29+
130
### 2025.06.12
231

332
#### @std/cli 1.0.20 (patch)

assert/object_match.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ function filter(a: Loose, b: Loose): Loose {
9595
}
9696

9797
for (const [key, value] of entries) {
98-
// On regexp references, keep value as it to avoid loosing pattern and flags
98+
// On regexp references, keep value as it to avoid losing pattern and flags
9999
if (value instanceof RegExp) {
100100
defineProperty(filtered, key, value);
101101
continue;
@@ -165,7 +165,7 @@ function filter(a: Loose, b: Loose): Loose {
165165
const value = a[i];
166166
const subset = b[i];
167167

168-
// On regexp references, keep value as it to avoid loosing pattern and flags
168+
// On regexp references, keep value as it to avoid losing pattern and flags
169169
if (value instanceof RegExp) {
170170
filtered.push(value);
171171
continue;

collections/deno.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@std/collections",
3-
"version": "1.1.1",
3+
"version": "1.1.2",
44
"exports": {
55
".": "./mod.ts",
66
"./aggregate-groups": "./aggregate_groups.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.18",
3+
"version": "1.0.19",
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.18",
3+
"version": "1.0.19",
44
"exports": {
55
".": "./mod.ts",
66
"./cookie": "./cookie.ts",

import_map.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"@std/cache": "jsr:@std/cache@^0.2.0",
1414
"@std/cbor": "jsr:@std/cbor@^0.1.8",
1515
"@std/cli": "jsr:@std/cli@^1.0.20",
16-
"@std/collections": "jsr:@std/collections@^1.1.1",
16+
"@std/collections": "jsr:@std/collections@^1.1.2",
1717
"@std/crypto": "jsr:@std/crypto@^1.0.5",
1818
"@std/csv": "jsr:@std/csv@^1.0.6",
1919
"@std/data-structures": "jsr:@std/data-structures@^1.0.8",
@@ -23,26 +23,26 @@
2323
"@std/expect": "jsr:@std/expect@^1.0.16",
2424
"@std/fmt": "jsr:@std/fmt@^1.0.8",
2525
"@std/front-matter": "jsr:@std/front-matter@^1.0.9",
26-
"@std/fs": "jsr:@std/fs@^1.0.18",
26+
"@std/fs": "jsr:@std/fs@^1.0.19",
2727
"@std/html": "jsr:@std/html@^1.0.4",
28-
"@std/http": "jsr:@std/http@^1.0.18",
28+
"@std/http": "jsr:@std/http@^1.0.19",
2929
"@std/ini": "jsr:@std/ini@^1.0.0-rc.8",
30-
"@std/internal": "jsr:@std/internal@^1.0.8",
30+
"@std/internal": "jsr:@std/internal@^1.0.9",
3131
"@std/io": "jsr:@std/io@^0.225.2",
3232
"@std/json": "jsr:@std/json@^1.0.2",
3333
"@std/jsonc": "jsr:@std/jsonc@^1.0.2",
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",
3737
"@std/net": "jsr:@std/net@^1.0.4",
38-
"@std/path": "jsr:@std/path@^1.1.0",
38+
"@std/path": "jsr:@std/path@^1.1.1",
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",
4242
"@std/streams": "jsr:@std/streams@^1.0.10",
4343
"@std/tar": "jsr:@std/tar@^0.1.6",
4444
"@std/testing": "jsr:@std/testing@^1.0.14",
45-
"@std/text": "jsr:@std/text@^1.0.14",
45+
"@std/text": "jsr:@std/text@^1.0.15",
4646
"@std/toml": "jsr:@std/toml@^1.0.8",
4747
"@std/ulid": "jsr:@std/ulid@^1.0.0",
4848
"@std/uuid": "jsr:@std/uuid@^1.0.9",

internal/deno.json

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

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.0",
3+
"version": "1.1.1",
44
"exports": {
55
".": "./mod.ts",
66
"./basename": "./basename.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.14",
3+
"version": "1.0.15",
44
"exports": {
55
".": "./mod.ts",
66
"./closest-string": "./closest_string.ts",

0 commit comments

Comments
 (0)