Skip to content

Commit

Permalink
chore: release 2024.06.26 (#5152)
Browse files Browse the repository at this point in the history
Co-authored-by: kt3k <[email protected]>
  • Loading branch information
denobot and kt3k authored Jun 26, 2024
1 parent 1adff2d commit 04f23c8
Show file tree
Hide file tree
Showing 6 changed files with 71 additions and 8 deletions.
63 changes: 63 additions & 0 deletions Releases.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,66 @@
### 2024.06.26

#### @std/cli 1.0.0-rc.2 (prerelease)

- test(cli): improve `Spinner` test (#5108)

#### @std/collections 1.0.1 (patch)

- perf(collections): use `for` loop instead of `forEach()` in `unzip()` (#5104)

#### @std/fs 1.0.0-rc.2 (prerelease)

- docs(fs): add not supported docs for `CopyOptions.preserveTimestamps` (#5143)

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

- BREAKING(http): rename `verifyCookie()` to `verifySignedCookie()` (#5138)
- BREAKING(http): improve thrown errors in `cookie` module (#5129)
- BREAKING(http): change the default port of file-server to the same default of
`Deno.serve()` (#4888)
- BREAKING(http): move `unstable-signed-cookie` to `signed-cookie` (#5101)
- BREAKING(http): remove deprecated `server` module (#5100)
- fix(http): handle the case fileInfo.mode=0 correctly (#5132)
- docs(http): remove outdated mention of `CookieMap` (#5109)
- refactor(http): change error thrown in `ServerSentEventStream` to
`SyntaxError` (#5135)
- refactor(http): minor cleanup (#5126)
- refactor(http): remove dead code and improve `UserAgent` testing (#5120)
- chore(http): release `[email protected]` (#5131)

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

- BREAKING(jsonc): remove `allowTrailingComma` option (#5119)
- refactor(jsonc): minor cleanups (#5114)
- chore(jsonc): release `[email protected]` (#5115)

#### @std/media-types 1.0.0 (major)

- BREAKING(media-types): rename `extensionsByType` to `allExtensions` (#5106)
- docs(media-types): remove outdated historical note (#5105)
- chore(media-types): release `[email protected]` (#4780)

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

- BREAKING(testing): remove deprecated `asserts` module (#5099)
- BREAKING(testing): disable multiple `FakeTime` creations (#5130)
- fix(testing): correctly throw in constructor with `spy()` (#5139)
- fix(testing): function call of `Date` constructor is not correctly faked
(#5122)
- docs(testing): add module docs (#5147)
- refactor(testing): remove `@std/fmt/colors` dependency from `snapshot` module
(#5145)
- refactor(testing): remove dead code and improve test of `testing/mock.ts`
(#5137)
- test(testing): improve bdd testing (#5136)
- test(testing): improve `FakeTime` testing (#5123)
- chore(testing): release `[email protected]` (#5142)

#### @std/yaml 0.224.3 (patch)

- feat(yaml): support schema name for 'schema' option (#5118)
- docs(yaml): improve `yaml` document (#5127)

### 2024.06.21

#### @std/archive 0.224.2 (patch)
Expand Down
2 changes: 1 addition & 1 deletion cli/deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@std/cli",
"version": "1.0.0-rc.1",
"version": "1.0.0-rc.2",
"exports": {
".": "./mod.ts",
"./parse-args": "./parse_args.ts",
Expand Down
2 changes: 1 addition & 1 deletion collections/deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@std/collections",
"version": "1.0.0",
"version": "1.0.1",
"exports": {
".": "./mod.ts",
"./aggregate-groups": "./aggregate_groups.ts",
Expand Down
8 changes: 4 additions & 4 deletions deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
"@std/assert": "jsr:@std/[email protected]",
"@std/async": "jsr:@std/async@^1.0.0-rc.2",
"@std/bytes": "jsr:@std/bytes@^1.0.0-rc.3",
"@std/cli": "jsr:@std/cli@^1.0.0-rc.1",
"@std/collections": "jsr:@std/collections@^1.0.0",
"@std/cli": "jsr:@std/cli@^1.0.0-rc.2",
"@std/collections": "jsr:@std/collections@^1.0.1",
"@std/crypto": "jsr:@std/crypto@^1.0.0-rc.1",
"@std/csv": "jsr:@std/csv@^0.224.3",
"@std/data-structures": "jsr:@std/data-structures@^1.0.0-rc.1",
Expand All @@ -27,7 +27,7 @@
"@std/expect": "jsr:@std/expect@^0.224.5",
"@std/fmt": "jsr:@std/fmt@^0.225.4",
"@std/front-matter": "jsr:@std/front-matter@^0.224.2",
"@std/fs": "jsr:@std/fs@^1.0.0-rc.1",
"@std/fs": "jsr:@std/fs@^1.0.0-rc.2",
"@std/html": "jsr:@std/html@^1.0.0-rc.1",
"@std/http": "jsr:@std/http@^1.0.0-rc.1",
"@std/ini": "jsr:@std/ini@^0.225.1",
Expand All @@ -50,7 +50,7 @@
"@std/url": "jsr:@std/url@^1.0.0-rc.1",
"@std/uuid": "jsr:@std/[email protected]",
"@std/webgpu": "jsr:@std/webgpu@^0.224.4",
"@std/yaml": "jsr:@std/yaml@^0.224.2"
"@std/yaml": "jsr:@std/yaml@^0.224.3"
},
"tasks": {
"test": "deno test --unstable-http --unstable-webgpu --doc --allow-all --parallel --coverage --trace-leaks --clean",
Expand Down
2 changes: 1 addition & 1 deletion fs/deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@std/fs",
"version": "1.0.0-rc.1",
"version": "1.0.0-rc.2",
"exports": {
".": "./mod.ts",
"./copy": "./copy.ts",
Expand Down
2 changes: 1 addition & 1 deletion yaml/deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@std/yaml",
"version": "0.224.2",
"version": "0.224.3",
"exports": {
".": "./mod.ts",
"./parse": "./parse.ts",
Expand Down

0 comments on commit 04f23c8

Please sign in to comment.