From 10ee73dbbcf6e55fca62d1dccb7c086911030f28 Mon Sep 17 00:00:00 2001 From: denobot <33910674+denobot@users.noreply.github.com> Date: Thu, 24 Oct 2024 06:23:22 -0400 Subject: [PATCH] chore: release 2024.10.24 (#6145) Co-authored-by: kt3k --- Releases.md | 51 +++++++++++++++++++++++++++++++++++++++++++ async/deno.json | 2 +- cbor/deno.json | 2 +- collections/deno.json | 2 +- expect/deno.json | 2 +- fmt/deno.json | 2 +- fs/deno.json | 2 +- http/deno.json | 2 +- import_map.json | 22 +++++++++---------- json/deno.json | 2 +- path/deno.json | 2 +- tar/deno.json | 2 +- text/deno.json | 2 +- 13 files changed, 73 insertions(+), 22 deletions(-) diff --git a/Releases.md b/Releases.md index f1d8dd95efe0..bbe6f1cc6d6b 100644 --- a/Releases.md +++ b/Releases.md @@ -1,3 +1,54 @@ +### 2024.10.24 + +#### @std/async 1.0.7 (patch) + +- feat(async/unstable): add `throttle()` function (#6110) + +#### @std/cbor 0.1.2 (patch) + +- refactor(cbor): replace `toByteStream` function in common with import from + `@std/streams` (#6107) +- test(cbor): number precision error in decoding test (#6115) +- test(cbor): empty string being excluded from expected result (#6106) + +#### @std/collections 1.0.9 (patch) + +- feat(collections/unstable): support `Iterable` argument in `slidingWindows` + (#6095) + +#### @std/expect 1.0.6 (patch) + +- fix(expect): support `expect.objectContaining` (#6065) + +#### @std/fmt 1.0.3 (patch) + +- docs(fmt): fix %f width typo in printf docs (#6139) +- test(fmt): handle missing group separator for 1000.1 in some locales (#6117) + +#### @std/fs 1.0.5 (patch) + +- refactor(fs): fix uncaught errors in browsers (#6135) + +#### @std/http 1.0.9 (patch) + +- fix(http): fix tablet and smarttv in Device.type literal types (#6129) + +#### @std/json 1.0.1 (patch) + +- refactor(json): fix typo (#6103) + +#### @std/path 1.0.7 (patch) + +- docs(path): re-add URL examples to `@std/path/posix` examples (#6105) + +#### @std/tar 0.1.3 (patch) + +- docs(tar): fix example in creating directories (#6113) + +#### @std/text 1.0.8 (patch) + +- feat(text/unstable): handle non-Latin-script text in `slugify` (#6012) + ### 2024.10.10a #### @std/cbor 0.1.1 (patch) diff --git a/async/deno.json b/async/deno.json index e815c8ed28cb..c84e4280f107 100644 --- a/async/deno.json +++ b/async/deno.json @@ -1,6 +1,6 @@ { "name": "@std/async", - "version": "1.0.6", + "version": "1.0.7", "exports": { ".": "./mod.ts", "./abortable": "./abortable.ts", diff --git a/cbor/deno.json b/cbor/deno.json index d769ec6d619a..e5c5d043a265 100644 --- a/cbor/deno.json +++ b/cbor/deno.json @@ -1,6 +1,6 @@ { "name": "@std/cbor", - "version": "0.1.1", + "version": "0.1.2", "exports": { ".": "./mod.ts", "./array-encoder-stream": "./array_encoder_stream.ts", diff --git a/collections/deno.json b/collections/deno.json index 1dd139cdb2cd..a785cd13deb4 100644 --- a/collections/deno.json +++ b/collections/deno.json @@ -1,6 +1,6 @@ { "name": "@std/collections", - "version": "1.0.8", + "version": "1.0.9", "exports": { ".": "./mod.ts", "./aggregate-groups": "./aggregate_groups.ts", diff --git a/expect/deno.json b/expect/deno.json index 930befa35b4b..ad3f0925e57d 100644 --- a/expect/deno.json +++ b/expect/deno.json @@ -1,6 +1,6 @@ { "name": "@std/expect", - "version": "1.0.5", + "version": "1.0.6", "exports": { ".": "./mod.ts", "./expect": "./expect.ts", diff --git a/fmt/deno.json b/fmt/deno.json index 4e15c58a179a..3cc160676ca4 100644 --- a/fmt/deno.json +++ b/fmt/deno.json @@ -1,6 +1,6 @@ { "name": "@std/fmt", - "version": "1.0.2", + "version": "1.0.3", "exports": { "./bytes": "./bytes.ts", "./colors": "./colors.ts", diff --git a/fs/deno.json b/fs/deno.json index 8314611d8e19..885c9857af42 100644 --- a/fs/deno.json +++ b/fs/deno.json @@ -1,6 +1,6 @@ { "name": "@std/fs", - "version": "1.0.4", + "version": "1.0.5", "exports": { ".": "./mod.ts", "./copy": "./copy.ts", diff --git a/http/deno.json b/http/deno.json index a13cb15d1aa3..754ba9d9923f 100644 --- a/http/deno.json +++ b/http/deno.json @@ -1,6 +1,6 @@ { "name": "@std/http", - "version": "1.0.8", + "version": "1.0.9", "exports": { ".": "./mod.ts", "./cookie": "./cookie.ts", diff --git a/import_map.json b/import_map.json index 00fdbda3a82c..0fcef2574791 100644 --- a/import_map.json +++ b/import_map.json @@ -8,41 +8,41 @@ "@std/archive": "jsr:@std/archive@^0.225.4", "@std/assert": "jsr:@std/assert@^1.0.6", - "@std/async": "jsr:@std/async@^1.0.6", + "@std/async": "jsr:@std/async@^1.0.7", "@std/bytes": "jsr:@std/bytes@^1.0.2", "@std/cache": "jsr:@std/cache@^0.1.3", - "@std/cbor": "jsr:@std/cbor@^0.1.1", + "@std/cbor": "jsr:@std/cbor@^0.1.2", "@std/cli": "jsr:@std/cli@^1.0.6", - "@std/collections": "jsr:@std/collections@^1.0.8", + "@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/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.5", - "@std/fmt": "jsr:@std/fmt@^1.0.2", + "@std/expect": "jsr:@std/expect@^1.0.6", + "@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.4", + "@std/fs": "jsr:@std/fs@^1.0.5", "@std/html": "jsr:@std/html@^1.0.3", - "@std/http": "jsr:@std/http@^1.0.8", + "@std/http": "jsr:@std/http@^1.0.9", "@std/ini": "jsr:@std/ini@^1.0.0-rc.4", "@std/internal": "jsr:@std/internal@^1.0.4", "@std/io": "jsr:@std/io@^0.225.0", - "@std/json": "jsr:@std/json@^1.0.0", + "@std/json": "jsr:@std/json@^1.0.1", "@std/jsonc": "jsr:@std/jsonc@^1.0.1", "@std/log": "jsr:@std/log@^0.224.9", "@std/media-types": "jsr:@std/media-types@^1.0.3", "@std/msgpack": "jsr:@std/msgpack@^1.0.2", "@std/net": "jsr:@std/net@^1.0.4", - "@std/path": "jsr:@std/path@^1.0.6", + "@std/path": "jsr:@std/path@^1.0.7", "@std/regexp": "jsr:@std/regexp@^1.0.0", "@std/random": "jsr:@std/random@^0.1.0", "@std/semver": "jsr:@std/semver@^1.0.3", "@std/streams": "jsr:@std/streams@^1.0.7", - "@std/tar": "jsr:@std/tar@^0.1.2", + "@std/tar": "jsr:@std/tar@^0.1.3", "@std/testing": "jsr:@std/testing@^1.0.3", - "@std/text": "jsr:@std/text@^1.0.7", + "@std/text": "jsr:@std/text@^1.0.8", "@std/toml": "jsr:@std/toml@^1.0.1", "@std/ulid": "jsr:@std/ulid@^1.0.0", "@std/uuid": "jsr:@std/uuid@^1.0.4", diff --git a/json/deno.json b/json/deno.json index 1a1c3fc76adc..b18cf25adcbe 100644 --- a/json/deno.json +++ b/json/deno.json @@ -1,6 +1,6 @@ { "name": "@std/json", - "version": "1.0.0", + "version": "1.0.1", "exports": { ".": "./mod.ts", "./types": "./types.ts", diff --git a/path/deno.json b/path/deno.json index 789231f78477..1b38f210547e 100644 --- a/path/deno.json +++ b/path/deno.json @@ -1,6 +1,6 @@ { "name": "@std/path", - "version": "1.0.6", + "version": "1.0.7", "exports": { ".": "./mod.ts", "./basename": "./basename.ts", diff --git a/tar/deno.json b/tar/deno.json index e213b131b9af..31b983d4d017 100644 --- a/tar/deno.json +++ b/tar/deno.json @@ -1,6 +1,6 @@ { "name": "@std/tar", - "version": "0.1.2", + "version": "0.1.3", "exports": { ".": "./mod.ts", "./tar-stream": "./tar_stream.ts", diff --git a/text/deno.json b/text/deno.json index 76947f730581..9c475257d44d 100644 --- a/text/deno.json +++ b/text/deno.json @@ -1,6 +1,6 @@ { "name": "@std/text", - "version": "1.0.7", + "version": "1.0.8", "exports": { ".": "./mod.ts", "./closest-string": "./closest_string.ts",