From ce02d496a44eff9004aff8af6f23c51e98b8171b Mon Sep 17 00:00:00 2001 From: denobot <33910674+denobot@users.noreply.github.com> Date: Wed, 7 Aug 2024 08:42:08 -0400 Subject: [PATCH] chore: release 2024.08.07 (#5650) Co-authored-by: kt3k --- Releases.md | 32 ++++++++++++++++++++++++++++++++ archive/deno.json | 2 +- csv/deno.json | 2 +- datetime/deno.json | 2 +- deno.json | 10 +++++----- http/deno.json | 2 +- streams/deno.json | 2 +- 7 files changed, 42 insertions(+), 10 deletions(-) diff --git a/Releases.md b/Releases.md index c01a11837829..cfa41127e4a5 100644 --- a/Releases.md +++ b/Releases.md @@ -1,3 +1,35 @@ +### 2024.08.07 + +#### @std/archive 0.225.0 (minor) + +- BREAKING(archive): remove `TarEntry.#header` (#5638) +- fix(archive): make `data` property private in `Tar` (#5645) +- fix(archive): make `block` and `reader` properties in `Untar` private (#5637) +- docs(archive): mark public APIs as unstable/experimental (#5639) + +#### @std/csv 1.0.1 (patch) + +- fix(csv,streams): use string arrays in `ReadableStream.from()` in docs and + tests (#5635) + +#### @std/datetime 0.224.5 (patch) + +- refactor(datetime): remove `Tokenizer` class (#5622) + +#### @std/http 1.0.1 (patch) + +- feat(http/unstable): `route` module (#5644) +- feat(http/unstable): `headers` module (#4317) +- feat(http/unstable): `methods` module (#4320) +- fix(http): handle wrong request method correctly (#5643) +- refactor(http): use `headers` module in `file-server` module (#5642) + +#### @std/streams 1.0.1 (patch) + +- feat(streams/unstable): `FixedChunkStream` (#4995) +- fix(csv,streams): use string arrays in `ReadableStream.from()` in docs and + tests (#5635) + ### 2024.08.05 #### @std/async 1.0.3 (patch) diff --git a/archive/deno.json b/archive/deno.json index 17e5c7a995ed..8aacc81daae4 100644 --- a/archive/deno.json +++ b/archive/deno.json @@ -1,6 +1,6 @@ { "name": "@std/archive", - "version": "0.224.3", + "version": "0.225.0", "exports": { ".": "./mod.ts", "./tar": "./tar.ts", diff --git a/csv/deno.json b/csv/deno.json index db247ca50390..8b11079cd51e 100644 --- a/csv/deno.json +++ b/csv/deno.json @@ -1,6 +1,6 @@ { "name": "@std/csv", - "version": "1.0.0", + "version": "1.0.1", "exports": { ".": "./mod.ts", "./parse": "./parse.ts", diff --git a/datetime/deno.json b/datetime/deno.json index da68c7b6a62d..0a41925e0cb5 100644 --- a/datetime/deno.json +++ b/datetime/deno.json @@ -1,6 +1,6 @@ { "name": "@std/datetime", - "version": "0.224.4", + "version": "0.224.5", "exports": { ".": "./mod.ts", "./constants": "./constants.ts", diff --git a/deno.json b/deno.json index d29732e606fe..7f21ccb48414 100644 --- a/deno.json +++ b/deno.json @@ -12,16 +12,16 @@ "automation/": "https://raw.githubusercontent.com/denoland/automation/0.10.0/", "graphviz": "npm:node-graphviz@^0.1.1", - "@std/archive": "jsr:@std/archive@^0.224.3", + "@std/archive": "jsr:@std/archive@^0.225.0", "@std/assert": "jsr:@std/assert@^1.0.2", "@std/async": "jsr:@std/async@^1.0.3", "@std/bytes": "jsr:@std/bytes@^1.0.2-rc.3", "@std/cli": "jsr:@std/cli@^1.0.3", "@std/collections": "jsr:@std/collections@^1.0.5", "@std/crypto": "jsr:@std/crypto@^1.0.2-rc.1", - "@std/csv": "jsr:@std/csv@^1.0.0", + "@std/csv": "jsr:@std/csv@^1.0.1", "@std/data-structures": "jsr:@std/data-structures@^1.0.1", - "@std/datetime": "jsr:@std/datetime@^0.224.4", + "@std/datetime": "jsr:@std/datetime@^0.224.5", "@std/dotenv": "jsr:@std/dotenv@^0.225.0", "@std/encoding": "jsr:@std/encoding@^1.0.1", "@std/expect": "jsr:@std/expect@^1.0.0", @@ -29,7 +29,7 @@ "@std/front-matter": "jsr:@std/front-matter@^1.0.1", "@std/fs": "jsr:@std/fs@^1.0.1", "@std/html": "jsr:@std/html@^1.0.1", - "@std/http": "jsr:@std/http@^1.0.0", + "@std/http": "jsr:@std/http@^1.0.1", "@std/ini": "jsr:@std/ini@^1.0.0-rc.3", "@std/internal": "jsr:@std/internal@^1.0.1", "@std/io": "jsr:@std/io@^0.224.4", @@ -42,7 +42,7 @@ "@std/path": "jsr:@std/path@^1.0.2", "@std/regexp": "jsr:@std/regexp@^1.0.0", "@std/semver": "jsr:@std/semver@^1.0.1", - "@std/streams": "jsr:@std/streams@^1.0.0", + "@std/streams": "jsr:@std/streams@^1.0.1", "@std/testing": "jsr:@std/testing@^1.0.0", "@std/text": "jsr:@std/text@^1.0.2", "@std/toml": "jsr:@std/toml@^1.0.0", diff --git a/http/deno.json b/http/deno.json index ccb6c044573c..2007e4765b40 100644 --- a/http/deno.json +++ b/http/deno.json @@ -1,6 +1,6 @@ { "name": "@std/http", - "version": "1.0.0", + "version": "1.0.1", "exports": { ".": "./mod.ts", "./cookie": "./cookie.ts", diff --git a/streams/deno.json b/streams/deno.json index dd1479816c08..8fcd5a40f0e3 100644 --- a/streams/deno.json +++ b/streams/deno.json @@ -1,6 +1,6 @@ { "name": "@std/streams", - "version": "1.0.0", + "version": "1.0.1", "exports": { ".": "./mod.ts", "./buffer": "./buffer.ts",