Skip to content

Commit

Permalink
chore: release 2024.09.12 (#5969)
Browse files Browse the repository at this point in the history
Co-authored-by: kt3k <[email protected]>
  • Loading branch information
denobot and kt3k authored Sep 12, 2024
1 parent dcef4cd commit c5d7930
Show file tree
Hide file tree
Showing 18 changed files with 155 additions and 32 deletions.
123 changes: 123 additions & 0 deletions Releases.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,126 @@
### 2024.09.12

#### @std/archive 0.225.3 (patch)

- refactor(archive,io): use `Seeker[Sync]` from `@std/io/types` (#5943)

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

- BREAKING(assert/unstable): move unstable `assertNever` under
`@std/assert/unstable-never` (#5928)
- fix(assert): value-equal complex keys (#5914)
- perf(assert): add fast path for primitive keyed collections in `equal()`
(#5913)
- refactor(assert,expect): import internal APIs from more specific paths (#5923)
- refactor(assert): remove unnecessary `getValFromKeyedCollection()` (#5921)

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

- BREAKING(cli/unstable): move `spinner` module to `unstable-spinner` (#5946)

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

- fix(collections): ensure `pick` doesn't generate missing properties as
`undefined` (#5926)

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

- BREAKING(data-structures/unstable): move `bidirectional-map` module to
`unstable-bidirectional-map` (#5947)
- feat(data-structures/unstable): `@std/data-structures/bidirectional-map`
(#5910)

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

- BREAKING(encoding/unstable): move `base64url-stream` module to
`unstable-base64url-stream` (#5959)
- BREAKING(encoding/unstable): move `base32hex` module to `unstable-base32hex`
(#5961)
- BREAKING(encoding/unstable): move `hex-stream` module to `unstable-hex-stream`
(#5960)
- BREAKING(encoding/unstable): move `base64-stream` module to
`unstable-base64-stream` (#5958)
- BREAKING(encoding/unstable): move `base32hex-stream` module to
`unstable-base32hex-stream` (#5956)
- BREAKING(encoding/unstable): move `base32-stream` module to
`unstable-base32-stream` (#5955)

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

- fix(expect): value-equal complex keys in `expect.equal()` (#5936)
- perf(expect): add fast path for primitive keyed collections in `equal()`
(#5934)
- refactor(assert,expect): import internal APIs from more specific paths (#5923)

#### @std/front-matter 1.0.5 (patch)

- BREAKING(front-matter/unstable): move unstable overload of yaml `extract` to
`unstable-yaml` (#5968)

#### @std/html 1.0.3 (patch)

- BREAKING(html/unstable): move `is-valid-custom-element-name` module to
`unstable-is-valid-custom-element-name` (#5948)

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

- BREAKING(http/unstable): move `route` to `./unstable-route` (#5939)
- BREAKING(http/unstable): move unstable APIs (`header`, `method`,
`signed-cookie`) (#5938)
- fix(http): invalid ipv6 hostname printed to console (#5924)
- fix(http): show hostname as 'localhost' for 0.0.0.0 on windows (#5918)
- refactor(http): inline `serveFallback()` util (#5917)

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

- feat(io): add `Seeker[Sync]` interfaces (#5930)
- refactor(archive,io): use `Seeker[Sync]` from `@std/io/types` (#5943)

#### @std/net 1.0.3 (patch)

- BREAKING(net/unstable): move `get-network-address` module to
`unstable-get-network-address` (#5949)
- fix(net): skip empty mac address for `getNetworkAddress()` (#5941)
- test(net): add test of `getNetworkAddress()` (#5963)

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

- BREAKING(path/unstable): move unstable overload of `normalize` to
`unstable-normalize` (#5965)
- BREAKING(path/unstable): move unstable overload of `join` to `unstable-join`
(#5964)
- BREAKING(path/unstable): move unstable overload of `extname` to
`unstable-extname` (#5962)
- BREAKING(path/unstable): move unstable overload of `basename` to
`unstable-basename` (#5957)
- BREAKING(path/unstable): move unstable overload of `dirname` to
`unstable-dirname` (#5954)

#### @std/random 0.1.0 (minor)

- feat(random/unstable): basic randomization functions (#5626)

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

- BREAKING(streams/unstable): move `fixed-chunk-stream` module to
`unstable-fixed-chunk-stream` (#5951)
- BREAKING(streams/unstable): move `to-lines` module to `unstable-to-lines`
(#5950)

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

- BREAKING(text/unstable): move `slugify` module to `unstable-slugify` (#5953)
- BREAKING(text/unstable): move `to-constant-case` module to
`unstable-to-constant-case` (#5952)

#### @std/url

- BREAKING(url): remove @std/url (#5931)

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

- BREAKING(uuid/unstable): move UUID v7 APIs to `./unstable-v7` (#5937)

### 2024.09.04

#### @std/archive 0.225.2 (patch)
Expand Down
2 changes: 1 addition & 1 deletion archive/deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@std/archive",
"version": "0.225.2",
"version": "0.225.3",
"exports": {
".": "./mod.ts",
"./tar": "./tar.ts",
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.4",
"version": "1.0.5",
"exports": {
".": "./mod.ts",
"./assert": "./assert.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.5",
"version": "1.0.6",
"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.5",
"version": "1.0.6",
"exports": {
".": "./mod.ts",
"./aggregate-groups": "./aggregate_groups.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.2",
"version": "1.0.3",
"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.4",
"version": "1.0.5",
"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.2",
"version": "1.0.3",
"exports": {
".": "./mod.ts",
"./expect": "./expect.ts",
Expand Down
2 changes: 1 addition & 1 deletion front_matter/deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@std/front-matter",
"version": "1.0.4",
"version": "1.0.5",
"exports": {
".": "./mod.ts",
"./any": "./any.ts",
Expand Down
2 changes: 1 addition & 1 deletion html/deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@std/html",
"version": "1.0.2",
"version": "1.0.3",
"exports": {
".": "./mod.ts",
"./entities": "./entities.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.5",
"version": "1.0.6",
"exports": {
".": "./mod.ts",
"./cookie": "./cookie.ts",
Expand Down
32 changes: 16 additions & 16 deletions import_map.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,45 +6,45 @@
"automation/": "https://raw.githubusercontent.com/denoland/automation/0.10.0/",
"graphviz": "npm:node-graphviz@^0.1.1",

"@std/archive": "jsr:@std/archive@^0.225.2",
"@std/assert": "jsr:@std/assert@^1.0.4",
"@std/archive": "jsr:@std/archive@^0.225.3",
"@std/assert": "jsr:@std/assert@^1.0.5",
"@std/async": "jsr:@std/async@^1.0.5",
"@std/bytes": "jsr:@std/bytes@^1.0.2",
"@std/cache": "jsr:@std/cache@^0.1.2",
"@std/cli": "jsr:@std/cli@^1.0.5",
"@std/collections": "jsr:@std/collections@^1.0.5",
"@std/cli": "jsr:@std/cli@^1.0.6",
"@std/collections": "jsr:@std/collections@^1.0.6",
"@std/crypto": "jsr:@std/crypto@^1.0.3",
"@std/csv": "jsr:@std/csv@^1.0.3",
"@std/data-structures": "jsr:@std/data-structures@^1.0.2",
"@std/data-structures": "jsr:@std/data-structures@^1.0.3",
"@std/datetime": "jsr:@std/datetime@^0.225.2",
"@std/dotenv": "jsr:@std/dotenv@^0.225.2",
"@std/encoding": "jsr:@std/encoding@^1.0.4",
"@std/expect": "jsr:@std/expect@^1.0.2",
"@std/encoding": "jsr:@std/encoding@^1.0.5",
"@std/expect": "jsr:@std/expect@^1.0.3",
"@std/fmt": "jsr:@std/fmt@^1.0.2",
"@std/front-matter": "jsr:@std/front-matter@^1.0.4",
"@std/front-matter": "jsr:@std/front-matter@^1.0.5",
"@std/fs": "jsr:@std/fs@^1.0.3",
"@std/html": "jsr:@std/html@^1.0.2",
"@std/http": "jsr:@std/http@^1.0.5",
"@std/html": "jsr:@std/html@^1.0.3",
"@std/http": "jsr:@std/http@^1.0.6",
"@std/ini": "jsr:@std/ini@^1.0.0-rc.4",
"@std/internal": "jsr:@std/internal@^1.0.3",
"@std/io": "jsr:@std/io@^0.224.7",
"@std/io": "jsr:@std/io@^0.224.8",
"@std/json": "jsr:@std/json@^1.0.0",
"@std/jsonc": "jsr:@std/jsonc@^1.0.1",
"@std/log": "jsr:@std/log@^0.224.7",
"@std/media-types": "jsr:@std/media-types@^1.0.3",
"@std/msgpack": "jsr:@std/msgpack@^1.0.2",
"@std/net": "jsr:@std/net@^1.0.2",
"@std/path": "jsr:@std/path@^1.0.4",
"@std/net": "jsr:@std/net@^1.0.3",
"@std/path": "jsr:@std/path@^1.0.5",
"@std/regexp": "jsr:@std/regexp@^1.0.0",
"@std/random": "jsr:@std/random@^0.1.0",
"@std/semver": "jsr:@std/semver@^1.0.3",
"@std/streams": "jsr:@std/streams@^1.0.4",
"@std/streams": "jsr:@std/streams@^1.0.5",
"@std/tar": "jsr:@std/tar@^0.1.0",
"@std/testing": "jsr:@std/testing@^1.0.2",
"@std/text": "jsr:@std/text@^1.0.5",
"@std/text": "jsr:@std/text@^1.0.6",
"@std/toml": "jsr:@std/toml@^1.0.1",
"@std/ulid": "jsr:@std/ulid@^1.0.0",
"@std/uuid": "jsr:@std/uuid@^1.0.3",
"@std/uuid": "jsr:@std/uuid@^1.0.4",
"@std/webgpu": "jsr:@std/webgpu@^0.224.7",
"@std/yaml": "jsr:@std/yaml@^1.0.5"
}
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.224.7",
"version": "0.224.8",
"exports": {
".": "./mod.ts",
"./buf-reader": "./buf_reader.ts",
Expand Down
2 changes: 1 addition & 1 deletion net/deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@std/net",
"version": "1.0.2",
"version": "1.0.3",
"exports": {
".": "./mod.ts",
"./get-available-port": "./get_available_port.ts",
Expand Down
2 changes: 1 addition & 1 deletion path/deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@std/path",
"version": "1.0.4",
"version": "1.0.5",
"exports": {
".": "./mod.ts",
"./basename": "./basename.ts",
Expand Down
2 changes: 1 addition & 1 deletion streams/deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@std/streams",
"version": "1.0.4",
"version": "1.0.5",
"exports": {
".": "./mod.ts",
"./buffer": "./buffer.ts",
Expand Down
2 changes: 1 addition & 1 deletion text/deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@std/text",
"version": "1.0.5",
"version": "1.0.6",
"exports": {
".": "./mod.ts",
"./closest-string": "./closest_string.ts",
Expand Down
2 changes: 1 addition & 1 deletion uuid/deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@std/uuid",
"version": "1.0.3",
"version": "1.0.4",
"exports": {
".": "./mod.ts",
"./common": "./common.ts",
Expand Down

0 comments on commit c5d7930

Please sign in to comment.