Skip to content

Commit 04f23c8

Browse files
denobotkt3k
andauthored
chore: release 2024.06.26 (#5152)
Co-authored-by: kt3k <[email protected]>
1 parent 1adff2d commit 04f23c8

File tree

6 files changed

+71
-8
lines changed

6 files changed

+71
-8
lines changed

Releases.md

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,66 @@
1+
### 2024.06.26
2+
3+
#### @std/cli 1.0.0-rc.2 (prerelease)
4+
5+
- test(cli): improve `Spinner` test (#5108)
6+
7+
#### @std/collections 1.0.1 (patch)
8+
9+
- perf(collections): use `for` loop instead of `forEach()` in `unzip()` (#5104)
10+
11+
#### @std/fs 1.0.0-rc.2 (prerelease)
12+
13+
- docs(fs): add not supported docs for `CopyOptions.preserveTimestamps` (#5143)
14+
15+
#### @std/http 1.0.0-rc.1 (prerelease)
16+
17+
- BREAKING(http): rename `verifyCookie()` to `verifySignedCookie()` (#5138)
18+
- BREAKING(http): improve thrown errors in `cookie` module (#5129)
19+
- BREAKING(http): change the default port of file-server to the same default of
20+
`Deno.serve()` (#4888)
21+
- BREAKING(http): move `unstable-signed-cookie` to `signed-cookie` (#5101)
22+
- BREAKING(http): remove deprecated `server` module (#5100)
23+
- fix(http): handle the case fileInfo.mode=0 correctly (#5132)
24+
- docs(http): remove outdated mention of `CookieMap` (#5109)
25+
- refactor(http): change error thrown in `ServerSentEventStream` to
26+
`SyntaxError` (#5135)
27+
- refactor(http): minor cleanup (#5126)
28+
- refactor(http): remove dead code and improve `UserAgent` testing (#5120)
29+
- chore(http): release `[email protected]` (#5131)
30+
31+
#### @std/jsonc 1.0.0-rc.1 (prerelease)
32+
33+
- BREAKING(jsonc): remove `allowTrailingComma` option (#5119)
34+
- refactor(jsonc): minor cleanups (#5114)
35+
- chore(jsonc): release `[email protected]` (#5115)
36+
37+
#### @std/media-types 1.0.0 (major)
38+
39+
- BREAKING(media-types): rename `extensionsByType` to `allExtensions` (#5106)
40+
- docs(media-types): remove outdated historical note (#5105)
41+
- chore(media-types): release `[email protected]` (#4780)
42+
43+
#### @std/testing 1.0.0-rc.1 (prerelease)
44+
45+
- BREAKING(testing): remove deprecated `asserts` module (#5099)
46+
- BREAKING(testing): disable multiple `FakeTime` creations (#5130)
47+
- fix(testing): correctly throw in constructor with `spy()` (#5139)
48+
- fix(testing): function call of `Date` constructor is not correctly faked
49+
(#5122)
50+
- docs(testing): add module docs (#5147)
51+
- refactor(testing): remove `@std/fmt/colors` dependency from `snapshot` module
52+
(#5145)
53+
- refactor(testing): remove dead code and improve test of `testing/mock.ts`
54+
(#5137)
55+
- test(testing): improve bdd testing (#5136)
56+
- test(testing): improve `FakeTime` testing (#5123)
57+
- chore(testing): release `[email protected]` (#5142)
58+
59+
#### @std/yaml 0.224.3 (patch)
60+
61+
- feat(yaml): support schema name for 'schema' option (#5118)
62+
- docs(yaml): improve `yaml` document (#5127)
63+
164
### 2024.06.21
265

366
#### @std/archive 0.224.2 (patch)

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.0-rc.1",
3+
"version": "1.0.0-rc.2",
44
"exports": {
55
".": "./mod.ts",
66
"./parse-args": "./parse_args.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.0",
3+
"version": "1.0.1",
44
"exports": {
55
".": "./mod.ts",
66
"./aggregate-groups": "./aggregate_groups.ts",

deno.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
"@std/assert": "jsr:@std/[email protected]",
1717
"@std/async": "jsr:@std/async@^1.0.0-rc.2",
1818
"@std/bytes": "jsr:@std/bytes@^1.0.0-rc.3",
19-
"@std/cli": "jsr:@std/cli@^1.0.0-rc.1",
20-
"@std/collections": "jsr:@std/collections@^1.0.0",
19+
"@std/cli": "jsr:@std/cli@^1.0.0-rc.2",
20+
"@std/collections": "jsr:@std/collections@^1.0.1",
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",
@@ -27,7 +27,7 @@
2727
"@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",
30-
"@std/fs": "jsr:@std/fs@^1.0.0-rc.1",
30+
"@std/fs": "jsr:@std/fs@^1.0.0-rc.2",
3131
"@std/html": "jsr:@std/html@^1.0.0-rc.1",
3232
"@std/http": "jsr:@std/http@^1.0.0-rc.1",
3333
"@std/ini": "jsr:@std/ini@^0.225.1",
@@ -50,7 +50,7 @@
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.2"
53+
"@std/yaml": "jsr:@std/yaml@^0.224.3"
5454
},
5555
"tasks": {
5656
"test": "deno test --unstable-http --unstable-webgpu --doc --allow-all --parallel --coverage --trace-leaks --clean",

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.0-rc.1",
3+
"version": "1.0.0-rc.2",
44
"exports": {
55
".": "./mod.ts",
66
"./copy": "./copy.ts",

yaml/deno.json

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

0 commit comments

Comments
 (0)