Skip to content

Commit

Permalink
chore: release 2024.10.10 (#6098)
Browse files Browse the repository at this point in the history
Co-authored-by: kt3k <[email protected]>
  • Loading branch information
denobot and kt3k authored Oct 10, 2024
1 parent 0f9a23c commit b4e5d21
Show file tree
Hide file tree
Showing 11 changed files with 86 additions and 16 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ jobs:

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

- name: Generate lcov
run: deno task cov:gen
Expand Down
69 changes: 69 additions & 0 deletions Releases.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,72 @@
### 2024.10.10

#### @std/async 1.0.6 (patch)

- feat(async/unstable): accept iterator varargs in `MuxAsyncIterator` (#6087)
- chore(async/unstable): fix typo (#6096)

#### @std/cbor 0.1.0 (minor)

- feat(cbor/unstable): introduce `@std/cbor` (#5909)

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

- feat(collections/unstable): support `Iterable` argument in `takeLastWhile()`
(#6090)
- feat(collections/unstable): support `Iterable` argument in `dropWhile()`
(#6088)
- feat(collections/unstable): support `Iterable` argument in `intersect()`
(#6036)
- feat(collections/unstable): support `Iterable` argument in `dropLastWhile()`
(#6076)
- test(collections): add tests for `filterInPlace()` util (#6089)

#### @std/expect 1.0.5 (patch)

- fix(expect): register extended matchers after native matchers (#6075)

#### @std/http 1.0.8 (patch)

- docs(http/unstable): add example for multiple request methods on route (#6045)

#### @std/io 0.225.0 (minor)

- BREAKING(io): remove `StringReader` (#6062)
- BREAKING(io): remove `StringWriter` (#6061)
- BREAKING(io): remove `MultiReader` (#6059)
- BREAKING(io): remove `LimitedReader` (#6058)
- BREAKING(io): remove `readDelim()` (#6052)
- BREAKING(io): remove `BufWriter` (#6057)
- BREAKING(io): remove `BufReader` (#6056)
- BREAKING(io): remove `readShort()` (#6050)
- BREAKING(io): remove `readInt()` (#6048)
- BREAKING(io): remove `readLong()` (#6047)
- BREAKING(io/unstable): remove `readStringDelim()` (#6001)
- BREAKING(io): remove `readRange[Sync]()` (#6049)
- BREAKING(io/unstable): remove `sliceLongToBytes()` (#6005)
- BREAKING(io/unstable): remove `copyN()` (#5999)
- BREAKING(io): remove `readLines()` (#5991)

#### @std/log 0.224.9 (patch)

- fix(log): remove leaky `Logger.prototype.asString()` method (#6082)
- fix(log): remove leaky `ConsoleHandler.prototype.applyColors()` (#6072)
- fix(log): ensure consistent behavior with `@std/log` (#5974)
- docs(log): document `getLogger()` and `Logger` (#6084)
- docs(log): document `ConsoleHandler` (#6071)
- docs(log): document `formatters` module (#6073)
- docs(log): correct the examples of `debug()` (#6077)
- docs(log): document `BaseHandler` (#6067)
- docs(log): document pass-through functions (#6066)

#### @std/streams 1.0.7 (patch)

- feat(streams/unstable): `toByteStream()` (#6046)

#### @std/tar 0.1.2 (patch)

- fix(tar): ignore non-tar file portion of a stream in `UntarStream` (#6064)

### 2024.09.24

#### @std/archive 0.225.4 (patch)
Expand Down
2 changes: 1 addition & 1 deletion async/deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@std/async",
"version": "1.0.5",
"version": "1.0.6",
"exports": {
".": "./mod.ts",
"./abortable": "./abortable.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.7",
"version": "1.0.8",
"exports": {
".": "./mod.ts",
"./aggregate-groups": "./aggregate_groups.ts",
Expand Down
2 changes: 1 addition & 1 deletion expect/deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@std/expect",
"version": "1.0.4",
"version": "1.0.5",
"exports": {
".": "./mod.ts",
"./expect": "./expect.ts",
Expand Down
2 changes: 1 addition & 1 deletion http/deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@std/http",
"version": "1.0.7",
"version": "1.0.8",
"exports": {
".": "./mod.ts",
"./cookie": "./cookie.ts",
Expand Down
16 changes: 8 additions & 8 deletions import_map.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,39 +8,39 @@

"@std/archive": "jsr:@std/archive@^0.225.4",
"@std/assert": "jsr:@std/assert@^1.0.6",
"@std/async": "jsr:@std/async@^1.0.5",
"@std/async": "jsr:@std/async@^1.0.6",
"@std/bytes": "jsr:@std/bytes@^1.0.2",
"@std/cache": "jsr:@std/cache@^0.1.3",
"@std/cbor": "jsr:@std/cbor@^0.1.0",
"@std/cli": "jsr:@std/cli@^1.0.6",
"@std/collections": "jsr:@std/collections@^1.0.7",
"@std/collections": "jsr:@std/collections@^1.0.8",
"@std/crypto": "jsr:@std/crypto@^1.0.3",
"@std/csv": "jsr:@std/csv@^1.0.3",
"@std/data-structures": "jsr:@std/data-structures@^1.0.4",
"@std/datetime": "jsr:@std/datetime@^0.225.2",
"@std/dotenv": "jsr:@std/dotenv@^0.225.2",
"@std/encoding": "jsr:@std/encoding@^1.0.5",
"@std/expect": "jsr:@std/expect@^1.0.4",
"@std/expect": "jsr:@std/expect@^1.0.5",
"@std/fmt": "jsr:@std/fmt@^1.0.2",
"@std/front-matter": "jsr:@std/front-matter@^1.0.5",
"@std/fs": "jsr:@std/fs@^1.0.4",
"@std/html": "jsr:@std/html@^1.0.3",
"@std/http": "jsr:@std/http@^1.0.7",
"@std/http": "jsr:@std/http@^1.0.8",
"@std/ini": "jsr:@std/ini@^1.0.0-rc.4",
"@std/internal": "jsr:@std/internal@^1.0.4",
"@std/io": "jsr:@std/io@^0.224.9",
"@std/io": "jsr:@std/io@^0.225.0",
"@std/json": "jsr:@std/json@^1.0.0",
"@std/jsonc": "jsr:@std/jsonc@^1.0.1",
"@std/log": "jsr:@std/log@^0.224.8",
"@std/log": "jsr:@std/log@^0.224.9",
"@std/media-types": "jsr:@std/media-types@^1.0.3",
"@std/msgpack": "jsr:@std/msgpack@^1.0.2",
"@std/net": "jsr:@std/net@^1.0.4",
"@std/path": "jsr:@std/path@^1.0.6",
"@std/regexp": "jsr:@std/regexp@^1.0.0",
"@std/random": "jsr:@std/random@^0.1.0",
"@std/semver": "jsr:@std/semver@^1.0.3",
"@std/streams": "jsr:@std/streams@^1.0.6",
"@std/tar": "jsr:@std/tar@^0.1.1",
"@std/streams": "jsr:@std/streams@^1.0.7",
"@std/tar": "jsr:@std/tar@^0.1.2",
"@std/testing": "jsr:@std/testing@^1.0.3",
"@std/text": "jsr:@std/text@^1.0.7",
"@std/toml": "jsr:@std/toml@^1.0.1",
Expand Down
2 changes: 1 addition & 1 deletion io/deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@std/io",
"version": "0.224.9",
"version": "0.225.0",
"exports": {
".": "./mod.ts",
"./buffer": "./buffer.ts",
Expand Down
2 changes: 1 addition & 1 deletion log/deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@std/log",
"version": "0.224.8",
"version": "0.224.9",
"exports": {
".": "./mod.ts",
"./base-handler": "./base_handler.ts",
Expand Down
2 changes: 1 addition & 1 deletion streams/deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@std/streams",
"version": "1.0.6",
"version": "1.0.7",
"exports": {
".": "./mod.ts",
"./buffer": "./buffer.ts",
Expand Down
2 changes: 1 addition & 1 deletion tar/deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@std/tar",
"version": "0.1.1",
"version": "0.1.2",
"exports": {
".": "./mod.ts",
"./tar-stream": "./tar_stream.ts",
Expand Down

0 comments on commit b4e5d21

Please sign in to comment.