From 673c436739de5572b0ddd40a07f9e58f5bc53c58 Mon Sep 17 00:00:00 2001 From: denobot <33910674+denobot@users.noreply.github.com> Date: Wed, 29 May 2024 18:56:12 +0900 Subject: [PATCH] chore: release 2024.05.29 (#4883) Co-authored-by: kt3k --- Releases.md | 88 +++++++++++++++++++++++++++++++++++++++ cli/deno.json | 2 +- data_structures/deno.json | 2 +- deno.json | 32 +++++++------- encoding/deno.json | 2 +- expect/deno.json | 2 +- fmt/deno.json | 2 +- front_matter/deno.json | 2 +- html/deno.json | 2 +- http/deno.json | 2 +- ini/deno.json | 2 +- msgpack/deno.json | 2 +- semver/deno.json | 2 +- streams/deno.json | 2 +- text/deno.json | 2 +- ulid/deno.json | 2 +- uuid/deno.json | 2 +- yaml/deno.json | 2 +- 18 files changed, 120 insertions(+), 32 deletions(-) diff --git a/Releases.md b/Releases.md index 4f0d5d578..bb665060f 100644 --- a/Releases.md +++ b/Releases.md @@ -1,3 +1,91 @@ +### 2024.05.29 + +#### @std/cli 0.224.4 (patch) + +- fix(cli): reduce flicker in spinner render function (#4835) +- docs(cli): make check_docs pass (#4815) +- docs(cli): improve spinner.message document (#4785) +- test(cli): reduce the flakiness of `Spinner` test cases (#4844) + +#### @std/data-structures 0.225.0 (minor) + +- BREAKING(data-structures): hide private internals (#4827) +- docs(data-structures): enables doc lint of data-structures (#4847) + +#### @std/encoding 0.224.3 (patch) + +- docs(encoding): fix typo in `ascii85.ts` (#4854) +- docs(encoding): Cleanup and fix doc lints (#4838) +- refactor(encoding): remove unnecessary prefixes from private functions (#4862) +- refactor(encoding): rename `_util.ts` (#4860) +- test(encoding): use own `encodeHex()` and `decodeHex()` (#4863) + +#### @std/expect 0.224.3 (patch) + +- docs(expect): document methods and add examples (#4836) + +#### @std/fmt 0.225.2 (patch) + +- docs(fmt): improve API docs (#4829) + +#### @std/front-matter 0.224.1 (patch) + +- docs(front-matter): improve docs for stabilization (#4789) + +#### @std/html 0.224.1 (patch) + +- docs(html): improve API docs (#4878) + +#### @std/http 0.224.2 (patch) + +- docs(http): don't run some examples in doc checker (#4840) +- docs(http): improve docs for stabilization (#4813) + +#### @std/ini 0.225.0 (minor) + +- BREAKING(ini): remove internal `Formatting` type (#4818) +- fix(ini): remove unused `ParseOptions.assignment` property (#4816) +- docs(ini): add missing doc comments (#4819) +- refactor(ini): move StringifyOptions to stringify.ts (#4817) + +#### @std/msgpack 0.224.2 (patch) + +- fix(msgpack): error on early end of data (#4831) +- docs(msgpack): complete documentation of the package (#4832) + +#### @std/semver 0.224.1 (patch) + +- docs(semver): improve docs (#4846) + +#### @std/streams 0.224.2 (patch) + +- docs(streams): improve docs for stabilization (#4852) + +#### @std/text 0.224.1 (patch) + +- docs(text): pass docs check (#4837) +- docs(text): add module doc (#4812) + +#### @std/ulid 0.224.1 (patch) + +- docs(ulid): finish documentation (#4825) + +#### @std/uuid 0.224.3 (patch) + +- deprecation(uuid): deprecate `v1.generate()` signature with `buf` and `offset` + parameters (#4880) +- deprecation(uuid): rename `V1Options` to `GenerateOptions` (#4872) +- fix(uuid): validate namespace UUIDs in `v3.generate()` and `v5.generate()` + (#4874) +- docs(uuid): update module docs (#4790) +- test(uuid): add tests for invalid namespace UUID (#4875) + +#### @std/yaml 0.224.1 (patch) + +- refactor(yaml): remove dead code (#4849) +- test(yaml): test handling of omap (#4851) +- test(yaml): test float handling (#4850) + ### 2024.05.22 #### @std/assert 0.225.3 (patch) diff --git a/cli/deno.json b/cli/deno.json index 0598c84f0..e40932790 100644 --- a/cli/deno.json +++ b/cli/deno.json @@ -1,6 +1,6 @@ { "name": "@std/cli", - "version": "0.224.3", + "version": "0.224.4", "exports": { ".": "./mod.ts", "./parse-args": "./parse_args.ts", diff --git a/data_structures/deno.json b/data_structures/deno.json index 3e7844c3a..8cc877a78 100644 --- a/data_structures/deno.json +++ b/data_structures/deno.json @@ -1,6 +1,6 @@ { "name": "@std/data-structures", - "version": "0.224.1", + "version": "0.225.0", "exports": { ".": "./mod.ts", "./binary-heap": "./binary_heap.ts", diff --git a/deno.json b/deno.json index c97e5eee3..0e2f3597a 100644 --- a/deno.json +++ b/deno.json @@ -16,41 +16,41 @@ "@std/assert": "jsr:@std/assert@^0.225.3", "@std/async": "jsr:@std/async@^0.224.1", "@std/bytes": "jsr:@std/bytes@^1.0.0-rc.3", - "@std/cli": "jsr:@std/cli@^0.224.3", + "@std/cli": "jsr:@std/cli@^0.224.4", "@std/collections": "jsr:@std/collections@^1.0.0-rc.1", "@std/crypto": "jsr:@std/crypto@^0.224.0", "@std/csv": "jsr:@std/csv@^0.224.1", - "@std/data-structures": "jsr:@std/data-structures@^0.224.1", + "@std/data-structures": "jsr:@std/data-structures@^0.225.0", "@std/datetime": "jsr:@std/datetime@^0.224.0", "@std/dotenv": "jsr:@std/dotenv@^0.224.0", - "@std/encoding": "jsr:@std/encoding@^0.224.2", - "@std/expect": "jsr:@std/expect@^0.224.2", - "@std/fmt": "jsr:@std/fmt@^0.225.1", - "@std/front-matter": "jsr:@std/front-matter@^0.224.0", + "@std/encoding": "jsr:@std/encoding@^0.224.3", + "@std/expect": "jsr:@std/expect@^0.224.3", + "@std/fmt": "jsr:@std/fmt@^0.225.2", + "@std/front-matter": "jsr:@std/front-matter@^0.224.1", "@std/fs": "jsr:@std/fs@^0.229.1", - "@std/html": "jsr:@std/html@^0.224.0", - "@std/http": "jsr:@std/http@^0.224.1", - "@std/ini": "jsr:@std/ini@^0.224.0", + "@std/html": "jsr:@std/html@^0.224.1", + "@std/http": "jsr:@std/http@^0.224.2", + "@std/ini": "jsr:@std/ini@^0.225.0", "@std/internal": "jsr:@std/internal@^1.0.0", "@std/io": "jsr:@std/io@^0.224.0", "@std/json": "jsr:@std/json@^0.224.1", "@std/jsonc": "jsr:@std/jsonc@^0.224.0", "@std/log": "jsr:@std/log@^0.224.1", "@std/media-types": "jsr:@std/media-types@^1.0.0-rc.1", - "@std/msgpack": "jsr:@std/msgpack@^0.224.1", + "@std/msgpack": "jsr:@std/msgpack@^0.224.2", "@std/net": "jsr:@std/net@^0.224.1", "@std/path": "jsr:@std/path@^0.225.1", "@std/regexp": "jsr:@std/regexp@^0.224.1", - "@std/semver": "jsr:@std/semver@^0.224.0", - "@std/streams": "jsr:@std/streams@^0.224.1", + "@std/semver": "jsr:@std/semver@^0.224.1", + "@std/streams": "jsr:@std/streams@^0.224.2", "@std/testing": "jsr:@std/testing@^0.224.0", - "@std/text": "jsr:@std/text@^0.224.0", + "@std/text": "jsr:@std/text@^0.224.1", "@std/toml": "jsr:@std/toml@^0.224.0", - "@std/ulid": "jsr:@std/ulid@^0.224.0", + "@std/ulid": "jsr:@std/ulid@^0.224.1", "@std/url": "jsr:@std/url@^0.224.0", - "@std/uuid": "jsr:@std/uuid@^0.224.0", + "@std/uuid": "jsr:@std/uuid@^0.224.3", "@std/webgpu": "jsr:@std/webgpu@^0.224.2", - "@std/yaml": "jsr:@std/yaml@^0.224.0" + "@std/yaml": "jsr:@std/yaml@^0.224.1" }, "tasks": { "test": "RUST_BACKTRACE=1 deno test --unstable-http --unstable-webgpu --doc --allow-all --parallel --coverage --trace-leaks", diff --git a/encoding/deno.json b/encoding/deno.json index 79bc879f6..f69c13cac 100644 --- a/encoding/deno.json +++ b/encoding/deno.json @@ -1,6 +1,6 @@ { "name": "@std/encoding", - "version": "0.224.2", + "version": "0.224.3", "exports": { ".": "./mod.ts", "./ascii85": "./ascii85.ts", diff --git a/expect/deno.json b/expect/deno.json index 6216f51c7..7c0aee475 100644 --- a/expect/deno.json +++ b/expect/deno.json @@ -1,6 +1,6 @@ { "name": "@std/expect", - "version": "0.224.2", + "version": "0.224.3", "exports": { ".": "./mod.ts", "./expect": "./expect.ts", diff --git a/fmt/deno.json b/fmt/deno.json index 7da8561c0..7141eadb4 100644 --- a/fmt/deno.json +++ b/fmt/deno.json @@ -1,6 +1,6 @@ { "name": "@std/fmt", - "version": "0.225.1", + "version": "0.225.2", "exports": { "./bytes": "./bytes.ts", "./colors": "./colors.ts", diff --git a/front_matter/deno.json b/front_matter/deno.json index 93a77dfec..9a34b20dc 100644 --- a/front_matter/deno.json +++ b/front_matter/deno.json @@ -1,6 +1,6 @@ { "name": "@std/front-matter", - "version": "0.224.0", + "version": "0.224.1", "exports": { ".": "./mod.ts", "./any": "./any.ts", diff --git a/html/deno.json b/html/deno.json index 73b63e62a..6d1cbea0f 100644 --- a/html/deno.json +++ b/html/deno.json @@ -1,6 +1,6 @@ { "name": "@std/html", - "version": "0.224.0", + "version": "0.224.1", "exports": { ".": "./mod.ts", "./entities": "./entities.ts", diff --git a/http/deno.json b/http/deno.json index 906b07584..2878b6cfc 100644 --- a/http/deno.json +++ b/http/deno.json @@ -1,6 +1,6 @@ { "name": "@std/http", - "version": "0.224.1", + "version": "0.224.2", "exports": { ".": "./mod.ts", "./cookie": "./cookie.ts", diff --git a/ini/deno.json b/ini/deno.json index 8f8503a96..8055c7a2a 100644 --- a/ini/deno.json +++ b/ini/deno.json @@ -1,6 +1,6 @@ { "name": "@std/ini", - "version": "0.224.0", + "version": "0.225.0", "exports": { ".": "./mod.ts", "./ini-map": "./ini_map.ts", diff --git a/msgpack/deno.json b/msgpack/deno.json index a074ad04d..32bf4de6c 100644 --- a/msgpack/deno.json +++ b/msgpack/deno.json @@ -1,6 +1,6 @@ { "name": "@std/msgpack", - "version": "0.224.1", + "version": "0.224.2", "exports": { ".": "./mod.ts", "./decode": "./decode.ts", diff --git a/semver/deno.json b/semver/deno.json index a0be70787..eceda3b57 100644 --- a/semver/deno.json +++ b/semver/deno.json @@ -1,6 +1,6 @@ { "name": "@std/semver", - "version": "0.224.0", + "version": "0.224.1", "exports": { ".": "./mod.ts", "./can-parse": "./can_parse.ts", diff --git a/streams/deno.json b/streams/deno.json index 36491ad4d..b5656c32a 100644 --- a/streams/deno.json +++ b/streams/deno.json @@ -1,6 +1,6 @@ { "name": "@std/streams", - "version": "0.224.1", + "version": "0.224.2", "exports": { ".": "./mod.ts", "./buffer": "./buffer.ts", diff --git a/text/deno.json b/text/deno.json index 73eb8178d..f64e12878 100644 --- a/text/deno.json +++ b/text/deno.json @@ -1,6 +1,6 @@ { "name": "@std/text", - "version": "0.224.0", + "version": "0.224.1", "exports": { ".": "./mod.ts", "./case": "./case.ts", diff --git a/ulid/deno.json b/ulid/deno.json index 8fd915f8b..f69224713 100644 --- a/ulid/deno.json +++ b/ulid/deno.json @@ -1,5 +1,5 @@ { "name": "@std/ulid", - "version": "0.224.0", + "version": "0.224.1", "exports": "./mod.ts" } diff --git a/uuid/deno.json b/uuid/deno.json index dab79ed66..d9fe9a857 100644 --- a/uuid/deno.json +++ b/uuid/deno.json @@ -1,6 +1,6 @@ { "name": "@std/uuid", - "version": "0.224.2", + "version": "0.224.3", "exports": { ".": "./mod.ts", "./common": "./common.ts", diff --git a/yaml/deno.json b/yaml/deno.json index 48e6c7d31..89d85e58c 100644 --- a/yaml/deno.json +++ b/yaml/deno.json @@ -1,6 +1,6 @@ { "name": "@std/yaml", - "version": "0.224.0", + "version": "0.224.1", "exports": { ".": "./mod.ts", "./parse": "./parse.ts",