Skip to content

Commit 7d1d9cc

Browse files
denobotkt3k
andauthored
chore: release 2024.06.21 (#5107)
Co-authored-by: kt3k <[email protected]>
1 parent adc6072 commit 7d1d9cc

File tree

12 files changed

+113
-20
lines changed

12 files changed

+113
-20
lines changed

Releases.md

Lines changed: 93 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,96 @@
1+
### 2024.06.21
2+
3+
#### @std/archive 0.224.2 (patch)
4+
5+
- refactor(archive,expect,io,log,toml,yaml): remove `private` and `public`
6+
access modifiers (#5077)
7+
8+
#### @std/async 1.0.0-rc.2 (prerelease)
9+
10+
- BREAKING(async): simplify `deadline()` logic, remove `DeadlineError` and
11+
improve errors (#5058)
12+
- BREAKING(async): make `abortablePromise()` and `abortableAsyncIterable()`
13+
private (#5056)
14+
15+
#### @std/cli 1.0.0-rc.1 (prerelease)
16+
17+
- chore(cli): release `[email protected]` (#5068)
18+
- chore(cli): make spinner unstable/experimental (#5067)
19+
20+
#### @std/collections 1.0.0 (major)
21+
22+
- chore(collections): release `[email protected]` (#4773)
23+
24+
#### @std/dotenv 0.224.1 (patch)
25+
26+
- docs(dotenv): improve `dotenv` docs (#5095)
27+
28+
#### @std/expect 0.224.5 (patch)
29+
30+
- refactor(archive,expect,io,log,toml,yaml): remove `private` and `public`
31+
access modifiers (#5077)
32+
33+
#### @std/fs 1.0.0-rc.1 (prerelease)
34+
35+
- refactor(fs): improve `expandGlob()` implementation and testing (#5089)
36+
- refactor(fs): reduce the repetition in `exists.ts` (#5088)
37+
- refactor(fs): reduce the repetition in ensure_dir.ts (#5085)
38+
- refactor(fs): resolve directories when checking whether they are the same in
39+
`isSubdir()` (#5076)
40+
- test(fs): improve `copy()` testing (#5084)
41+
- test(fs): improve `ensureSymlink()` test (#5087)
42+
- test(fs): check `ensureDir()` is not racy (#5086)
43+
- chore(fs): release `[email protected]` (#5091)
44+
45+
#### @std/io 0.224.2 (patch)
46+
47+
- refactor(archive,expect,io,log,toml,yaml): remove `private` and `public`
48+
access modifiers (#5077)
49+
50+
#### @std/json 1.0.0-rc.1 (prerelease)
51+
52+
- BREAKING(json): rename /common to /types (#5103)
53+
- BREAKING(json): remove `writableStrategy` and `readableStrategy` options
54+
(#5097)
55+
- docs(json): lint `@std/json` docs (#4798)
56+
- test(json): improve json testing (#5075)
57+
- chore(json): release `[email protected]` (#5102)
58+
59+
#### @std/jsonc 0.224.3 (patch)
60+
61+
- test(jsonc): remove dead code and improve testing (#5093)
62+
63+
#### @std/log 0.224.3 (patch)
64+
65+
- refactor(archive,expect,io,log,toml,yaml): remove `private` and `public`
66+
access modifiers (#5077)
67+
68+
#### @std/streams 1.0.0-rc.1 (prerelease)
69+
70+
- BREAKING(streams): remove `iterateReader`, `readableStreamFromReader`,
71+
`readerFromIterable`, `readerFromStreamReader`, `writableStreamFromWriter`,
72+
and `writerFromStreamWriter` (#5060)
73+
- fix(streams): prevent `earlyZipReadableStreams()` from possibly using
74+
excessive memory (#5082)
75+
- test(streams): improve test coverage (#5078)
76+
- test(streams): improve `DelimiterStream` test cases (#5070)
77+
- test(streams): improve `Buffer` test (#5061)
78+
- chore(streams): release `[email protected]` (#5074)
79+
80+
#### @std/testing 0.225.3 (patch)
81+
82+
- refactor(testing): remove `FakeTime.start` setter (#5050)
83+
84+
#### @std/toml 1.0.0-rc.2 (prerelease)
85+
86+
- refactor(archive,expect,io,log,toml,yaml): remove `private` and `public`
87+
access modifiers (#5077)
88+
89+
#### @std/yaml 0.224.2 (patch)
90+
91+
- refactor(archive,expect,io,log,toml,yaml): remove `private` and `public`
92+
access modifiers (#5077)
93+
194
### 2024.06.17
295

396
#### @std/async 1.0.0-rc.1 (prerelease)

archive/deno.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@std/archive",
3-
"version": "0.224.1",
3+
"version": "0.224.2",
44
"exports": {
55
".": "./mod.ts",
66
"./tar": "./tar.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.0-rc.1",
3+
"version": "1.0.0-rc.2",
44
"exports": {
55
".": "./mod.ts",
66
"./abortable": "./abortable.ts",

deno.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -12,45 +12,45 @@
1212
"automation/": "https://raw.githubusercontent.com/denoland/automation/0.10.0/",
1313
"graphviz": "npm:node-graphviz@^0.1.1",
1414

15-
"@std/archive": "jsr:@std/archive@^0.224.1",
15+
"@std/archive": "jsr:@std/archive@^0.224.2",
1616
"@std/assert": "jsr:@std/[email protected]",
17-
"@std/async": "jsr:@std/async@^1.0.0-rc.1",
17+
"@std/async": "jsr:@std/async@^1.0.0-rc.2",
1818
"@std/bytes": "jsr:@std/bytes@^1.0.0-rc.3",
1919
"@std/cli": "jsr:@std/cli@^1.0.0-rc.1",
2020
"@std/collections": "jsr:@std/collections@^1.0.0",
2121
"@std/crypto": "jsr:@std/crypto@^1.0.0-rc.1",
2222
"@std/csv": "jsr:@std/csv@^0.224.3",
2323
"@std/data-structures": "jsr:@std/data-structures@^1.0.0-rc.1",
2424
"@std/datetime": "jsr:@std/datetime@^0.224.1",
25-
"@std/dotenv": "jsr:@std/dotenv@^0.224.0",
25+
"@std/dotenv": "jsr:@std/dotenv@^0.224.1",
2626
"@std/encoding": "jsr:@std/[email protected]",
27-
"@std/expect": "jsr:@std/expect@^0.224.4",
27+
"@std/expect": "jsr:@std/expect@^0.224.5",
2828
"@std/fmt": "jsr:@std/fmt@^0.225.4",
2929
"@std/front-matter": "jsr:@std/front-matter@^0.224.2",
3030
"@std/fs": "jsr:@std/fs@^1.0.0-rc.1",
3131
"@std/html": "jsr:@std/html@^1.0.0-rc.1",
3232
"@std/http": "jsr:@std/http@^0.224.5",
3333
"@std/ini": "jsr:@std/ini@^0.225.1",
3434
"@std/internal": "jsr:@std/internal@^1.0.0",
35-
"@std/io": "jsr:@std/io@^0.224.1",
35+
"@std/io": "jsr:@std/io@^0.224.2",
3636
"@std/json": "jsr:@std/json@^1.0.0-rc.1",
37-
"@std/jsonc": "jsr:@std/jsonc@^0.224.2",
38-
"@std/log": "jsr:@std/log@^0.224.2",
37+
"@std/jsonc": "jsr:@std/jsonc@^0.224.3",
38+
"@std/log": "jsr:@std/log@^0.224.3",
3939
"@std/media-types": "jsr:@std/media-types@^1.0.0-rc.1",
4040
"@std/msgpack": "jsr:@std/msgpack@^1.0.0-rc.1",
4141
"@std/net": "jsr:@std/net@^0.224.3",
4242
"@std/path": "jsr:@std/[email protected]",
4343
"@std/regexp": "jsr:@std/regexp@^1.0.0-rc.1",
4444
"@std/semver": "jsr:@std/semver@^0.224.3",
4545
"@std/streams": "jsr:@std/streams@^1.0.0-rc.1",
46-
"@std/testing": "jsr:@std/testing@^0.225.2",
46+
"@std/testing": "jsr:@std/testing@^0.225.3",
4747
"@std/text": "jsr:@std/text@^1.0.0-rc.1",
48-
"@std/toml": "jsr:@std/toml@^1.0.0-rc.1",
48+
"@std/toml": "jsr:@std/toml@^1.0.0-rc.2",
4949
"@std/ulid": "jsr:@std/ulid@^1.0.0-rc.2",
5050
"@std/url": "jsr:@std/url@^1.0.0-rc.1",
5151
"@std/uuid": "jsr:@std/[email protected]",
5252
"@std/webgpu": "jsr:@std/webgpu@^0.224.4",
53-
"@std/yaml": "jsr:@std/yaml@^0.224.1"
53+
"@std/yaml": "jsr:@std/yaml@^0.224.2"
5454
},
5555
"tasks": {
5656
"test": "deno test --unstable-http --unstable-webgpu --doc --allow-all --parallel --coverage --trace-leaks --clean",

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.224.0",
3+
"version": "0.224.1",
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": "0.224.4",
3+
"version": "0.224.5",
44
"exports": {
55
".": "./mod.ts",
66
"./expect": "./expect.ts",

io/deno.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@std/io",
3-
"version": "0.224.1",
3+
"version": "0.224.2",
44
"exports": {
55
".": "./mod.ts",
66
"./buf-reader": "./buf_reader.ts",

jsonc/deno.json

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

log/deno.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@std/log",
3-
"version": "0.224.2",
3+
"version": "0.224.3",
44
"exports": {
55
".": "./mod.ts",
66
"./base-handler": "./base_handler.ts",

testing/deno.json

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

0 commit comments

Comments
 (0)