Skip to content

Commit c6193ac

Browse files
denobotkt3k
andauthored
chore: release 2024.11.13 (#6182)
Co-authored-by: kt3k <[email protected]>
1 parent 03dffde commit c6193ac

File tree

10 files changed

+51
-16
lines changed

10 files changed

+51
-16
lines changed

Releases.md

+35
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,38 @@
1+
### 2024.11.13
2+
3+
#### @std/assert 1.0.8 (patch)
4+
5+
- fix(assert): check property equality up the prototype chain (#6153)
6+
7+
#### @std/bytes 1.0.4 (patch)
8+
9+
- test(bytes): fix typo in test description (#6179)
10+
11+
#### @std/expect 1.0.8 (patch)
12+
13+
- fix(expect): support `expect.addSnapshotSerializer` (#6173)
14+
15+
#### @std/http 1.0.10 (patch)
16+
17+
- fix(http): do not serve dot files when `showDotfiles=false` (#6180)
18+
19+
#### @std/ini 1.0.0-rc.5 (prerelease)
20+
21+
- BREAKING(ini): parse understands booleans, undefined, null and numbers (#6121)
22+
23+
#### @std/log 0.224.10 (patch)
24+
25+
- docs(log): improve logger.ts docs (#6176)
26+
- docs(log): document FileHandler (#6175)
27+
28+
#### @std/media-types 1.1.0 (minor)
29+
30+
- feat(media-types): update media-types from latest mime-db (#6169)
31+
32+
#### @std/testing 1.0.5 (patch)
33+
34+
- docs(testing): fix typo in snapshot.ts (#6171)
35+
136
### 2024.11.01
237

338
#### @std/assert 1.0.7 (patch)

assert/deno.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@std/assert",
3-
"version": "1.0.7",
3+
"version": "1.0.8",
44
"exports": {
55
".": "./mod.ts",
66
"./assert": "./assert.ts",

bytes/deno.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@std/bytes",
3-
"version": "1.0.3",
3+
"version": "1.0.4",
44
"exports": {
55
".": "./mod.ts",
66
"./concat": "./concat.ts",

expect/deno.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@std/expect",
3-
"version": "1.0.7",
3+
"version": "1.0.8",
44
"exports": {
55
".": "./mod.ts",
66
"./expect": "./expect.ts",

http/deno.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@std/http",
3-
"version": "1.0.9",
3+
"version": "1.0.10",
44
"exports": {
55
".": "./mod.ts",
66
"./cookie": "./cookie.ts",

import_map.json

+8-8
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
"graphviz": "npm:node-graphviz@^0.1.1",
88

99
"@std/archive": "jsr:@std/archive@^0.225.4",
10-
"@std/assert": "jsr:@std/assert@^1.0.7",
10+
"@std/assert": "jsr:@std/assert@^1.0.8",
1111
"@std/async": "jsr:@std/async@^1.0.8",
12-
"@std/bytes": "jsr:@std/bytes@^1.0.3",
12+
"@std/bytes": "jsr:@std/bytes@^1.0.4",
1313
"@std/cache": "jsr:@std/cache@^0.1.3",
1414
"@std/cbor": "jsr:@std/cbor@^0.1.2",
1515
"@std/cli": "jsr:@std/cli@^1.0.6",
@@ -20,19 +20,19 @@
2020
"@std/datetime": "jsr:@std/datetime@^0.225.2",
2121
"@std/dotenv": "jsr:@std/dotenv@^0.225.2",
2222
"@std/encoding": "jsr:@std/encoding@^1.0.5",
23-
"@std/expect": "jsr:@std/expect@^1.0.7",
23+
"@std/expect": "jsr:@std/expect@^1.0.8",
2424
"@std/fmt": "jsr:@std/fmt@^1.0.3",
2525
"@std/front-matter": "jsr:@std/front-matter@^1.0.5",
2626
"@std/fs": "jsr:@std/fs@^1.0.5",
2727
"@std/html": "jsr:@std/html@^1.0.3",
28-
"@std/http": "jsr:@std/http@^1.0.9",
29-
"@std/ini": "jsr:@std/ini@^1.0.0-rc.4",
28+
"@std/http": "jsr:@std/http@^1.0.10",
29+
"@std/ini": "jsr:@std/ini@^1.0.0-rc.5",
3030
"@std/internal": "jsr:@std/internal@^1.0.5",
3131
"@std/io": "jsr:@std/io@^0.225.0",
3232
"@std/json": "jsr:@std/json@^1.0.1",
3333
"@std/jsonc": "jsr:@std/jsonc@^1.0.1",
34-
"@std/log": "jsr:@std/log@^0.224.9",
35-
"@std/media-types": "jsr:@std/media-types@^1.0.3",
34+
"@std/log": "jsr:@std/log@^0.224.10",
35+
"@std/media-types": "jsr:@std/media-types@^1.1.0",
3636
"@std/msgpack": "jsr:@std/msgpack@^1.0.2",
3737
"@std/net": "jsr:@std/net@^1.0.4",
3838
"@std/path": "jsr:@std/path@^1.0.8",
@@ -41,7 +41,7 @@
4141
"@std/semver": "jsr:@std/semver@^1.0.3",
4242
"@std/streams": "jsr:@std/streams@^1.0.8",
4343
"@std/tar": "jsr:@std/tar@^0.1.3",
44-
"@std/testing": "jsr:@std/testing@^1.0.4",
44+
"@std/testing": "jsr:@std/testing@^1.0.5",
4545
"@std/text": "jsr:@std/text@^1.0.8",
4646
"@std/toml": "jsr:@std/toml@^1.0.1",
4747
"@std/ulid": "jsr:@std/ulid@^1.0.0",

ini/deno.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@std/ini",
3-
"version": "1.0.0-rc.4",
3+
"version": "1.0.0-rc.5",
44
"exports": {
55
".": "./mod.ts",
66
"./parse": "./parse.ts",

log/deno.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@std/log",
3-
"version": "0.224.9",
3+
"version": "0.224.10",
44
"exports": {
55
".": "./mod.ts",
66
"./base-handler": "./base_handler.ts",

media_types/deno.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@std/media-types",
3-
"version": "1.0.3",
3+
"version": "1.1.0",
44
"exports": {
55
".": "./mod.ts",
66
"./content-type": "./content_type.ts",

testing/deno.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@std/testing",
3-
"version": "1.0.4",
3+
"version": "1.0.5",
44
"exports": {
55
"./bdd": "./bdd.ts",
66
"./mock": "./mock.ts",

0 commit comments

Comments
 (0)