mirror of
https://github.com/denoland/std.git
synced 2024-11-21 20:50:22 +00:00
chore: release 2024.08.07 (#5650)
Co-authored-by: kt3k <kt3k@users.noreply.github.com>
This commit is contained in:
parent
602396adf7
commit
ce02d496a4
32
Releases.md
32
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)
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@std/archive",
|
||||
"version": "0.224.3",
|
||||
"version": "0.225.0",
|
||||
"exports": {
|
||||
".": "./mod.ts",
|
||||
"./tar": "./tar.ts",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@std/csv",
|
||||
"version": "1.0.0",
|
||||
"version": "1.0.1",
|
||||
"exports": {
|
||||
".": "./mod.ts",
|
||||
"./parse": "./parse.ts",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@std/datetime",
|
||||
"version": "0.224.4",
|
||||
"version": "0.224.5",
|
||||
"exports": {
|
||||
".": "./mod.ts",
|
||||
"./constants": "./constants.ts",
|
||||
|
10
deno.json
10
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",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@std/http",
|
||||
"version": "1.0.0",
|
||||
"version": "1.0.1",
|
||||
"exports": {
|
||||
".": "./mod.ts",
|
||||
"./cookie": "./cookie.ts",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@std/streams",
|
||||
"version": "1.0.0",
|
||||
"version": "1.0.1",
|
||||
"exports": {
|
||||
".": "./mod.ts",
|
||||
"./buffer": "./buffer.ts",
|
||||
|
Loading…
Reference in New Issue
Block a user