Skip to content

Commit 3ee4c4d

Browse files
denobotkt3k
andauthored
chore: release 2024.07.19 (#5494)
Co-authored-by: kt3k <[email protected]>
1 parent db670b1 commit 3ee4c4d

File tree

15 files changed

+125
-26
lines changed

15 files changed

+125
-26
lines changed

Releases.md

Lines changed: 99 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,102 @@
1+
### 2024.07.19
2+
3+
#### @std/async 1.0.0 (major)
4+
5+
- chore(async): release `[email protected]` (#5211)
6+
7+
#### @std/cli 1.0.0 (major)
8+
9+
- docs(cli): fix options arguments display (#5486)
10+
- docs(cli): improve unstable API notices (#5482)
11+
- docs(cli): documentation tweaks (#5458)
12+
- chore(cli): release `[email protected]` (#5212)
13+
14+
#### @std/collections 1.0.5 (patch)
15+
16+
- refactor(collections): use `Set.prototype.intersection()` method in
17+
`intersect()` (#5417)
18+
19+
#### @std/csv 1.0.0-rc.4 (prerelease)
20+
21+
- BREAKING(csv): remove `ParseError` (#5405)
22+
23+
#### @std/dotenv 0.225.0 (minor)
24+
25+
- BREAKING(dotenv): remove `defaultPath` option from `load[Sync]()` (#5451)
26+
- BREAKING(dotenv): remove `examplePath` option from `load[Sync]()` (#5450)
27+
28+
#### @std/expect 1.0.0-rc.3 (prerelease)
29+
30+
- fix(expect): improve `expect` type to make it work better with `expect.extend`
31+
(#5309)
32+
33+
#### @std/fs 1.0.0-rc.6 (prerelease)
34+
35+
- docs(fs): fix options argument display (#5491)
36+
- docs(fs): fix options argument display (#5487)
37+
38+
#### @std/http 1.0.0-rc.5 (prerelease)
39+
40+
- docs(http): fix options argument display (#5488)
41+
- docs(http): fix options argument display (#5489)
42+
- docs(http): improve unstable API notices (#5483)
43+
44+
#### @std/json 1.0.0-rc.3 (prerelease)
45+
46+
- docs(json): fix options argument display (#5490)
47+
48+
#### @std/jsonc 1.0.0-rc.3 (prerelease)
49+
50+
- docs(jsonc): remove docs for removed `options` parameter (#5438)
51+
52+
#### @std/media-types 1.0.2 (patch)
53+
54+
- fix(media-types): return `video/mp4` for `.mp4` extension (#5475)
55+
56+
#### @std/net 1.0.0-rc.2 (prerelease)
57+
58+
- docs(net): tweak `getNetworkAddress()` return doc (#5473)
59+
60+
#### @std/path 1.0.1 (patch)
61+
62+
- fix(path): support use in dnt (#5478)
63+
64+
#### @std/semver 1.0.0-rc.3 (prerelease)
65+
66+
- BREAKING(semver): replace `prerelease` and `buildmetadata` arguments with
67+
options object (#5471)
68+
69+
#### @std/streams 1.0.0-rc.4 (prerelease)
70+
71+
- docs(streams): address documentation issues (#5480)
72+
- chore(streams): release `[email protected]` (#5213)
73+
74+
#### @std/text 1.0.0 (major)
75+
76+
- BREAKING(text): align to single-export file pattern (#5428)
77+
- feat(text): add ability for user to control word comparison function (#5448)
78+
- docs(text): state complexity of `levenshteinDistance()` (#5472)
79+
- chore(text): release `[email protected]` (#5209)
80+
81+
#### @std/ulid 1.0.0 (major)
82+
83+
- fix(ulid): fix decode-time export path (#5432)
84+
- chore(ulid): release `[email protected]` (#5206)
85+
86+
#### @std/yaml 1.0.0-rc.4 (prerelease)
87+
88+
- BREAKING(yaml): replace `YamlError` with `TypeError` in `stringify()` (#5452)
89+
- BREAKING(yaml): replace `YamlError` with `SyntaxError` in `parse()` (#5446)
90+
- docs(yaml): list `extended` schema (#5444)
91+
- refactor(yaml): change `object` type from `any` to `unknown` in `writeNode`
92+
(#5404)
93+
- refactor(yaml): remove `instanceOf` field of `Type` (#5462)
94+
- refactor(yaml): add `KindType` generic type argument to `Type` (#5461)
95+
- refactor(yaml): improve `Type.predicate` behavior (#5460)
96+
- refactor(yaml): remove `Type.loadKind` property (#5459)
97+
- refactor(yaml): remove dead code in `Schema` constructor (#5445)
98+
- refactor(yaml): make `Type.kind` required (#5442)
99+
1100
### 2024.07.12
2101

3102
#### @std/async 1.0.0-rc.4 (prerelease)

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

csv/deno.json

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

deno.json

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -17,31 +17,31 @@
1717
"@std/async": "jsr:@std/async@^1.0.0",
1818
"@std/bytes": "jsr:@std/bytes@^1.0.2-rc.3",
1919
"@std/cli": "jsr:@std/cli@^1.0.0",
20-
"@std/collections": "jsr:@std/collections@^1.0.4",
20+
"@std/collections": "jsr:@std/collections@^1.0.5",
2121
"@std/crypto": "jsr:@std/crypto@^1.0.1-rc.1",
22-
"@std/csv": "jsr:@std/csv@^1.0.0-rc.3",
22+
"@std/csv": "jsr:@std/csv@^1.0.0-rc.4",
2323
"@std/data-structures": "jsr:@std/data-structures@^1.0.0",
2424
"@std/datetime": "jsr:@std/datetime@^0.224.3",
25-
"@std/dotenv": "jsr:@std/dotenv@^0.224.2",
25+
"@std/dotenv": "jsr:@std/dotenv@^0.225.0",
2626
"@std/encoding": "jsr:@std/encoding@^1.0.1",
27-
"@std/expect": "jsr:@std/expect@^1.0.0-rc.2",
27+
"@std/expect": "jsr:@std/expect@^1.0.0-rc.3",
2828
"@std/fmt": "jsr:@std/fmt@^1.0.0-rc.1",
2929
"@std/front-matter": "jsr:@std/front-matter@^1.0.0-rc.2",
30-
"@std/fs": "jsr:@std/fs@^1.0.0-rc.5",
30+
"@std/fs": "jsr:@std/fs@^1.0.0-rc.6",
3131
"@std/html": "jsr:@std/html@^1.0.0",
32-
"@std/http": "jsr:@std/http@^1.0.0-rc.4",
32+
"@std/http": "jsr:@std/http@^1.0.0-rc.5",
3333
"@std/ini": "jsr:@std/ini@^1.0.0-rc.2",
3434
"@std/internal": "jsr:@std/internal@^1.0.1",
3535
"@std/io": "jsr:@std/io@^0.224.3",
36-
"@std/json": "jsr:@std/json@^1.0.0-rc.2",
37-
"@std/jsonc": "jsr:@std/jsonc@^1.0.0-rc.2",
36+
"@std/json": "jsr:@std/json@^1.0.0-rc.3",
37+
"@std/jsonc": "jsr:@std/jsonc@^1.0.0-rc.3",
3838
"@std/log": "jsr:@std/log@^0.224.5",
39-
"@std/media-types": "jsr:@std/media-types@^1.0.1",
39+
"@std/media-types": "jsr:@std/media-types@^1.0.2",
4040
"@std/msgpack": "jsr:@std/msgpack@^1.0.0",
41-
"@std/net": "jsr:@std/net@^1.0.0-rc.1",
42-
"@std/path": "jsr:@std/path@^1.0.0",
41+
"@std/net": "jsr:@std/net@^1.0.0-rc.2",
42+
"@std/path": "jsr:@std/path@^1.0.1",
4343
"@std/regexp": "jsr:@std/regexp@^1.0.0",
44-
"@std/semver": "jsr:@std/semver@^1.0.0-rc.2",
44+
"@std/semver": "jsr:@std/semver@^1.0.0-rc.3",
4545
"@std/streams": "jsr:@std/streams@^1.0.0-rc.4",
4646
"@std/testing": "jsr:@std/testing@^1.0.0-rc.4",
4747
"@std/text": "jsr:@std/text@^1.0.0",
@@ -50,7 +50,7 @@
5050
"@std/url": "jsr:@std/url@^1.0.0-rc.2",
5151
"@std/uuid": "jsr:@std/uuid@^1.0.0",
5252
"@std/webgpu": "jsr:@std/webgpu@^0.224.5",
53-
"@std/yaml": "jsr:@std/yaml@^1.0.0-rc.3"
53+
"@std/yaml": "jsr:@std/yaml@^1.0.0-rc.4"
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.2",
3+
"version": "0.225.0",
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.0-rc.2",
3+
"version": "1.0.0-rc.3",
44
"exports": {
55
".": "./mod.ts",
66
"./expect": "./expect.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.0-rc.5",
3+
"version": "1.0.0-rc.6",
44
"exports": {
55
".": "./mod.ts",
66
"./copy": "./copy.ts",

http/deno.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@std/http",
3-
"version": "1.0.0-rc.4",
3+
"version": "1.0.0-rc.5",
44
"exports": {
55
".": "./mod.ts",
66
"./cookie": "./cookie.ts",

json/deno.json

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

0 commit comments

Comments
 (0)