Skip to content

Commit

Permalink
chore: release 2024.11.22 (#6205)
Browse files Browse the repository at this point in the history
Co-authored-by: kt3k <[email protected]>
  • Loading branch information
denobot and kt3k authored Nov 22, 2024
1 parent a334956 commit 4989ba7
Show file tree
Hide file tree
Showing 8 changed files with 44 additions and 12 deletions.
32 changes: 32 additions & 0 deletions Releases.md
Original file line number Diff line number Diff line change
@@ -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)
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.8",
"version": "1.0.9",
"exports": {
".": "./mod.ts",
"./abortable": "./abortable.ts",
Expand Down
2 changes: 1 addition & 1 deletion csv/deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@std/csv",
"version": "1.0.3",
"version": "1.0.4",
"exports": {
".": "./mod.ts",
"./parse": "./parse.ts",
Expand Down
2 changes: 1 addition & 1 deletion fs/deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@std/fs",
"version": "1.0.5",
"version": "1.0.6",
"exports": {
".": "./mod.ts",
"./copy": "./copy.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.10",
"version": "1.0.11",
"exports": {
".": "./mod.ts",
"./cookie": "./cookie.ts",
Expand Down
12 changes: 6 additions & 6 deletions import_map.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,30 +7,30 @@
"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",
"@std/encoding": "jsr:@std/encoding@^1.0.5",
"@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",
Expand All @@ -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",
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.10",
"version": "0.224.11",
"exports": {
".": "./mod.ts",
"./base-handler": "./base_handler.ts",
Expand Down
2 changes: 1 addition & 1 deletion toml/deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@std/toml",
"version": "1.0.1",
"version": "1.0.2",
"exports": {
".": "./mod.ts",
"./parse": "./parse.ts",
Expand Down

0 comments on commit 4989ba7

Please sign in to comment.