From 88d17bb1f7f8ed3772746dec8d5ed1983d128bab Mon Sep 17 00:00:00 2001 From: kt3k Date: Wed, 22 Jan 2025 07:39:17 +0000 Subject: [PATCH] chore: update versions --- Releases.md | 42 ++++++++++++++++++++++++++++++++++++++++++ assert/deno.json | 2 +- async/deno.json | 2 +- cbor/deno.json | 2 +- cli/deno.json | 2 +- collections/deno.json | 2 +- csv/deno.json | 2 +- expect/deno.json | 2 +- fs/deno.json | 2 +- import_map.json | 18 +++++++++--------- io/deno.json | 2 +- 11 files changed, 60 insertions(+), 18 deletions(-) diff --git a/Releases.md b/Releases.md index 4126ad66976b..816a843a23a5 100644 --- a/Releases.md +++ b/Releases.md @@ -1,3 +1,45 @@ +### 2025.01.22 + +#### @std/assert 1.0.11 (patch) + +- fix(assert): handle `__proto__` correctly in `assertObjectMatch` (#6342) + +#### @std/async 1.0.10 (patch) + +- feat(async/unstable): add `waitFor` function to wait for condition to be true + (#6230) + +#### @std/cbor 0.1.6 (patch) + +- fix(cbor): incorrect decoding with subarrays (#6344) + +#### @std/cli 1.0.11 (patch) + +- fix(cli): handle overflow in `promptSecret` (#6318) + +#### @std/collections 1.0.10 (patch) + +- docs(collections): add the word "unique" to `distinctBy` JSDoc for grepping + purposes (#6336) + +#### @std/csv 1.0.5 (patch) + +- test(csv): unstable stringify tests (#6337) + +#### @std/expect 1.0.12 (patch) + +- docs(expect): fix typo on objectContaining example (#6357) + +#### @std/fs 1.0.10 (patch) + +- feat(fs/unstable): add symlink and symlinkSync (#6352) +- feat(fs/unstable): add chmod and chmodSync (#6343) +- feat(fs/unstable): add readDir (#6338) + +#### @std/io 0.225.1 (patch) + +- fix(io): fix readAllSync for the case when read source is slow (#6355) + ### 2025.01.10 #### @std/cbor 0.1.5 (patch) diff --git a/assert/deno.json b/assert/deno.json index 0d688cee1e64..c0752967430c 100644 --- a/assert/deno.json +++ b/assert/deno.json @@ -1,6 +1,6 @@ { "name": "@std/assert", - "version": "1.0.10", + "version": "1.0.11", "exports": { ".": "./mod.ts", "./assert": "./assert.ts", diff --git a/async/deno.json b/async/deno.json index 80f9324f61ea..dac865214a22 100644 --- a/async/deno.json +++ b/async/deno.json @@ -1,6 +1,6 @@ { "name": "@std/async", - "version": "1.0.9", + "version": "1.0.10", "exports": { ".": "./mod.ts", "./abortable": "./abortable.ts", diff --git a/cbor/deno.json b/cbor/deno.json index 8d4c02a846ee..cd7aac581542 100644 --- a/cbor/deno.json +++ b/cbor/deno.json @@ -1,6 +1,6 @@ { "name": "@std/cbor", - "version": "0.1.5", + "version": "0.1.6", "exports": { ".": "./mod.ts", "./array-encoder-stream": "./array_encoder_stream.ts", diff --git a/cli/deno.json b/cli/deno.json index 3b6cb5c7696b..569a90771550 100644 --- a/cli/deno.json +++ b/cli/deno.json @@ -1,6 +1,6 @@ { "name": "@std/cli", - "version": "1.0.10", + "version": "1.0.11", "exports": { ".": "./mod.ts", "./parse-args": "./parse_args.ts", diff --git a/collections/deno.json b/collections/deno.json index a785cd13deb4..b99dfb983412 100644 --- a/collections/deno.json +++ b/collections/deno.json @@ -1,6 +1,6 @@ { "name": "@std/collections", - "version": "1.0.9", + "version": "1.0.10", "exports": { ".": "./mod.ts", "./aggregate-groups": "./aggregate_groups.ts", diff --git a/csv/deno.json b/csv/deno.json index deeff624d630..0cab9d9372b1 100644 --- a/csv/deno.json +++ b/csv/deno.json @@ -1,6 +1,6 @@ { "name": "@std/csv", - "version": "1.0.4", + "version": "1.0.5", "exports": { ".": "./mod.ts", "./parse": "./parse.ts", diff --git a/expect/deno.json b/expect/deno.json index cbca4f53becd..91137260ab12 100644 --- a/expect/deno.json +++ b/expect/deno.json @@ -1,6 +1,6 @@ { "name": "@std/expect", - "version": "1.0.11", + "version": "1.0.12", "exports": { ".": "./mod.ts", "./expect": "./expect.ts", diff --git a/fs/deno.json b/fs/deno.json index cd2c9bd9732c..26fe767ec40f 100644 --- a/fs/deno.json +++ b/fs/deno.json @@ -1,6 +1,6 @@ { "name": "@std/fs", - "version": "1.0.9", + "version": "1.0.10", "exports": { ".": "./mod.ts", "./copy": "./copy.ts", diff --git a/import_map.json b/import_map.json index facf26b029ed..4e2bc2352727 100644 --- a/import_map.json +++ b/import_map.json @@ -6,28 +6,28 @@ "automation/": "https://raw.githubusercontent.com/denoland/automation/0.10.0/", "graphviz": "npm:node-graphviz@^0.1.1", - "@std/assert": "jsr:@std/assert@^1.0.10", - "@std/async": "jsr:@std/async@^1.0.9", + "@std/assert": "jsr:@std/assert@^1.0.11", + "@std/async": "jsr:@std/async@^1.0.10", "@std/bytes": "jsr:@std/bytes@^1.0.4", "@std/cache": "jsr:@std/cache@^0.1.3", - "@std/cbor": "jsr:@std/cbor@^0.1.5", - "@std/cli": "jsr:@std/cli@^1.0.10", - "@std/collections": "jsr:@std/collections@^1.0.9", + "@std/cbor": "jsr:@std/cbor@^0.1.6", + "@std/cli": "jsr:@std/cli@^1.0.11", + "@std/collections": "jsr:@std/collections@^1.0.10", "@std/crypto": "jsr:@std/crypto@^1.0.3", - "@std/csv": "jsr:@std/csv@^1.0.4", + "@std/csv": "jsr:@std/csv@^1.0.5", "@std/data-structures": "jsr:@std/data-structures@^1.0.6", "@std/datetime": "jsr:@std/datetime@^0.225.3", "@std/dotenv": "jsr:@std/dotenv@^0.225.3", "@std/encoding": "jsr:@std/encoding@^1.0.6", - "@std/expect": "jsr:@std/expect@^1.0.11", + "@std/expect": "jsr:@std/expect@^1.0.12", "@std/fmt": "jsr:@std/fmt@^1.0.4", "@std/front-matter": "jsr:@std/front-matter@^1.0.5", - "@std/fs": "jsr:@std/fs@^1.0.9", + "@std/fs": "jsr:@std/fs@^1.0.10", "@std/html": "jsr:@std/html@^1.0.3", "@std/http": "jsr:@std/http@^1.0.12", "@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/io": "jsr:@std/io@^0.225.1", "@std/json": "jsr:@std/json@^1.0.1", "@std/jsonc": "jsr:@std/jsonc@^1.0.1", "@std/log": "jsr:@std/log@^0.224.13", diff --git a/io/deno.json b/io/deno.json index 94eccc3931ba..68042fab6f06 100644 --- a/io/deno.json +++ b/io/deno.json @@ -1,6 +1,6 @@ { "name": "@std/io", - "version": "0.225.0", + "version": "0.225.1", "exports": { ".": "./mod.ts", "./buffer": "./buffer.ts",