Skip to content

Commit

Permalink
chore: release 2025.01.22 (#6358)
Browse files Browse the repository at this point in the history
Co-authored-by: kt3k <kt3k@users.noreply.github.com>
  • Loading branch information
denobot and kt3k authored Jan 22, 2025
1 parent 1f4d0b2 commit ceca626
Show file tree
Hide file tree
Showing 11 changed files with 60 additions and 18 deletions.
42 changes: 42 additions & 0 deletions Releases.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,45 @@
### 2025.01.22

#### @std/assert 1.0.11 (patch)

- fix(assert): handle `__proto__` correctly in `assertObjectMatch` (#6342)

#### @std/async 1.0.10 (patch)

- feat(async/unstable): add `waitFor` function to wait for condition to be true
(#6230)

#### @std/cbor 0.1.6 (patch)

- fix(cbor): incorrect decoding with subarrays (#6344)

#### @std/cli 1.0.11 (patch)

- fix(cli): handle overflow in `promptSecret` (#6318)

#### @std/collections 1.0.10 (patch)

- docs(collections): add the word "unique" to `distinctBy` JSDoc for grepping
purposes (#6336)

#### @std/csv 1.0.5 (patch)

- test(csv): unstable stringify tests (#6337)

#### @std/expect 1.0.12 (patch)

- docs(expect): fix typo on objectContaining example (#6357)

#### @std/fs 1.0.10 (patch)

- feat(fs/unstable): add symlink and symlinkSync (#6352)
- feat(fs/unstable): add chmod and chmodSync (#6343)
- feat(fs/unstable): add readDir (#6338)

#### @std/io 0.225.1 (patch)

- fix(io): fix readAllSync for the case when read source is slow (#6355)

### 2025.01.10

#### @std/cbor 0.1.5 (patch)
Expand Down
2 changes: 1 addition & 1 deletion assert/deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@std/assert",
"version": "1.0.10",
"version": "1.0.11",
"exports": {
".": "./mod.ts",
"./assert": "./assert.ts",
Expand Down
2 changes: 1 addition & 1 deletion async/deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@std/async",
"version": "1.0.9",
"version": "1.0.10",
"exports": {
".": "./mod.ts",
"./abortable": "./abortable.ts",
Expand Down
2 changes: 1 addition & 1 deletion cbor/deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@std/cbor",
"version": "0.1.5",
"version": "0.1.6",
"exports": {
".": "./mod.ts",
"./array-encoder-stream": "./array_encoder_stream.ts",
Expand Down
2 changes: 1 addition & 1 deletion cli/deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@std/cli",
"version": "1.0.10",
"version": "1.0.11",
"exports": {
".": "./mod.ts",
"./parse-args": "./parse_args.ts",
Expand Down
2 changes: 1 addition & 1 deletion collections/deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@std/collections",
"version": "1.0.9",
"version": "1.0.10",
"exports": {
".": "./mod.ts",
"./aggregate-groups": "./aggregate_groups.ts",
Expand Down
2 changes: 1 addition & 1 deletion csv/deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@std/csv",
"version": "1.0.4",
"version": "1.0.5",
"exports": {
".": "./mod.ts",
"./parse": "./parse.ts",
Expand Down
2 changes: 1 addition & 1 deletion expect/deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@std/expect",
"version": "1.0.11",
"version": "1.0.12",
"exports": {
".": "./mod.ts",
"./expect": "./expect.ts",
Expand Down
2 changes: 1 addition & 1 deletion fs/deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@std/fs",
"version": "1.0.9",
"version": "1.0.10",
"exports": {
".": "./mod.ts",
"./copy": "./copy.ts",
Expand Down
18 changes: 9 additions & 9 deletions import_map.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,28 +6,28 @@
"automation/": "https://raw.githubusercontent.com/denoland/automation/0.10.0/",
"graphviz": "npm:node-graphviz@^0.1.1",

"@std/assert": "jsr:@std/assert@^1.0.10",
"@std/async": "jsr:@std/async@^1.0.9",
"@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/cache": "jsr:@std/cache@^0.1.3",
"@std/cbor": "jsr:@std/cbor@^0.1.5",
"@std/cli": "jsr:@std/cli@^1.0.10",
"@std/collections": "jsr:@std/collections@^1.0.9",
"@std/cbor": "jsr:@std/cbor@^0.1.6",
"@std/cli": "jsr:@std/cli@^1.0.11",
"@std/collections": "jsr:@std/collections@^1.0.10",
"@std/crypto": "jsr:@std/crypto@^1.0.3",
"@std/csv": "jsr:@std/csv@^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.11",
"@std/expect": "jsr:@std/expect@^1.0.12",
"@std/fmt": "jsr:@std/fmt@^1.0.4",
"@std/front-matter": "jsr:@std/front-matter@^1.0.5",
"@std/fs": "jsr:@std/fs@^1.0.9",
"@std/fs": "jsr:@std/fs@^1.0.10",
"@std/html": "jsr:@std/html@^1.0.3",
"@std/http": "jsr:@std/http@^1.0.12",
"@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.0",
"@std/io": "jsr:@std/io@^0.225.1",
"@std/json": "jsr:@std/json@^1.0.1",
"@std/jsonc": "jsr:@std/jsonc@^1.0.1",
"@std/log": "jsr:@std/log@^0.224.13",
Expand Down
2 changes: 1 addition & 1 deletion io/deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@std/io",
"version": "0.225.0",
"version": "0.225.1",
"exports": {
".": "./mod.ts",
"./buffer": "./buffer.ts",
Expand Down

0 comments on commit ceca626

Please sign in to comment.