chore: release 2024.06.03 (#4935)

Co-authored-by: kt3k <kt3k@users.noreply.github.com>
This commit is contained in:
denobot 2024-06-03 15:44:03 +09:00 committed by GitHub
parent 7d46b80cc1
commit b9374d3715
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
20 changed files with 162 additions and 37 deletions

View File

@ -1,3 +1,128 @@
### 2024.06.03
#### @std/assert 0.226.0 (minor)
- BREAKING(assert,testing): remove `formatter` option from `assertEquals()`
(#4893)
- docs(assert,cli,data-structures,expect,fmt,front-matter,html,http,jsonc,semver,streams,text,toml,webgpu):
add snippet checks in module, function and class docs to doc checker (#4855)
- docs(assert): improve docs (#4876)
#### @std/cli 0.224.5 (patch)
- docs(assert,cli,data-structures,expect,fmt,front-matter,html,http,jsonc,semver,streams,text,toml,webgpu):
add snippet checks in module, function and class docs to doc checker (#4855)
#### @std/crypto 1.0.0-rc.1 (prerelease)
- BREAKING(crypto): remove deprecated APIs (#4919)
- BREAKING(crypto): remove KeyStack (#4916)
- docs(crypto): improve docs (#4884)
- refactor(crypto): cleanup redundant assertion in `timingSafeEqual()` (#4907)
- test(crypto): test node.js custom inspection of `KeyStack` (#4887)
- chore(crypto): release `crypto@1.0.0-rc.1` (#4912)
#### @std/csv 0.224.2 (patch)
- docs(csv): use assertions in example code snippets (#4932)
- docs(csv): improve API docs (#4920)
#### @std/data-structures 0.225.1 (patch)
- docs(assert,cli,data-structures,expect,fmt,front-matter,html,http,jsonc,semver,streams,text,toml,webgpu):
add snippet checks in module, function and class docs to doc checker (#4855)
#### @std/encoding 1.0.0-rc.1 (prerelease)
- BREAKING(encoding): replace `Ascii85Options` with `EncodeAscii85Options` and
`DecodeAscii85Options` (#4861)
- BREAKING(encoding): rename `MaxVarInt` to `MaxVarint` (#4896)
- BREAKING(encoding): rename `MaxUInt64` to `MaxUint64` (#4897)
- BREAKING(encoding): remove deprecated VarInt APIs (#4864)
- fix(encoding): throw `TypeError` on invalid input (#4901)
- chore(encoding): release `encoding@1.0.0-rc.1` (#4858)
#### @std/expect 0.224.4 (patch)
- docs(assert,cli,data-structures,expect,fmt,front-matter,html,http,jsonc,semver,streams,text,toml,webgpu):
add snippet checks in module, function and class docs to doc checker (#4855)
#### @std/fmt 0.225.3 (patch)
- docs(assert,cli,data-structures,expect,fmt,front-matter,html,http,jsonc,semver,streams,text,toml,webgpu):
add snippet checks in module, function and class docs to doc checker (#4855)
#### @std/front-matter 0.224.2 (patch)
- docs(assert,cli,data-structures,expect,fmt,front-matter,html,http,jsonc,semver,streams,text,toml,webgpu):
add snippet checks in module, function and class docs to doc checker (#4855)
#### @std/html 0.224.2 (patch)
- docs(assert,cli,data-structures,expect,fmt,front-matter,html,http,jsonc,semver,streams,text,toml,webgpu):
add snippet checks in module, function and class docs to doc checker (#4855)
#### @std/http 0.224.3 (patch)
- docs(assert,cli,data-structures,expect,fmt,front-matter,html,http,jsonc,semver,streams,text,toml,webgpu):
add snippet checks in module, function and class docs to doc checker (#4855)
- docs(http): added `--allow-sys` to file server example (#4890)
#### @std/jsonc 0.224.1 (patch)
- docs(assert,cli,data-structures,expect,fmt,front-matter,html,http,jsonc,semver,streams,text,toml,webgpu):
add snippet checks in module, function and class docs to doc checker (#4855)
#### @std/net 0.224.2 (patch)
- feat(net): `getNetworkAddress()` (#4677)
#### @std/path 0.225.2 (patch)
- docs(path): improve API docs (#4900)
- test(path): add test cases of `isAbsolute()`, `joinGlobs()`, and `common()`
(#4904)
- test(path): test `toNamespacedPath()` (#4902)
#### @std/semver 0.224.2 (patch)
- docs(assert,cli,data-structures,expect,fmt,front-matter,html,http,jsonc,semver,streams,text,toml,webgpu):
add snippet checks in module, function and class docs to doc checker (#4855)
#### @std/streams 0.224.3 (patch)
- docs(assert,cli,data-structures,expect,fmt,front-matter,html,http,jsonc,semver,streams,text,toml,webgpu):
add snippet checks in module, function and class docs to doc checker (#4855)
#### @std/testing 0.225.0 (minor)
- BREAKING(assert,testing): remove `formatter` option from `assertEquals()`
(#4893)
- refactor(testing): do not use assertEquals in snapshot.ts (#4930)
#### @std/text 0.224.2 (patch)
- docs(assert,cli,data-structures,expect,fmt,front-matter,html,http,jsonc,semver,streams,text,toml,webgpu):
add snippet checks in module, function and class docs to doc checker (#4855)
#### @std/toml 0.224.1 (patch)
- docs(assert,cli,data-structures,expect,fmt,front-matter,html,http,jsonc,semver,streams,text,toml,webgpu):
add snippet checks in module, function and class docs to doc checker (#4855)
- docs(toml): lint `@std/toml` docs (#4799)
#### @std/uuid 1.0.0-rc.1 (prerelease)
- BREAKING(uuid): remove `V1Options` in favor of `GenerateOptions` (#4925)
- BREAKING(uuid): remove `v1.generate()` signature with `buf` and `offset`
parameters and `number[]` return type (#4877)
- chore(uuid): release `uuid@1.0.0-rc.1` (#4867)
#### @std/webgpu 0.224.3 (patch)
- docs(assert,cli,data-structures,expect,fmt,front-matter,html,http,jsonc,semver,streams,text,toml,webgpu):
add snippet checks in module, function and class docs to doc checker (#4855)
### 2024.05.29
#### @std/cli 0.224.4 (patch)

View File

@ -1,6 +1,6 @@
{
"name": "@std/assert",
"version": "0.225.3",
"version": "0.226.0",
"exports": {
".": "./mod.ts",
"./assert": "./assert.ts",

View File

@ -1,6 +1,6 @@
{
"name": "@std/cli",
"version": "0.224.4",
"version": "0.224.5",
"exports": {
".": "./mod.ts",
"./parse-args": "./parse_args.ts",

View File

@ -1,6 +1,6 @@
{
"name": "@std/csv",
"version": "0.224.1",
"version": "0.224.2",
"exports": {
".": "./mod.ts",
"./csv-parse-stream": "./csv_parse_stream.ts",

View File

@ -1,6 +1,6 @@
{
"name": "@std/data-structures",
"version": "0.225.0",
"version": "0.225.1",
"exports": {
".": "./mod.ts",
"./binary-heap": "./binary_heap.ts",

View File

@ -13,43 +13,43 @@
"graphviz": "npm:node-graphviz@^0.1.1",
"@std/archive": "jsr:@std/archive@^0.224.0",
"@std/assert": "jsr:@std/assert@^0.225.3",
"@std/assert": "jsr:@std/assert@^0.226.0",
"@std/async": "jsr:@std/async@^0.224.1",
"@std/bytes": "jsr:@std/bytes@^1.0.0-rc.3",
"@std/cli": "jsr:@std/cli@^0.224.4",
"@std/cli": "jsr:@std/cli@^0.224.5",
"@std/collections": "jsr:@std/collections@^1.0.0-rc.1",
"@std/crypto": "jsr:@std/crypto@^0.224.0",
"@std/csv": "jsr:@std/csv@^0.224.1",
"@std/data-structures": "jsr:@std/data-structures@^0.225.0",
"@std/crypto": "jsr:@std/crypto@^1.0.0-rc.1",
"@std/csv": "jsr:@std/csv@^0.224.2",
"@std/data-structures": "jsr:@std/data-structures@^0.225.1",
"@std/datetime": "jsr:@std/datetime@^0.224.0",
"@std/dotenv": "jsr:@std/dotenv@^0.224.0",
"@std/encoding": "jsr:@std/encoding@1.0.0-rc.1",
"@std/expect": "jsr:@std/expect@^0.224.3",
"@std/fmt": "jsr:@std/fmt@^0.225.2",
"@std/front-matter": "jsr:@std/front-matter@^0.224.1",
"@std/expect": "jsr:@std/expect@^0.224.4",
"@std/fmt": "jsr:@std/fmt@^0.225.3",
"@std/front-matter": "jsr:@std/front-matter@^0.224.2",
"@std/fs": "jsr:@std/fs@^0.229.1",
"@std/html": "jsr:@std/html@^0.224.1",
"@std/http": "jsr:@std/http@^0.224.2",
"@std/html": "jsr:@std/html@^0.224.2",
"@std/http": "jsr:@std/http@^0.224.3",
"@std/ini": "jsr:@std/ini@^0.225.0",
"@std/internal": "jsr:@std/internal@^1.0.0",
"@std/io": "jsr:@std/io@^0.224.0",
"@std/json": "jsr:@std/json@^0.224.1",
"@std/jsonc": "jsr:@std/jsonc@^0.224.0",
"@std/jsonc": "jsr:@std/jsonc@^0.224.1",
"@std/log": "jsr:@std/log@^0.224.1",
"@std/media-types": "jsr:@std/media-types@^1.0.0-rc.1",
"@std/msgpack": "jsr:@std/msgpack@^0.224.2",
"@std/net": "jsr:@std/net@^0.224.1",
"@std/path": "jsr:@std/path@^0.225.1",
"@std/net": "jsr:@std/net@^0.224.2",
"@std/path": "jsr:@std/path@^0.225.2",
"@std/regexp": "jsr:@std/regexp@^0.224.1",
"@std/semver": "jsr:@std/semver@^0.224.1",
"@std/streams": "jsr:@std/streams@^0.224.2",
"@std/testing": "jsr:@std/testing@^0.224.0",
"@std/text": "jsr:@std/text@^0.224.1",
"@std/toml": "jsr:@std/toml@^0.224.0",
"@std/semver": "jsr:@std/semver@^0.224.2",
"@std/streams": "jsr:@std/streams@^0.224.3",
"@std/testing": "jsr:@std/testing@^0.225.0",
"@std/text": "jsr:@std/text@^0.224.2",
"@std/toml": "jsr:@std/toml@^0.224.1",
"@std/ulid": "jsr:@std/ulid@^0.224.1",
"@std/url": "jsr:@std/url@^0.224.0",
"@std/uuid": "jsr:@std/uuid@1.0.0-rc.1",
"@std/webgpu": "jsr:@std/webgpu@^0.224.2",
"@std/webgpu": "jsr:@std/webgpu@^0.224.3",
"@std/yaml": "jsr:@std/yaml@^0.224.1"
},
"tasks": {

View File

@ -1,6 +1,6 @@
{
"name": "@std/expect",
"version": "0.224.3",
"version": "0.224.4",
"exports": {
".": "./mod.ts",
"./expect": "./expect.ts",

View File

@ -1,6 +1,6 @@
{
"name": "@std/fmt",
"version": "0.225.2",
"version": "0.225.3",
"exports": {
"./bytes": "./bytes.ts",
"./colors": "./colors.ts",

View File

@ -1,6 +1,6 @@
{
"name": "@std/front-matter",
"version": "0.224.1",
"version": "0.224.2",
"exports": {
".": "./mod.ts",
"./any": "./any.ts",

View File

@ -1,6 +1,6 @@
{
"name": "@std/html",
"version": "0.224.1",
"version": "0.224.2",
"exports": {
".": "./mod.ts",
"./entities": "./entities.ts",

View File

@ -1,6 +1,6 @@
{
"name": "@std/http",
"version": "0.224.2",
"version": "0.224.3",
"exports": {
".": "./mod.ts",
"./cookie": "./cookie.ts",

View File

@ -1,6 +1,6 @@
{
"name": "@std/jsonc",
"version": "0.224.0",
"version": "0.224.1",
"exports": {
".": "./mod.ts",
"./parse": "./parse.ts"

View File

@ -1,6 +1,6 @@
{
"name": "@std/net",
"version": "0.224.1",
"version": "0.224.2",
"exports": {
".": "./mod.ts",
"./get-available-port": "./get_available_port.ts",

View File

@ -1,6 +1,6 @@
{
"name": "@std/path",
"version": "0.225.1",
"version": "0.225.2",
"exports": {
".": "./mod.ts",
"./basename": "./basename.ts",

View File

@ -1,6 +1,6 @@
{
"name": "@std/semver",
"version": "0.224.1",
"version": "0.224.2",
"exports": {
".": "./mod.ts",
"./can-parse": "./can_parse.ts",

View File

@ -1,6 +1,6 @@
{
"name": "@std/streams",
"version": "0.224.2",
"version": "0.224.3",
"exports": {
".": "./mod.ts",
"./buffer": "./buffer.ts",

View File

@ -1,6 +1,6 @@
{
"name": "@std/testing",
"version": "0.224.0",
"version": "0.225.0",
"exports": {
"./asserts": "./asserts.ts",
"./bdd": "./bdd.ts",

View File

@ -1,6 +1,6 @@
{
"name": "@std/text",
"version": "0.224.1",
"version": "0.224.2",
"exports": {
".": "./mod.ts",
"./case": "./case.ts",

View File

@ -1,6 +1,6 @@
{
"name": "@std/toml",
"version": "0.224.0",
"version": "0.224.1",
"exports": {
".": "./mod.ts",
"./parse": "./parse.ts",

View File

@ -1,6 +1,6 @@
{
"name": "@std/webgpu",
"version": "0.224.2",
"version": "0.224.3",
"exports": {
".": "./mod.ts",
"./create-capture": "./create_capture.ts",