diff --git a/Releases.md b/Releases.md index 3c07a374a599..ecdee186eef7 100644 --- a/Releases.md +++ b/Releases.md @@ -1,3 +1,35 @@ +### 2024.11.22 + +### @std/archive + +- BREAKING(archive): remove std/archive package (#6185) + +#### @std/async 1.0.9 (patch) + +- feat(async/unstable): add `isRetriable` option to `retry` (#6197) + +#### @std/csv 1.0.4 (patch) + +- feat(csv/unstable): infer column names from object arrays for stringify() + (#6122) + +#### @std/fs 1.0.6 (patch) + +- fix(fs): improve the docs and error message of `ensureSymlink(Sync)` (#6198) + +#### @std/http 1.0.11 (patch) + +- fix(http): disable XSS in directory index page of file-server (CVE-2024-52793) + https://github.com/denoland/std/security/advisories/GHSA-32fx-h446-h8pf + +#### @std/log 0.224.11 (patch) + +- chore(log): do not exec file handler examples in CI (#6183) + +#### @std/toml 1.0.2 (patch) + +- fix(toml): parsing positive time zone offset (#6188) + ### 2024.11.13 #### @std/assert 1.0.8 (patch) diff --git a/async/deno.json b/async/deno.json index 5378518c32e6..65ea98e36b8f 100644 --- a/async/deno.json +++ b/async/deno.json @@ -1,6 +1,6 @@ { "name": "@std/async", - "version": "1.0.8", + "version": "1.0.9", "exports": { ".": "./mod.ts", "./abortable": "./abortable.ts", diff --git a/csv/deno.json b/csv/deno.json index fe5f3b719b01..deeff624d630 100644 --- a/csv/deno.json +++ b/csv/deno.json @@ -1,6 +1,6 @@ { "name": "@std/csv", - "version": "1.0.3", + "version": "1.0.4", "exports": { ".": "./mod.ts", "./parse": "./parse.ts", diff --git a/fs/deno.json b/fs/deno.json index 885c9857af42..7ab2aca920d2 100644 --- a/fs/deno.json +++ b/fs/deno.json @@ -1,6 +1,6 @@ { "name": "@std/fs", - "version": "1.0.5", + "version": "1.0.6", "exports": { ".": "./mod.ts", "./copy": "./copy.ts", diff --git a/http/deno.json b/http/deno.json index a835e53dc24b..b8a3fdf16de3 100644 --- a/http/deno.json +++ b/http/deno.json @@ -1,6 +1,6 @@ { "name": "@std/http", - "version": "1.0.10", + "version": "1.0.11", "exports": { ".": "./mod.ts", "./cookie": "./cookie.ts", diff --git a/import_map.json b/import_map.json index 8dcab0b177a6..c26842880e35 100644 --- a/import_map.json +++ b/import_map.json @@ -7,14 +7,14 @@ "graphviz": "npm:node-graphviz@^0.1.1", "@std/assert": "jsr:@std/assert@^1.0.8", - "@std/async": "jsr:@std/async@^1.0.8", + "@std/async": "jsr:@std/async@^1.0.9", "@std/bytes": "jsr:@std/bytes@^1.0.4", "@std/cache": "jsr:@std/cache@^0.1.3", "@std/cbor": "jsr:@std/cbor@^0.1.2", "@std/cli": "jsr:@std/cli@^1.0.6", "@std/collections": "jsr:@std/collections@^1.0.9", "@std/crypto": "jsr:@std/crypto@^1.0.3", - "@std/csv": "jsr:@std/csv@^1.0.3", + "@std/csv": "jsr:@std/csv@^1.0.4", "@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", @@ -22,15 +22,15 @@ "@std/expect": "jsr:@std/expect@^1.0.8", "@std/fmt": "jsr:@std/fmt@^1.0.3", "@std/front-matter": "jsr:@std/front-matter@^1.0.5", - "@std/fs": "jsr:@std/fs@^1.0.5", + "@std/fs": "jsr:@std/fs@^1.0.6", "@std/html": "jsr:@std/html@^1.0.3", - "@std/http": "jsr:@std/http@^1.0.10", + "@std/http": "jsr:@std/http@^1.0.11", "@std/ini": "jsr:@std/ini@^1.0.0-rc.5", "@std/internal": "jsr:@std/internal@^1.0.5", "@std/io": "jsr:@std/io@^0.225.0", "@std/json": "jsr:@std/json@^1.0.1", "@std/jsonc": "jsr:@std/jsonc@^1.0.1", - "@std/log": "jsr:@std/log@^0.224.10", + "@std/log": "jsr:@std/log@^0.224.11", "@std/media-types": "jsr:@std/media-types@^1.1.0", "@std/msgpack": "jsr:@std/msgpack@^1.0.2", "@std/net": "jsr:@std/net@^1.0.4", @@ -42,7 +42,7 @@ "@std/tar": "jsr:@std/tar@^0.1.3", "@std/testing": "jsr:@std/testing@^1.0.5", "@std/text": "jsr:@std/text@^1.0.8", - "@std/toml": "jsr:@std/toml@^1.0.1", + "@std/toml": "jsr:@std/toml@^1.0.2", "@std/ulid": "jsr:@std/ulid@^1.0.0", "@std/uuid": "jsr:@std/uuid@^1.0.4", "@std/webgpu": "jsr:@std/webgpu@^0.224.7", diff --git a/log/deno.json b/log/deno.json index 96d0332f8320..49f935303d79 100644 --- a/log/deno.json +++ b/log/deno.json @@ -1,6 +1,6 @@ { "name": "@std/log", - "version": "0.224.10", + "version": "0.224.11", "exports": { ".": "./mod.ts", "./base-handler": "./base_handler.ts", diff --git a/toml/deno.json b/toml/deno.json index ce1e913c4a4e..49843f887648 100644 --- a/toml/deno.json +++ b/toml/deno.json @@ -1,6 +1,6 @@ { "name": "@std/toml", - "version": "1.0.1", + "version": "1.0.2", "exports": { ".": "./mod.ts", "./parse": "./parse.ts",