diff --git a/Releases.md b/Releases.md index 5c63670e4..bec66097c 100644 --- a/Releases.md +++ b/Releases.md @@ -1,3 +1,103 @@ +### 2024.09.02 + +#### @std/archive 0.225.2 (patch) + +- feat(archive): `UntarStream` and `TarStream` (#4548) + +#### @std/assert 1.0.4 (patch) + +- refactor(assert,datetime,fmt,io,streams): consistently `throw new Error()` + instead of `throw Error()` (#5855) + +#### @std/async 1.0.5 (patch) + +- docs(async): add note about `deadline()` `DOMException` name of `TimeoutError` + (#5833) + +#### @std/cache 0.1.2 (patch) + +- fix(cache/unstable): fix flaky fibonacci test (#5872) +- docs(cache): document valid range information for TTL values (#5834) + +#### @std/datetime 0.225.2 (patch) + +- refactor(assert,datetime,fmt,io,streams): consistently `throw new Error()` + instead of `throw Error()` (#5855) + +#### @std/dotenv 0.225.2 (patch) + +- fix(dotenv): handle single-quotes in values in `stringify()` (#5846) + +#### @std/expect 1.0.2 (patch) + +- refactor(expect): align error messages in the matchers (#5835) + +#### @std/fmt 1.0.2 (patch) + +- refactor(assert,datetime,fmt,io,streams): consistently `throw new Error()` + instead of `throw Error()` (#5855) + +#### @std/http 1.0.5 (patch) + +- fix(http): less restrictive arguments for `accepts*()` functions (#5850) + +#### @std/io 0.224.7 (patch) + +- fix(io): don't use `Deno.Buffer` in examples (#5889) +- refactor(assert,datetime,fmt,io,streams): consistently `throw new Error()` + instead of `throw Error()` (#5855) + +#### @std/msgpack 1.0.2 (patch) + +- fix(msgpack): accept readonly input data in `encode()` (#5832) + +#### @std/path 1.0.4 (patch) + +- feat(path/unstable): support `URL` in first arg of `join()` (#5863) +- refactor(path): make `isWindows` check compatible with Node and Bun (#4961) + +#### @std/streams 1.0.4 (patch) + +- refactor(assert,datetime,fmt,io,streams): consistently `throw new Error()` + instead of `throw Error()` (#5855) + +#### @std/yaml 1.0.5 (patch) + +- refactor(yaml): simplify merge type (#5877) +- refactor(yaml): simplify set type (#5867) +- refactor(yaml): simplify regexp type (#5860) +- refactor(yaml): move `duplicate` and `duplicateIndex` (#5836) +- refactor(yaml): inline `composeNode()` (#5861) +- refactor(yaml): simplify `resolve()` for pairs (#5852) +- refactor(yaml): simplify null type (#5858) +- refactor(yaml): simplify boolean type (#5859) +- refactor(yaml): inline `readAlias()` (#5856) +- refactor(yaml): inline `readAnchorProperty()` (#5853) +- refactor(yaml): simplify omap `resolve()` (#5843) +- refactor(yaml): simplify pair `construct()` function (#5844) +- refactor(yaml): inline `readTagProperty()` (#5849) +- refactor(yaml): replace `getObjectTypeString()` with `isPlainObject()` (#5842) +- refactor(yaml): inline `readBlockMapping()` (#5847) +- refactor(yaml): inline `readBlockScalar()` (#5841) +- refactor(yaml): inline `readFlowCollection()` (#5840) +- refactor(yaml): change error message in `stringifyNode()` (#5839) +- refactor(yaml): inline `readDoubleQuotedScalar()` (#5838) +- refactor(yaml): align additional error messages (#5806) +- refactor(yaml): move `isObject()` (#5823) +- refactor(yaml): inline `readSingleQuotedScalar()` (#5827) +- test(yaml): add invalid `represent` type test (#5874) +- test(yaml): add positive timezone timestamp test (#5881) +- test(yaml): add int type tests (#5868) +- test(yaml): add set type test (#5866) +- test(yaml): add regexp type tests (#5862) +- test(yaml): add duplicate binary references test (#5837) +- test(yaml): add undefined array entry with `skipInvalid` and `flowLevel` + options test (#5828) +- test(yaml): add duplicate array reference test (#5825) +- test(yaml): add undefined object entry with skipInvalid and flowLevel option + test (#5829) +- chore(yaml): fix typo in inline comment (#5845) + ### 2024.08.26 #### @std/archive 0.225.1 (patch) diff --git a/archive/deno.json b/archive/deno.json index fdb38b6a7..017fef462 100644 --- a/archive/deno.json +++ b/archive/deno.json @@ -1,6 +1,6 @@ { "name": "@std/archive", - "version": "0.225.1", + "version": "0.225.2", "exports": { ".": "./mod.ts", "./tar-stream": "./tar_stream.ts", diff --git a/assert/deno.json b/assert/deno.json index 15dc179a8..d51adb31a 100644 --- a/assert/deno.json +++ b/assert/deno.json @@ -1,6 +1,6 @@ { "name": "@std/assert", - "version": "1.0.3", + "version": "1.0.4", "exports": { ".": "./mod.ts", "./assert": "./assert.ts", diff --git a/async/deno.json b/async/deno.json index db9eed796..c2c5e4ad8 100644 --- a/async/deno.json +++ b/async/deno.json @@ -1,6 +1,6 @@ { "name": "@std/async", - "version": "1.0.4", + "version": "1.0.5", "exports": { ".": "./mod.ts", "./abortable": "./abortable.ts", diff --git a/cache/deno.json b/cache/deno.json index 019f19e28..88d9f04c3 100644 --- a/cache/deno.json +++ b/cache/deno.json @@ -1,6 +1,6 @@ { "name": "@std/cache", - "version": "0.1.1", + "version": "0.1.2", "exports": { ".": "./mod.ts", "./lru-cache": "./lru_cache.ts", diff --git a/datetime/deno.json b/datetime/deno.json index 262a61321..d361ddd65 100644 --- a/datetime/deno.json +++ b/datetime/deno.json @@ -1,6 +1,6 @@ { "name": "@std/datetime", - "version": "0.225.1", + "version": "0.225.2", "exports": { ".": "./mod.ts", "./constants": "./constants.ts", diff --git a/dotenv/deno.json b/dotenv/deno.json index 1d4ad05f2..dd4b3a16e 100644 --- a/dotenv/deno.json +++ b/dotenv/deno.json @@ -1,6 +1,6 @@ { "name": "@std/dotenv", - "version": "0.225.1", + "version": "0.225.2", "exports": { ".": "./mod.ts", "./load": "./load.ts", diff --git a/expect/deno.json b/expect/deno.json index 28311c0a4..45313041f 100644 --- a/expect/deno.json +++ b/expect/deno.json @@ -1,6 +1,6 @@ { "name": "@std/expect", - "version": "1.0.1", + "version": "1.0.2", "exports": { ".": "./mod.ts", "./expect": "./expect.ts", diff --git a/fmt/deno.json b/fmt/deno.json index 18881ac33..4e15c58a1 100644 --- a/fmt/deno.json +++ b/fmt/deno.json @@ -1,6 +1,6 @@ { "name": "@std/fmt", - "version": "1.0.1", + "version": "1.0.2", "exports": { "./bytes": "./bytes.ts", "./colors": "./colors.ts", diff --git a/http/deno.json b/http/deno.json index 4c8aa268f..a21ee941f 100644 --- a/http/deno.json +++ b/http/deno.json @@ -1,6 +1,6 @@ { "name": "@std/http", - "version": "1.0.4", + "version": "1.0.5", "exports": { ".": "./mod.ts", "./cookie": "./cookie.ts", diff --git a/import_map.json b/import_map.json index a192a3a59..9c860fe75 100644 --- a/import_map.json +++ b/import_map.json @@ -6,38 +6,38 @@ "automation/": "https://raw.githubusercontent.com/denoland/automation/0.10.0/", "graphviz": "npm:node-graphviz@^0.1.1", - "@std/archive": "jsr:@std/archive@^0.225.1", - "@std/assert": "jsr:@std/assert@^1.0.3", - "@std/async": "jsr:@std/async@^1.0.4", + "@std/archive": "jsr:@std/archive@^0.225.2", + "@std/assert": "jsr:@std/assert@^1.0.4", + "@std/async": "jsr:@std/async@^1.0.5", "@std/bytes": "jsr:@std/bytes@^1.0.2", - "@std/cache": "jsr:@std/cache@^0.1.1", + "@std/cache": "jsr:@std/cache@^0.1.2", "@std/cli": "jsr:@std/cli@^1.0.4", "@std/collections": "jsr:@std/collections@^1.0.5", "@std/crypto": "jsr:@std/crypto@^1.0.3", "@std/csv": "jsr:@std/csv@^1.0.2", "@std/data-structures": "jsr:@std/data-structures@^1.0.2", - "@std/datetime": "jsr:@std/datetime@^0.225.1", - "@std/dotenv": "jsr:@std/dotenv@^0.225.1", + "@std/datetime": "jsr:@std/datetime@^0.225.2", + "@std/dotenv": "jsr:@std/dotenv@^0.225.2", "@std/encoding": "jsr:@std/encoding@^1.0.3", - "@std/expect": "jsr:@std/expect@^1.0.1", - "@std/fmt": "jsr:@std/fmt@^1.0.1", + "@std/expect": "jsr:@std/expect@^1.0.2", + "@std/fmt": "jsr:@std/fmt@^1.0.2", "@std/front-matter": "jsr:@std/front-matter@^1.0.3", "@std/fs": "jsr:@std/fs@^1.0.2", "@std/html": "jsr:@std/html@^1.0.2", - "@std/http": "jsr:@std/http@^1.0.4", + "@std/http": "jsr:@std/http@^1.0.5", "@std/ini": "jsr:@std/ini@^1.0.0-rc.4", "@std/internal": "jsr:@std/internal@^1.0.2", - "@std/io": "jsr:@std/io@^0.224.6", + "@std/io": "jsr:@std/io@^0.224.7", "@std/json": "jsr:@std/json@^1.0.0", "@std/jsonc": "jsr:@std/jsonc@^1.0.1", "@std/log": "jsr:@std/log@^0.224.6", "@std/media-types": "jsr:@std/media-types@^1.0.3", - "@std/msgpack": "jsr:@std/msgpack@^1.0.1", + "@std/msgpack": "jsr:@std/msgpack@^1.0.2", "@std/net": "jsr:@std/net@^1.0.1", - "@std/path": "jsr:@std/path@^1.0.3", + "@std/path": "jsr:@std/path@^1.0.4", "@std/regexp": "jsr:@std/regexp@^1.0.0", "@std/semver": "jsr:@std/semver@^1.0.2", - "@std/streams": "jsr:@std/streams@^1.0.3", + "@std/streams": "jsr:@std/streams@^1.0.4", "@std/testing": "jsr:@std/testing@^1.0.1", "@std/text": "jsr:@std/text@^1.0.4", "@std/toml": "jsr:@std/toml@^1.0.1", @@ -45,6 +45,6 @@ "@std/url": "jsr:@std/url@^0.225.0", "@std/uuid": "jsr:@std/uuid@^1.0.2", "@std/webgpu": "jsr:@std/webgpu@^0.224.6", - "@std/yaml": "jsr:@std/yaml@^1.0.4" + "@std/yaml": "jsr:@std/yaml@^1.0.5" } } diff --git a/io/deno.json b/io/deno.json index e819e51bf..3dacd0e4c 100644 --- a/io/deno.json +++ b/io/deno.json @@ -1,6 +1,6 @@ { "name": "@std/io", - "version": "0.224.6", + "version": "0.224.7", "exports": { ".": "./mod.ts", "./buf-reader": "./buf_reader.ts", diff --git a/msgpack/deno.json b/msgpack/deno.json index 4f6147390..4e39c6b0a 100644 --- a/msgpack/deno.json +++ b/msgpack/deno.json @@ -1,6 +1,6 @@ { "name": "@std/msgpack", - "version": "1.0.1", + "version": "1.0.2", "exports": { ".": "./mod.ts", "./decode": "./decode.ts", diff --git a/path/deno.json b/path/deno.json index 6e3cf2298..cbdee909c 100644 --- a/path/deno.json +++ b/path/deno.json @@ -1,6 +1,6 @@ { "name": "@std/path", - "version": "1.0.3", + "version": "1.0.4", "exports": { ".": "./mod.ts", "./basename": "./basename.ts", diff --git a/streams/deno.json b/streams/deno.json index f1042d853..acaee3d97 100644 --- a/streams/deno.json +++ b/streams/deno.json @@ -1,6 +1,6 @@ { "name": "@std/streams", - "version": "1.0.3", + "version": "1.0.4", "exports": { ".": "./mod.ts", "./buffer": "./buffer.ts", diff --git a/yaml/deno.json b/yaml/deno.json index 43257bb18..fc229c1a9 100644 --- a/yaml/deno.json +++ b/yaml/deno.json @@ -1,6 +1,6 @@ { "name": "@std/yaml", - "version": "1.0.4", + "version": "1.0.5", "exports": { ".": "./mod.ts", "./parse": "./parse.ts",