Skip to content

Commit

Permalink
chore: release 2024.11.13 (#6182)
Browse files Browse the repository at this point in the history
Co-authored-by: kt3k <[email protected]>
  • Loading branch information
denobot and kt3k authored Nov 13, 2024
1 parent 03dffde commit c6193ac
Show file tree
Hide file tree
Showing 10 changed files with 51 additions and 16 deletions.
35 changes: 35 additions & 0 deletions Releases.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,38 @@
### 2024.11.13

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

- fix(assert): check property equality up the prototype chain (#6153)

#### @std/bytes 1.0.4 (patch)

- test(bytes): fix typo in test description (#6179)

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

- fix(expect): support `expect.addSnapshotSerializer` (#6173)

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

- fix(http): do not serve dot files when `showDotfiles=false` (#6180)

#### @std/ini 1.0.0-rc.5 (prerelease)

- BREAKING(ini): parse understands booleans, undefined, null and numbers (#6121)

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

- docs(log): improve logger.ts docs (#6176)
- docs(log): document FileHandler (#6175)

#### @std/media-types 1.1.0 (minor)

- feat(media-types): update media-types from latest mime-db (#6169)

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

- docs(testing): fix typo in snapshot.ts (#6171)

### 2024.11.01

#### @std/assert 1.0.7 (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.7",
"version": "1.0.8",
"exports": {
".": "./mod.ts",
"./assert": "./assert.ts",
Expand Down
2 changes: 1 addition & 1 deletion bytes/deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@std/bytes",
"version": "1.0.3",
"version": "1.0.4",
"exports": {
".": "./mod.ts",
"./concat": "./concat.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.7",
"version": "1.0.8",
"exports": {
".": "./mod.ts",
"./expect": "./expect.ts",
Expand Down
2 changes: 1 addition & 1 deletion http/deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@std/http",
"version": "1.0.9",
"version": "1.0.10",
"exports": {
".": "./mod.ts",
"./cookie": "./cookie.ts",
Expand Down
16 changes: 8 additions & 8 deletions import_map.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
"graphviz": "npm:node-graphviz@^0.1.1",

"@std/archive": "jsr:@std/archive@^0.225.4",
"@std/assert": "jsr:@std/assert@^1.0.7",
"@std/assert": "jsr:@std/assert@^1.0.8",
"@std/async": "jsr:@std/async@^1.0.8",
"@std/bytes": "jsr:@std/bytes@^1.0.3",
"@std/bytes": "jsr:@std/bytes@^1.0.4",
"@std/cache": "jsr:@std/cache@^0.1.3",
"@std/cbor": "jsr:@std/cbor@^0.1.2",
"@std/cli": "jsr:@std/cli@^1.0.6",
Expand All @@ -20,19 +20,19 @@
"@std/datetime": "jsr:@std/datetime@^0.225.2",
"@std/dotenv": "jsr:@std/dotenv@^0.225.2",
"@std/encoding": "jsr:@std/encoding@^1.0.5",
"@std/expect": "jsr:@std/expect@^1.0.7",
"@std/expect": "jsr:@std/expect@^1.0.8",
"@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.5",
"@std/html": "jsr:@std/html@^1.0.3",
"@std/http": "jsr:@std/http@^1.0.9",
"@std/ini": "jsr:@std/ini@^1.0.0-rc.4",
"@std/http": "jsr:@std/http@^1.0.10",
"@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.9",
"@std/media-types": "jsr:@std/media-types@^1.0.3",
"@std/log": "jsr:@std/log@^0.224.10",
"@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",
Expand All @@ -41,7 +41,7 @@
"@std/semver": "jsr:@std/semver@^1.0.3",
"@std/streams": "jsr:@std/streams@^1.0.8",
"@std/tar": "jsr:@std/tar@^0.1.3",
"@std/testing": "jsr:@std/testing@^1.0.4",
"@std/testing": "jsr:@std/testing@^1.0.5",
"@std/text": "jsr:@std/text@^1.0.8",
"@std/toml": "jsr:@std/toml@^1.0.1",
"@std/ulid": "jsr:@std/ulid@^1.0.0",
Expand Down
2 changes: 1 addition & 1 deletion ini/deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@std/ini",
"version": "1.0.0-rc.4",
"version": "1.0.0-rc.5",
"exports": {
".": "./mod.ts",
"./parse": "./parse.ts",
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.9",
"version": "0.224.10",
"exports": {
".": "./mod.ts",
"./base-handler": "./base_handler.ts",
Expand Down
2 changes: 1 addition & 1 deletion media_types/deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@std/media-types",
"version": "1.0.3",
"version": "1.1.0",
"exports": {
".": "./mod.ts",
"./content-type": "./content_type.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.4",
"version": "1.0.5",
"exports": {
"./bdd": "./bdd.ts",
"./mock": "./mock.ts",
Expand Down

0 comments on commit c6193ac

Please sign in to comment.