diff --git a/Releases.md b/Releases.md index cd87a0f6d2c2..231fee06007f 100644 --- a/Releases.md +++ b/Releases.md @@ -1,3 +1,76 @@ +### 2024.01.31 + +#### @std/io 0.214.0 (minor) +- BREAKING(io): remove `types.d.ts` (#4237) +- feat(io): un-deprecate `Buffer` (#4184) +- docs(io): fix `io` module is marked deprecated (#4252) + +#### @std/expect 0.213.1 (patch) +- fix(expect): add Error object equal check. (#4248) +- fix(expect): align `toEqual` to jest (#4246) +- fix(expect): fix the function signature of `toMatchObject()` (#4202) + +#### @std/log 0.214.0 (minor) +- BREAKING(log): remove string formatter (#4239) +- BREAKING(log): single-export handler files (#4236) +- feat(tools,log,http,semver): check mod exports, export items consistently from mod.ts (#4229) +- feat(log): make handlers disposable (#4195) +- fix(log): make `flattenArgs()` private (#4214) +- refactor(log): remove log private methods/properties underscore (#4243) +- refactor(log): tidy imports and exports (#4215) +- refactor(log): replace deprecated imports (#4188) + +#### @std/http 0.214.0 (minor) +- BREAKING(http): remove `CookieMap` (#4179) +- feat(tools,log,http,semver): check mod exports, export items consistently from mod.ts (#4229) +- docs(http): complete documentation (#4209) + +#### @std/semver 0.214.0 (minor) +- BREAKING(semver): remove `FormatStyle` (#4182) +- BREAKING(semver): remove `compareBuild()` (#4181) +- BREAKING(semver): remove `rsort()` (#4180) +- feat(tools,log,http,semver): check mod exports, export items consistently from mod.ts (#4229) +- deprecation(semver): rename `eq()`, `neq()`, `lt()`, `lte()`, `gt()` and `gte()` (#4083) +- deprecation(semver): deprecate `SemVerRange`, introduce `Range` (#4161) +- deprecation(semver): deprecate `outside()` (#4185) +- refactor(semver): replace `parseComparator()` with comparator objects (#4204) + +#### @std/streams 0.214.0 (minor) +- BREAKING(streams): remove `readAll()`, `writeAll()` and `copy()` (#4238) +- docs(streams): remove `Deno.metrics()` use in example (#4217) + +#### @std/webgpu 0.213.1 (patch) +- refactor(webgpu): use internal `Deno.close()` for cleanup of WebGPU resources (#4231) + +#### @std/collections 0.214.0 (minor) +- feat(collections): pass `key` to `mapValues()` transformer (#4127) + +#### @std/toml 0.213.1 (patch) +- fix(toml): `parse()` duplicates the character next to reserved escape sequences (#4192) +- docs(toml): complete documentation (#4223) +- test(toml): improve test coverage (#4211) + +#### @std/path 0.213.1 (patch) +- deprecation(path): split off all constants into their own files and deprecate old names (#4153) + +#### @std/msgpack 0.213.1 (patch) +- docs(msgpack): complete documentation (#4220) + +#### @std/media_types 0.213.1 (patch) +- docs(media_types): complete documentation (#4219) + +#### @std/console 0.213.1 (patch) +- refactor(console): rename `_rle` to `_run_length.ts` (#4212) + +#### @std/fmt 0.213.1 (patch) +- fix(fmt): correct `stripColor()` deprecation notice (#4208) + +#### @std/flags 0.213.1 (patch) +- fix(flags): correct deprecation notices (#4207) + +#### @std/crypto 0.213.1 (patch) +- chore(crypto): upgrade to `rust@1.75.0` and `wasmbuild@0.15.5` (#4193) + ### 0.213.0 / 2024.01.25 - BREAKING(http): remove `CookieMap` (#4179) diff --git a/collections/deno.json b/collections/deno.json index 90082d249e81..d8e6a1ee58a3 100644 --- a/collections/deno.json +++ b/collections/deno.json @@ -1,6 +1,6 @@ { "name": "@std/collections", - "version": "0.213.0", + "version": "0.214.0", "exports": { ".": "./mod.ts", "./aggregate_groups": "./aggregate_groups.ts", diff --git a/console/deno.json b/console/deno.json index 9bdd396d84de..8c73da169bb0 100644 --- a/console/deno.json +++ b/console/deno.json @@ -1,6 +1,6 @@ { "name": "@std/console", - "version": "0.213.0", + "version": "0.213.1", "exports": { ".": "./mod.ts", "./unicode_width": "./unicode_width.ts" diff --git a/crypto/deno.json b/crypto/deno.json index 8481a54da3b3..fe0dda45b726 100644 --- a/crypto/deno.json +++ b/crypto/deno.json @@ -1,6 +1,6 @@ { "name": "@std/crypto", - "version": "0.213.0", + "version": "0.213.1", "exports": { ".": "./mod.ts", "./crypto": "./crypto.ts", diff --git a/deno.json b/deno.json index c7507c6784cc..867cd9867210 100644 --- a/deno.json +++ b/deno.json @@ -20,12 +20,12 @@ "@std/bytes/": "jsr:/@std/bytes@^0.213.0/", "@std/cli": "jsr:@std/cli@^0.213.0", "@std/cli/": "jsr:/@std/cli@^0.213.0/", - "@std/collections": "jsr:@std/collections@^0.213.0", - "@std/collections/": "jsr:/@std/collections@^0.213.0/", - "@std/console": "jsr:@std/console@^0.213.0", - "@std/console/": "jsr:/@std/console@^0.213.0/", - "@std/crypto": "jsr:@std/crypto@^0.213.0", - "@std/crypto/": "jsr:/@std/crypto@^0.213.0/", + "@std/collections": "jsr:@std/collections@^0.214.0", + "@std/collections/": "jsr:/@std/collections@^0.214.0/", + "@std/console": "jsr:@std/console@^0.213.1", + "@std/console/": "jsr:/@std/console@^0.213.1/", + "@std/crypto": "jsr:@std/crypto@^0.213.1", + "@std/crypto/": "jsr:/@std/crypto@^0.213.1/", "@std/csv": "jsr:@std/csv@^0.213.0", "@std/csv/": "jsr:/@std/csv@^0.213.0/", "@std/data_structures": "jsr:@std/data_structures@^0.213.0", @@ -36,62 +36,62 @@ "@std/dotenv/": "jsr:/@std/dotenv@^0.213.0/", "@std/encoding": "jsr:@std/encoding@^0.213.0", "@std/encoding/": "jsr:/@std/encoding@^0.213.0/", - "@std/expect": "jsr:@std/expect@^0.213.0", - "@std/expect/": "jsr:/@std/expect@^0.213.0/", - "@std/flags": "jsr:@std/flags@^0.213.0", - "@std/flags/": "jsr:/@std/flags@^0.213.0/", - "@std/fmt": "jsr:@std/fmt@^0.213.0", - "@std/fmt/": "jsr:/@std/fmt@^0.213.0/", + "@std/expect": "jsr:@std/expect@^0.213.1", + "@std/expect/": "jsr:/@std/expect@^0.213.1/", + "@std/flags": "jsr:@std/flags@^0.213.1", + "@std/flags/": "jsr:/@std/flags@^0.213.1/", + "@std/fmt": "jsr:@std/fmt@^0.213.1", + "@std/fmt/": "jsr:/@std/fmt@^0.213.1/", "@std/front_matter": "jsr:@std/front_matter@^0.213.0", "@std/front_matter/": "jsr:/@std/front_matter@^0.213.0/", "@std/fs": "jsr:@std/fs@^0.213.0", "@std/fs/": "jsr:/@std/fs@^0.213.0/", "@std/html": "jsr:@std/html@^0.213.0", "@std/html/": "jsr:/@std/html@^0.213.0/", - "@std/http": "jsr:@std/http@^0.213.0", - "@std/http/": "jsr:/@std/http@^0.213.0/", + "@std/http": "jsr:@std/http@^0.214.0", + "@std/http/": "jsr:/@std/http@^0.214.0/", "@std/ini": "jsr:@std/ini@^0.213.0", "@std/ini/": "jsr:/@std/ini@^0.213.0/", "@std/internal": "jsr:@std/internal@^0.213.0", "@std/internal/": "jsr:/@std/internal@^0.213.0/", - "@std/io": "jsr:@std/io@^0.213.0", - "@std/io/": "jsr:/@std/io@^0.213.0/", + "@std/io": "jsr:@std/io@^0.214.0", + "@std/io/": "jsr:/@std/io@^0.214.0/", "@std/json": "jsr:@std/json@^0.213.0", "@std/json/": "jsr:/@std/json@^0.213.0/", "@std/jsonc": "jsr:@std/jsonc@^0.213.0", "@std/jsonc/": "jsr:/@std/jsonc@^0.213.0/", - "@std/log": "jsr:@std/log@^0.213.0", - "@std/log/": "jsr:/@std/log@^0.213.0/", - "@std/media_types": "jsr:@std/media_types@^0.213.0", - "@std/media_types/": "jsr:/@std/media_types@^0.213.0/", - "@std/msgpack": "jsr:@std/msgpack@^0.213.0", - "@std/msgpack/": "jsr:/@std/msgpack@^0.213.0/", + "@std/log": "jsr:@std/log@^0.214.0", + "@std/log/": "jsr:/@std/log@^0.214.0/", + "@std/media_types": "jsr:@std/media_types@^0.213.1", + "@std/media_types/": "jsr:/@std/media_types@^0.213.1/", + "@std/msgpack": "jsr:@std/msgpack@^0.213.1", + "@std/msgpack/": "jsr:/@std/msgpack@^0.213.1/", "@std/net": "jsr:@std/net@^0.213.0", "@std/net/": "jsr:/@std/net@^0.213.0/", - "@std/path": "jsr:@std/path@^0.213.0", - "@std/path/": "jsr:/@std/path@^0.213.0/", + "@std/path": "jsr:@std/path@^0.213.1", + "@std/path/": "jsr:/@std/path@^0.213.1/", "@std/permissions": "jsr:@std/permissions@^0.213.0", "@std/permissions/": "jsr:/@std/permissions@^0.213.0/", "@std/regexp": "jsr:@std/regexp@^0.213.0", "@std/regexp/": "jsr:/@std/regexp@^0.213.0/", - "@std/semver": "jsr:@std/semver@^0.213.0", - "@std/semver/": "jsr:/@std/semver@^0.213.0/", - "@std/streams": "jsr:@std/streams@^0.213.0", - "@std/streams/": "jsr:/@std/streams@^0.213.0/", + "@std/semver": "jsr:@std/semver@^0.214.0", + "@std/semver/": "jsr:/@std/semver@^0.214.0/", + "@std/streams": "jsr:@std/streams@^0.214.0", + "@std/streams/": "jsr:/@std/streams@^0.214.0/", "@std/testing": "jsr:@std/testing@^0.213.0", "@std/testing/": "jsr:/@std/testing@^0.213.0/", "@std/text": "jsr:@std/text@^0.213.0", "@std/text/": "jsr:/@std/text@^0.213.0/", - "@std/toml": "jsr:@std/toml@^0.213.0", - "@std/toml/": "jsr:/@std/toml@^0.213.0/", + "@std/toml": "jsr:@std/toml@^0.213.1", + "@std/toml/": "jsr:/@std/toml@^0.213.1/", "@std/ulid": "jsr:@std/ulid@^0.213.0", "@std/ulid/": "jsr:/@std/ulid@^0.213.0/", "@std/url": "jsr:@std/url@^0.213.0", "@std/url/": "jsr:/@std/url@^0.213.0/", "@std/uuid": "jsr:@std/uuid@^0.213.0", "@std/uuid/": "jsr:/@std/uuid@^0.213.0/", - "@std/webgpu": "jsr:@std/webgpu@^0.213.0", - "@std/webgpu/": "jsr:/@std/webgpu@^0.213.0/", + "@std/webgpu": "jsr:@std/webgpu@^0.213.1", + "@std/webgpu/": "jsr:/@std/webgpu@^0.213.1/", "@std/yaml": "jsr:@std/yaml@^0.213.0", "@std/yaml/": "jsr:/@std/yaml@^0.213.0/" }, diff --git a/expect/deno.json b/expect/deno.json index e8844a9f6724..cfdb52917eae 100644 --- a/expect/deno.json +++ b/expect/deno.json @@ -1,6 +1,6 @@ { "name": "@std/expect", - "version": "0.213.0", + "version": "0.213.1", "exports": { ".": "./mod.ts", "./expect": "./expect.ts", diff --git a/flags/deno.json b/flags/deno.json index b3cb519064cb..c0af59fe6f7a 100644 --- a/flags/deno.json +++ b/flags/deno.json @@ -1,5 +1,5 @@ { "name": "@std/flags", - "version": "0.213.0", + "version": "0.213.1", "exports": "./mod.ts" } diff --git a/fmt/deno.json b/fmt/deno.json index 2db711234519..58d750e630d2 100644 --- a/fmt/deno.json +++ b/fmt/deno.json @@ -1,6 +1,6 @@ { "name": "@std/fmt", - "version": "0.213.0", + "version": "0.213.1", "exports": { "./bytes": "./bytes.ts", "./colors": "./colors.ts", diff --git a/http/deno.json b/http/deno.json index 1d154c4c6238..cca50dc4d66f 100644 --- a/http/deno.json +++ b/http/deno.json @@ -1,6 +1,6 @@ { "name": "@std/http", - "version": "0.213.0", + "version": "0.214.0", "exports": { ".": "./mod.ts", "./cookie": "./cookie.ts", diff --git a/io/deno.json b/io/deno.json index 68472a4c9c0e..42f60802fcaa 100644 --- a/io/deno.json +++ b/io/deno.json @@ -1,6 +1,6 @@ { "name": "@std/io", - "version": "0.213.0", + "version": "0.214.0", "exports": { ".": "./mod.ts", "./buf_reader": "./buf_reader.ts", diff --git a/log/deno.json b/log/deno.json index 6ad0bafe74ef..d3023a23beea 100644 --- a/log/deno.json +++ b/log/deno.json @@ -1,6 +1,6 @@ { "name": "@std/log", - "version": "0.213.0", + "version": "0.214.0", "exports": { ".": "./mod.ts", "./base_handler": "./base_handler.ts", diff --git a/media_types/deno.json b/media_types/deno.json index decb8d5ab38a..43e51ba7497d 100644 --- a/media_types/deno.json +++ b/media_types/deno.json @@ -1,6 +1,6 @@ { "name": "@std/media_types", - "version": "0.213.0", + "version": "0.213.1", "exports": { ".": "./mod.ts", "./content_type": "./content_type.ts", diff --git a/msgpack/deno.json b/msgpack/deno.json index ac7c5e483d9e..3b09ac273b79 100644 --- a/msgpack/deno.json +++ b/msgpack/deno.json @@ -1,6 +1,6 @@ { "name": "@std/msgpack", - "version": "0.213.0", + "version": "0.213.1", "exports": { ".": "./mod.ts", "./decode": "./decode.ts", diff --git a/path/deno.json b/path/deno.json index a25917bcbc55..970f28c58d71 100644 --- a/path/deno.json +++ b/path/deno.json @@ -1,6 +1,6 @@ { "name": "@std/path", - "version": "0.213.0", + "version": "0.213.1", "exports": { ".": "./mod.ts", "./basename": "./basename.ts", diff --git a/semver/deno.json b/semver/deno.json index 74bdb6e31624..10a5bd3b2387 100644 --- a/semver/deno.json +++ b/semver/deno.json @@ -1,6 +1,6 @@ { "name": "@std/semver", - "version": "0.213.0", + "version": "0.214.0", "exports": { ".": "./mod.ts", "./can_parse": "./can_parse.ts", diff --git a/streams/deno.json b/streams/deno.json index d9c12f77cfd3..7b936329736a 100644 --- a/streams/deno.json +++ b/streams/deno.json @@ -1,6 +1,6 @@ { "name": "@std/streams", - "version": "0.213.0", + "version": "0.214.0", "exports": { ".": "./mod.ts", "./buffer": "./buffer.ts", diff --git a/toml/deno.json b/toml/deno.json index d968f11b8eac..fba814416e7d 100644 --- a/toml/deno.json +++ b/toml/deno.json @@ -1,6 +1,6 @@ { "name": "@std/toml", - "version": "0.213.0", + "version": "0.213.1", "exports": { ".": "./mod.ts", "./parse": "./parse.ts", diff --git a/webgpu/deno.json b/webgpu/deno.json index fe3838a39f81..62e037b6ffc0 100644 --- a/webgpu/deno.json +++ b/webgpu/deno.json @@ -1,6 +1,6 @@ { "name": "@std/webgpu", - "version": "0.213.0", + "version": "0.213.1", "exports": { ".": "./mod.ts", "./create_capture": "./create_capture.ts",