Skip to content

Commit bf393b7

Browse files
denobotkt3k
andauthored
chore: release 2025.03.25 (#6510)
Co-authored-by: kt3k <[email protected]>
1 parent 99ac295 commit bf393b7

File tree

18 files changed

+136
-32
lines changed

18 files changed

+136
-32
lines changed

Releases.md

Lines changed: 104 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,107 @@
1+
### 2025.03.25
2+
3+
#### @std/assert 1.0.12 (patch)
4+
5+
- fix(assert,expect,internal,testing): improve handling of escaped chars in
6+
diff_str (#6485)
7+
8+
#### @std/async 1.0.12 (patch)
9+
10+
- test(async): fix flaky waitFor test (#6467)
11+
- test(async): use FakeTime in pooledMap testing (#6468)
12+
13+
#### @std/cache 0.2.0 (minor)
14+
15+
- BREAKING(cache/unstable): configurable cache ejection of thrown or rejected
16+
values, change cache type (#6417) (#6419)
17+
18+
#### @std/cbor 0.1.7 (patch)
19+
20+
- feat(cbor): add support for bignums (#6458)
21+
- fix(cbor): bug in preallocating space for string encoding (#6459)
22+
23+
#### @std/cli 1.0.15 (patch)
24+
25+
- BREAKING(cli/unstable): remove trailing whitespaces from
26+
`ProgressBarFormatter` properties (#6502)
27+
- refactor(cli/unstable): make `ProgressBar.#print()` better readable (#6503)
28+
- refactor(cli/unstable): replace `ProgressBar` `#options` property with actual
29+
properties (#6497)
30+
31+
#### @std/encoding 1.0.8 (patch)
32+
33+
- BREAKING(encoding/unstable): merge Base32Hex(Encoder|Decoder)Stream to
34+
Base32(Encoder|Decoder)Stream (#6452)
35+
- BREAKING(encoding/unstable): merge base32 variations, add format option to
36+
encodeBase32 and decodeBase32 (#6471)
37+
- BREAKING(encoding/unstable): merge Base64Url(Encoder|Decoder)Stream to
38+
Base64(Encoder|Decoder)Stream (#6451)
39+
- feat(encoding/unstable): add options argument to hex streaming & performance
40+
(#6453)
41+
- feat(encoding/unstable): add encode/decodeRawHex and rewrite underlying code
42+
(#6480)
43+
- feat(encoding/unstable): add format option to encodeBase64 and decodeBase64
44+
(#6457)
45+
- fix(encoding): decoding base64 with invalid bytes >= 128 (#6477)
46+
- fix(encoding/unstable): encodeBase32 missing default option for format (#6476)
47+
- perf(encoding): improve hex encode/decode performance (#6499)
48+
- perf(encoding): improve base32 encode/decode performance (#6479)
49+
- perf(encoding): improve base64 encode/decode performance (#6461)
50+
- refactor(encoding): align error messages (#6504)
51+
- chore(encoding): extract streaming textEncoder/Decoder (#6505)
52+
- chore(encoding): remove reductant JSDoc in base64 stream (#6478)
53+
54+
#### @std/expect 1.0.14 (patch)
55+
56+
- fix(assert,expect,internal,testing): improve handling of escaped chars in
57+
diff_str (#6485)
58+
59+
#### @std/front-matter 1.0.9 (patch)
60+
61+
- fix(front-matter): handle BOM when recognizing format (#6507)
62+
- fix(front-matter): handle empty frontMatter data (#6481)
63+
- refactor(front-matter): inline `recognize()` (#6466)
64+
- test(front-matter): simplify asserts (#6475)
65+
- test(front-matter): remove double tests in `any_test.ts` (#6474)
66+
- test(front-matter): inline test data (#6465)
67+
68+
#### @std/fs 1.0.15 (patch)
69+
70+
- feat(fs/unstable): add makeTempFile and makeTempFileSync (#6469)
71+
- feat(fs/unstable): add writeTextFile and writeTextFileSync (#6463)
72+
- feat(fs/unstable): add writeFile and writeFileSync (#6444)
73+
74+
#### @std/ini 1.0.0-rc.6 (prerelease)
75+
76+
- refactor(ini): limit INI value type to possible allowed INI values. (#6495)
77+
78+
#### @std/internal 1.0.6 (patch)
79+
80+
- fix(assert,expect,internal,testing): improve handling of escaped chars in
81+
diff_str (#6485)
82+
83+
#### @std/testing 1.0.10 (patch)
84+
85+
- fix(assert,expect,internal,testing): improve handling of escaped chars in
86+
diff_str (#6485)
87+
88+
#### @std/text 1.0.12 (patch)
89+
90+
- feat(text/unstable): add dedent (#6500)
91+
92+
#### @std/toml 1.0.3 (patch)
93+
94+
- fix(toml): handle hexadecimal, octal, and binary numbers (#6496)
95+
- test(toml): inline test data (#6473)
96+
97+
#### @std/uuid 1.0.6 (patch)
98+
99+
- feat(uuid/unstable): implement support for UUID V6 (#6415)
100+
101+
#### @std/webgpu 0.224.8 (patch)
102+
103+
- chore(webgpu): ignore createTextureWithData() test case on windows (#6493)
104+
1105
### 2025.03.04
2106

3107
#### @std/async 1.0.11 (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.11",
3+
"version": "1.0.12",
44
"exports": {
55
".": "./mod.ts",
66
"./assert": "./assert.ts",

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.11",
3+
"version": "1.0.12",
44
"exports": {
55
".": "./mod.ts",
66
"./abortable": "./abortable.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.1.3",
3+
"version": "0.2.0",
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.6",
3+
"version": "0.1.7",
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.14",
3+
"version": "1.0.15",
44
"exports": {
55
".": "./mod.ts",
66
"./parse-args": "./parse_args.ts",

encoding/deno.json

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

front_matter/deno.json

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

0 commit comments

Comments
 (0)