diff --git a/Releases.md b/Releases.md index 816a843a23a5..54e3a1256b98 100644 --- a/Releases.md +++ b/Releases.md @@ -1,3 +1,68 @@ +### 2025.01.31 + +#### @std/bytes 1.0.5 (patch) + +- refactor(bytes,crypto,encoding,http,io,msgpack,streams,tar): make Uint8Array + usages compatible with TS 5.7 (#6372) + +#### @std/cli 1.0.12 (patch) + +- feat(cli/unstable): support stderr on spinner (#6350) + +#### @std/crypto 1.0.4 (patch) + +- docs(crypto): clarify doc comment (#6368) +- refactor(bytes,crypto,encoding,http,io,msgpack,streams,tar): make Uint8Array + usages compatible with TS 5.7 (#6372) + +#### @std/encoding 1.0.7 (patch) + +- refactor(bytes,crypto,encoding,http,io,msgpack,streams,tar): make Uint8Array + usages compatible with TS 5.7 (#6372) + +#### @std/expect 1.0.13 (patch) + +- test(expect): check error message of `.toBeCloseTo()` (#6296) + +#### @std/fmt 1.0.5 (patch) + +- fix(fmt): make printf working with colors. (#6360) + +#### @std/fs 1.0.11 (patch) + +- feat(fs/unstable): add readLink and readLinkSync (#6373) +- feat(fs/unstable): add link and linkSync (#6369) +- feat(fs/unstable): add realPath and realPathSync (#6366) + +#### @std/http 1.0.13 (patch) + +- refactor(bytes,crypto,encoding,http,io,msgpack,streams,tar): make Uint8Array + usages compatible with TS 5.7 (#6372) + +#### @std/io 0.225.2 (patch) + +- refactor(bytes,crypto,encoding,http,io,msgpack,streams,tar): make Uint8Array + usages compatible with TS 5.7 (#6372) + +#### @std/log 0.224.14 (patch) + +- docs(log): mention potential deprecation of @std/log (#6364) + +#### @std/msgpack 1.0.3 (patch) + +- refactor(bytes,crypto,encoding,http,io,msgpack,streams,tar): make Uint8Array + usages compatible with TS 5.7 (#6372) + +#### @std/streams 1.0.9 (patch) + +- refactor(bytes,crypto,encoding,http,io,msgpack,streams,tar): make Uint8Array + usages compatible with TS 5.7 (#6372) + +#### @std/tar 0.1.5 (patch) + +- refactor(bytes,crypto,encoding,http,io,msgpack,streams,tar): make Uint8Array + usages compatible with TS 5.7 (#6372) + ### 2025.01.22 #### @std/assert 1.0.11 (patch) diff --git a/bytes/deno.json b/bytes/deno.json index 618e91e63b41..2e927e8f9f5b 100644 --- a/bytes/deno.json +++ b/bytes/deno.json @@ -1,6 +1,6 @@ { "name": "@std/bytes", - "version": "1.0.4", + "version": "1.0.5", "exports": { ".": "./mod.ts", "./concat": "./concat.ts", diff --git a/cli/deno.json b/cli/deno.json index 569a90771550..aaab86bc67f4 100644 --- a/cli/deno.json +++ b/cli/deno.json @@ -1,6 +1,6 @@ { "name": "@std/cli", - "version": "1.0.11", + "version": "1.0.12", "exports": { ".": "./mod.ts", "./parse-args": "./parse_args.ts", diff --git a/crypto/deno.json b/crypto/deno.json index b38a0b6eee9a..b43c2d28d638 100644 --- a/crypto/deno.json +++ b/crypto/deno.json @@ -1,6 +1,6 @@ { "name": "@std/crypto", - "version": "1.0.3", + "version": "1.0.4", "exports": { ".": "./mod.ts", "./crypto": "./crypto.ts", diff --git a/encoding/deno.json b/encoding/deno.json index 016f8a3f47ee..cb1870a3bfae 100644 --- a/encoding/deno.json +++ b/encoding/deno.json @@ -1,6 +1,6 @@ { "name": "@std/encoding", - "version": "1.0.6", + "version": "1.0.7", "exports": { ".": "./mod.ts", "./ascii85": "./ascii85.ts", diff --git a/expect/deno.json b/expect/deno.json index 91137260ab12..b64670473e2e 100644 --- a/expect/deno.json +++ b/expect/deno.json @@ -1,6 +1,6 @@ { "name": "@std/expect", - "version": "1.0.12", + "version": "1.0.13", "exports": { ".": "./mod.ts", "./expect": "./expect.ts", diff --git a/fmt/deno.json b/fmt/deno.json index 41d40b01f525..4256ebede623 100644 --- a/fmt/deno.json +++ b/fmt/deno.json @@ -1,6 +1,6 @@ { "name": "@std/fmt", - "version": "1.0.4", + "version": "1.0.5", "exports": { "./bytes": "./bytes.ts", "./colors": "./colors.ts", diff --git a/fs/deno.json b/fs/deno.json index 608d45085d50..e9fa16175f4b 100644 --- a/fs/deno.json +++ b/fs/deno.json @@ -1,6 +1,6 @@ { "name": "@std/fs", - "version": "1.0.10", + "version": "1.0.11", "exports": { ".": "./mod.ts", "./copy": "./copy.ts", diff --git a/http/deno.json b/http/deno.json index 93ba1b572176..dadf0bbc3979 100644 --- a/http/deno.json +++ b/http/deno.json @@ -1,6 +1,6 @@ { "name": "@std/http", - "version": "1.0.12", + "version": "1.0.13", "exports": { ".": "./mod.ts", "./cookie": "./cookie.ts", diff --git a/import_map.json b/import_map.json index ef2a48d65e11..f9cff79c30e6 100644 --- a/import_map.json +++ b/import_map.json @@ -8,38 +8,38 @@ "@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/bytes": "jsr:@std/bytes@^1.0.5", "@std/cache": "jsr:@std/cache@^0.1.3", "@std/cbor": "jsr:@std/cbor@^0.1.6", - "@std/cli": "jsr:@std/cli@^1.0.11", + "@std/cli": "jsr:@std/cli@^1.0.12", "@std/collections": "jsr:@std/collections@^1.0.10", - "@std/crypto": "jsr:@std/crypto@^1.0.3", + "@std/crypto": "jsr:@std/crypto@^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.12", - "@std/fmt": "jsr:@std/fmt@^1.0.4", + "@std/encoding": "jsr:@std/encoding@^1.0.7", + "@std/expect": "jsr:@std/expect@^1.0.13", + "@std/fmt": "jsr:@std/fmt@^1.0.5", "@std/front-matter": "jsr:@std/front-matter@^1.0.5", - "@std/fs": "jsr:@std/fs@^1.0.10", + "@std/fs": "jsr:@std/fs@^1.0.11", "@std/html": "jsr:@std/html@^1.0.3", - "@std/http": "jsr:@std/http@^1.0.12", + "@std/http": "jsr:@std/http@^1.0.13", "@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.1", + "@std/io": "jsr:@std/io@^0.225.2", "@std/json": "jsr:@std/json@^1.0.1", "@std/jsonc": "jsr:@std/jsonc@^1.0.1", - "@std/log": "jsr:@std/log@^0.224.13", + "@std/log": "jsr:@std/log@^0.224.14", "@std/media-types": "jsr:@std/media-types@^1.1.0", - "@std/msgpack": "jsr:@std/msgpack@^1.0.2", + "@std/msgpack": "jsr:@std/msgpack@^1.0.3", "@std/net": "jsr:@std/net@^1.0.4", "@std/path": "jsr:@std/path@^1.0.8", "@std/regexp": "jsr:@std/regexp@^1.0.1", "@std/random": "jsr:@std/random@^0.1.0", "@std/semver": "jsr:@std/semver@^1.0.3", - "@std/streams": "jsr:@std/streams@^1.0.8", - "@std/tar": "jsr:@std/tar@^0.1.4", + "@std/streams": "jsr:@std/streams@^1.0.9", + "@std/tar": "jsr:@std/tar@^0.1.5", "@std/testing": "jsr:@std/testing@^1.0.9", "@std/text": "jsr:@std/text@^1.0.10", "@std/toml": "jsr:@std/toml@^1.0.2", diff --git a/io/deno.json b/io/deno.json index 68042fab6f06..2a6ffa5fd8ba 100644 --- a/io/deno.json +++ b/io/deno.json @@ -1,6 +1,6 @@ { "name": "@std/io", - "version": "0.225.1", + "version": "0.225.2", "exports": { ".": "./mod.ts", "./buffer": "./buffer.ts", diff --git a/log/deno.json b/log/deno.json index 8437c073596e..08b9efe3c376 100644 --- a/log/deno.json +++ b/log/deno.json @@ -1,6 +1,6 @@ { "name": "@std/log", - "version": "0.224.13", + "version": "0.224.14", "exports": { ".": "./mod.ts", "./base-handler": "./base_handler.ts", diff --git a/msgpack/deno.json b/msgpack/deno.json index 4e39c6b0aad0..40180351ea1d 100644 --- a/msgpack/deno.json +++ b/msgpack/deno.json @@ -1,6 +1,6 @@ { "name": "@std/msgpack", - "version": "1.0.2", + "version": "1.0.3", "exports": { ".": "./mod.ts", "./decode": "./decode.ts", diff --git a/streams/deno.json b/streams/deno.json index cd5a18764ddb..81ca3e6f11c8 100644 --- a/streams/deno.json +++ b/streams/deno.json @@ -1,6 +1,6 @@ { "name": "@std/streams", - "version": "1.0.8", + "version": "1.0.9", "exports": { ".": "./mod.ts", "./buffer": "./buffer.ts", diff --git a/tar/deno.json b/tar/deno.json index 033d4caa621a..4d7d40e927c3 100644 --- a/tar/deno.json +++ b/tar/deno.json @@ -1,6 +1,6 @@ { "name": "@std/tar", - "version": "0.1.4", + "version": "0.1.5", "exports": { ".": "./mod.ts", "./tar-stream": "./tar_stream.ts",