Skip to content

Commit b4e5d21

Browse files
denobotkt3k
andauthored
chore: release 2024.10.10 (#6098)
Co-authored-by: kt3k <[email protected]>
1 parent 0f9a23c commit b4e5d21

File tree

11 files changed

+86
-16
lines changed

11 files changed

+86
-16
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ jobs:
4646

4747
- name: Type check browser compatible modules
4848
run: deno task test:browser
49+
if: matrix.deno == 'v2.x' && matrix.os == 'ubuntu-latest'
4950

5051
- name: Generate lcov
5152
run: deno task cov:gen

Releases.md

Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,72 @@
1+
### 2024.10.10
2+
3+
#### @std/async 1.0.6 (patch)
4+
5+
- feat(async/unstable): accept iterator varargs in `MuxAsyncIterator` (#6087)
6+
- chore(async/unstable): fix typo (#6096)
7+
8+
#### @std/cbor 0.1.0 (minor)
9+
10+
- feat(cbor/unstable): introduce `@std/cbor` (#5909)
11+
12+
#### @std/collections 1.0.8 (patch)
13+
14+
- feat(collections/unstable): support `Iterable` argument in `takeLastWhile()`
15+
(#6090)
16+
- feat(collections/unstable): support `Iterable` argument in `dropWhile()`
17+
(#6088)
18+
- feat(collections/unstable): support `Iterable` argument in `intersect()`
19+
(#6036)
20+
- feat(collections/unstable): support `Iterable` argument in `dropLastWhile()`
21+
(#6076)
22+
- test(collections): add tests for `filterInPlace()` util (#6089)
23+
24+
#### @std/expect 1.0.5 (patch)
25+
26+
- fix(expect): register extended matchers after native matchers (#6075)
27+
28+
#### @std/http 1.0.8 (patch)
29+
30+
- docs(http/unstable): add example for multiple request methods on route (#6045)
31+
32+
#### @std/io 0.225.0 (minor)
33+
34+
- BREAKING(io): remove `StringReader` (#6062)
35+
- BREAKING(io): remove `StringWriter` (#6061)
36+
- BREAKING(io): remove `MultiReader` (#6059)
37+
- BREAKING(io): remove `LimitedReader` (#6058)
38+
- BREAKING(io): remove `readDelim()` (#6052)
39+
- BREAKING(io): remove `BufWriter` (#6057)
40+
- BREAKING(io): remove `BufReader` (#6056)
41+
- BREAKING(io): remove `readShort()` (#6050)
42+
- BREAKING(io): remove `readInt()` (#6048)
43+
- BREAKING(io): remove `readLong()` (#6047)
44+
- BREAKING(io/unstable): remove `readStringDelim()` (#6001)
45+
- BREAKING(io): remove `readRange[Sync]()` (#6049)
46+
- BREAKING(io/unstable): remove `sliceLongToBytes()` (#6005)
47+
- BREAKING(io/unstable): remove `copyN()` (#5999)
48+
- BREAKING(io): remove `readLines()` (#5991)
49+
50+
#### @std/log 0.224.9 (patch)
51+
52+
- fix(log): remove leaky `Logger.prototype.asString()` method (#6082)
53+
- fix(log): remove leaky `ConsoleHandler.prototype.applyColors()` (#6072)
54+
- fix(log): ensure consistent behavior with `@std/log` (#5974)
55+
- docs(log): document `getLogger()` and `Logger` (#6084)
56+
- docs(log): document `ConsoleHandler` (#6071)
57+
- docs(log): document `formatters` module (#6073)
58+
- docs(log): correct the examples of `debug()` (#6077)
59+
- docs(log): document `BaseHandler` (#6067)
60+
- docs(log): document pass-through functions (#6066)
61+
62+
#### @std/streams 1.0.7 (patch)
63+
64+
- feat(streams/unstable): `toByteStream()` (#6046)
65+
66+
#### @std/tar 0.1.2 (patch)
67+
68+
- fix(tar): ignore non-tar file portion of a stream in `UntarStream` (#6064)
69+
170
### 2024.09.24
271

372
#### @std/archive 0.225.4 (patch)

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

import_map.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,39 +8,39 @@
88

99
"@std/archive": "jsr:@std/archive@^0.225.4",
1010
"@std/assert": "jsr:@std/assert@^1.0.6",
11-
"@std/async": "jsr:@std/async@^1.0.5",
11+
"@std/async": "jsr:@std/async@^1.0.6",
1212
"@std/bytes": "jsr:@std/bytes@^1.0.2",
1313
"@std/cache": "jsr:@std/cache@^0.1.3",
1414
"@std/cbor": "jsr:@std/cbor@^0.1.0",
1515
"@std/cli": "jsr:@std/cli@^1.0.6",
16-
"@std/collections": "jsr:@std/collections@^1.0.7",
16+
"@std/collections": "jsr:@std/collections@^1.0.8",
1717
"@std/crypto": "jsr:@std/crypto@^1.0.3",
1818
"@std/csv": "jsr:@std/csv@^1.0.3",
1919
"@std/data-structures": "jsr:@std/data-structures@^1.0.4",
2020
"@std/datetime": "jsr:@std/datetime@^0.225.2",
2121
"@std/dotenv": "jsr:@std/dotenv@^0.225.2",
2222
"@std/encoding": "jsr:@std/encoding@^1.0.5",
23-
"@std/expect": "jsr:@std/expect@^1.0.4",
23+
"@std/expect": "jsr:@std/expect@^1.0.5",
2424
"@std/fmt": "jsr:@std/fmt@^1.0.2",
2525
"@std/front-matter": "jsr:@std/front-matter@^1.0.5",
2626
"@std/fs": "jsr:@std/fs@^1.0.4",
2727
"@std/html": "jsr:@std/html@^1.0.3",
28-
"@std/http": "jsr:@std/http@^1.0.7",
28+
"@std/http": "jsr:@std/http@^1.0.8",
2929
"@std/ini": "jsr:@std/ini@^1.0.0-rc.4",
3030
"@std/internal": "jsr:@std/internal@^1.0.4",
31-
"@std/io": "jsr:@std/io@^0.224.9",
31+
"@std/io": "jsr:@std/io@^0.225.0",
3232
"@std/json": "jsr:@std/json@^1.0.0",
3333
"@std/jsonc": "jsr:@std/jsonc@^1.0.1",
34-
"@std/log": "jsr:@std/log@^0.224.8",
34+
"@std/log": "jsr:@std/log@^0.224.9",
3535
"@std/media-types": "jsr:@std/media-types@^1.0.3",
3636
"@std/msgpack": "jsr:@std/msgpack@^1.0.2",
3737
"@std/net": "jsr:@std/net@^1.0.4",
3838
"@std/path": "jsr:@std/path@^1.0.6",
3939
"@std/regexp": "jsr:@std/regexp@^1.0.0",
4040
"@std/random": "jsr:@std/random@^0.1.0",
4141
"@std/semver": "jsr:@std/semver@^1.0.3",
42-
"@std/streams": "jsr:@std/streams@^1.0.6",
43-
"@std/tar": "jsr:@std/tar@^0.1.1",
42+
"@std/streams": "jsr:@std/streams@^1.0.7",
43+
"@std/tar": "jsr:@std/tar@^0.1.2",
4444
"@std/testing": "jsr:@std/testing@^1.0.3",
4545
"@std/text": "jsr:@std/text@^1.0.7",
4646
"@std/toml": "jsr:@std/toml@^1.0.1",

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.9",
3+
"version": "0.225.0",
44
"exports": {
55
".": "./mod.ts",
66
"./buffer": "./buffer.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.8",
3+
"version": "0.224.9",
44
"exports": {
55
".": "./mod.ts",
66
"./base-handler": "./base_handler.ts",

streams/deno.json

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

0 commit comments

Comments
 (0)