Skip to content

Commit e932f30

Browse files
denobotkt3k
andauthored
chore: release 2025.05.13 (#6650)
Co-authored-by: kt3k <[email protected]>
1 parent 5775e21 commit e932f30

File tree

15 files changed

+90
-26
lines changed

15 files changed

+90
-26
lines changed

Releases.md

Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,67 @@
1+
### 2025.05.13
2+
3+
#### @std/async 1.0.13 (patch)
4+
5+
- fix(async): `abortable` should prevent uncaught error when promise is rejected
6+
(#6312)
7+
8+
#### @std/bytes 1.0.6 (patch)
9+
10+
- fix(bytes): allow to concat() readonly arrays of bytes arrays (#6639)
11+
12+
#### @std/collections 1.1.0 (minor)
13+
14+
- feat(collections): stabilize `Iterable` input for `chunk`, `dropLastWhile`,
15+
`dropWhile`, `intersect`, `sample`, `slidingWindows`, `sortBy`,
16+
`takeLastWhile`, `takeWhile`, and `withoutAll` (#6644)
17+
- feat(collections/unstable): add cycle iterator utility (#6386)
18+
19+
#### @std/crypto 1.0.5 (patch)
20+
21+
- chore(crypto): update `crypto/_wasm` and `wasmbuild` task (#6611)
22+
23+
#### @std/data-structures 1.0.8 (patch)
24+
25+
- feat(data-structures/unstable): add `BinarySearchTree` methods `ceiling`,
26+
`floor`, `higher`, `lower` (#6544)
27+
28+
#### @std/dotenv 0.225.4 (patch)
29+
30+
- feat(dotenv): add URL as envPath type (#6621)
31+
32+
#### @std/expect 1.0.16 (patch)
33+
34+
- fix(expect,testing,internal): throw if `expect.hasAssertion` and
35+
`expect.assertions` are not checked (#6646)
36+
37+
#### @std/fmt 1.0.8 (patch)
38+
39+
- docs(fmt): clarify runtime compatibility (#6648)
40+
41+
#### @std/html 1.0.4 (patch)
42+
43+
- fix(html/unstable): add missing range
44+
(`unstable_is_valid_custom_element_name`) (#6634)
45+
46+
#### @std/http 1.0.16 (patch)
47+
48+
- fix(http): don't set the Date header in file_server.ts responses (use the
49+
default Date header value) (#6610)
50+
51+
#### @std/internal 1.0.7 (patch)
52+
53+
- fix(expect,testing,internal): throw if `expect.hasAssertion` and
54+
`expect.assertions` are not checked (#6646)
55+
56+
#### @std/testing 1.0.12 (patch)
57+
58+
- fix(expect,testing,internal): throw if `expect.hasAssertion` and
59+
`expect.assertions` are not checked (#6646)
60+
61+
#### @std/toml 1.0.6 (patch)
62+
63+
- fix(toml): should use lowercase value for nan (#6638)
64+
165
### 2025.04.24
266

367
#### @std/assert 1.0.13 (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.12",
3+
"version": "1.0.13",
44
"exports": {
55
".": "./mod.ts",
66
"./abortable": "./abortable.ts",

bytes/deno.json

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

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.0.11",
3+
"version": "1.1.0",
44
"exports": {
55
".": "./mod.ts",
66
"./aggregate-groups": "./aggregate_groups.ts",

crypto/deno.json

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

data_structures/deno.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@std/data-structures",
3-
"version": "1.0.7",
3+
"version": "1.0.8",
44
"exports": {
55
".": "./mod.ts",
66
"./unstable-bidirectional-map": "./unstable_bidirectional_map.ts",

dotenv/deno.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@std/dotenv",
3-
"version": "0.225.3",
3+
"version": "0.225.4",
44
"exports": {
55
".": "./mod.ts",
66
"./load": "./load.ts",

expect/deno.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@std/expect",
3-
"version": "1.0.15",
3+
"version": "1.0.16",
44
"exports": {
55
".": "./mod.ts",
66
"./expect": "./expect.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.7",
3+
"version": "1.0.8",
44
"exports": {
55
"./bytes": "./bytes.ts",
66
"./colors": "./colors.ts",

html/deno.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@std/html",
3-
"version": "1.0.3",
3+
"version": "1.0.4",
44
"exports": {
55
".": "./mod.ts",
66
"./entities": "./entities.ts",

0 commit comments

Comments
 (0)