chore: release 2024.08.02 (#5621)

Co-authored-by: kt3k <kt3k@users.noreply.github.com>
This commit is contained in:
denobot 2024-08-02 07:27:08 -04:00 committed by GitHub
parent d205617740
commit 0e4f294cdf
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
15 changed files with 150 additions and 26 deletions

View File

@ -1,3 +1,127 @@
### 2024.08.02
#### @std/assert 1.0.2 (patch)
- feat(assert/unstable): add `options` parameter to `AssertionError` constructor
(#5561)
- chore(assert): mark `options` argument of `AssertionError` constructor
unstable (#5573)
#### @std/async 1.0.2 (patch)
- fix(async): `abortableAsyncIterable()` should call `.return()` on the
generator once aborted (#5560)
- test(async): improve test speed of `async/pool_test.ts` (#5611)
- test(async): fix `abortable.AsyncIterable() calls return before throwing` test
(#5596)
#### @std/cli 1.0.2 (patch)
- refactor(cli): use non-null assertion in `parseArgs()` logic (#5618)
- refactor(cli): simplify `argv` and `notFlags` push (#5608)
- refactor(cli): remove `broken` variable in favour of loop label (#5602)
- refactor(cli): use `for of` instead of `for in` loop (#5598)
- refactor(cli): make regexps constants (#5595)
- chore(cli): simplify `parseArgs()` logic (#5601)
- chore(cli): simplify `setNested()` and `hasNested()` (#5599)
#### @std/csv 1.0.0-rc.6 (prerelease)
- feat(csv): support `fieldsPerRecord` in `CsvParseStream` (#5600)
- fix(csv): remove `undefined` from possible value type of parse result (#5617)
- fix(csv): show 1-based line and column numbers in error messages (#5604)
- docs(csv): more examples for `stringify` and `CsvStringifyStream` (#5606)
- docs(csv): more examples for `parse` and `CsvParseStream` (#5605)
- docs(csv): clarify `CsvParseStream` description (#5613)
- docs(csv): clarify `parse` document (#5597)
- docs(csv): correct thrown error type in `fieldsPerRecord` field description
(#5594)
#### @std/datetime 0.224.4 (patch)
- chore(datetime): remove console log (#5610)
#### @std/fmt 1.0.0 (major)
- BREAKING(fmt): rename `PrettyDurationOptions` to `FormatOptions` (#5591)
- docs(fmt,fs,text,yaml): fix Markdown alerts (#5568)
- chore(fmt): release `fmt@1.0.0` (#5454)
#### @std/front-matter 1.0.1 (patch)
- refactor(front-matter): replace regexp factory with regexp literals (#5370)
#### @std/fs 1.0.1 (patch)
- docs(fmt,fs,text,yaml): fix Markdown alerts (#5568)
- docs(fs): fix incorrect examples for walk (#5559)
#### @std/html 1.0.1 (patch)
- feat(html/unstable): add `isValidCustomElementName()` (#5456)
#### @std/http 1.0.0 (major)
- BREAKING(http): remove `ETagSource` (#5577)
- fix(http): better `eTag` return type for `string` and `Uint8Array` inputs
(#5571)
- fix(http): update localhost strings in tests (#5563)
- chore(http): release `http@1.0.0` (#5217)
#### @std/ini 1.0.0-rc.3 (prerelease)
- BREAKING(ini): reduce options for `stringify`, make `FormattingOptions` type
private (#5572)
- feat(ini): add type param for value type (#5588)
- fix(ini): correctly handle quoted values in `parse()` (#5592)
- docs(ini): cleanup module documentation (#5566)
- refactor(ini): cleanup dead code (#5576)
- test(ini): copy tests from `ini/_ini_map_test.ts` (#5593)
#### @std/io 0.224.4 (patch)
- refactor(io): use `writeAll()` within `copy()` (#5580)
#### @std/net 1.0.0 (major)
- chore(net): release net@1.0.0 (#5457)
#### @std/semver 1.0.0 (major)
- BREAKING(semver): remove the handling of non-standard SemVers in format
function (#5587)
- BREAKING(semver): do not accept undefined input in `tryParse` (#5584)
- fix(semver): do not throw in `canParse` (#5583)
- fix(semver): throw on invalid input in `parseRange()` (#5567)
- fix(semver): correctly remove spaces between operators and versions in
`parseRange()` (#5564)
- docs(semver): fix `Comparator` example (#5585)
- docs(semver): clarify `compare` docs (#5586)
- refactor(semver): throw `TypeError` if release is invalid in `increment()`
(#5565)
- chore(semver): release `semver@1.0.0` (#5220)
#### @std/testing 1.0.0 (major)
- BREAKING(testing): replace `TimeError` exception in favor of built-in error
classes in some cases (#5550)
- fix(testing): correct `stub()` error message (#5575)
- docs(testing): mention default serializer (#5590)
- refactor(testing): improve error messages in `mock` module (part 2) (#5569)
- chore(testing): release `testing@1.0.0` (#5218)
#### @std/text 1.0.2 (patch)
- docs(fmt,fs,text,yaml): fix Markdown alerts (#5568)
#### @std/url 1.0.0-rc.3 (prerelease)
- deprecation(url): deprecate `@std/url` (#5530)
#### @std/yaml 1.0.1 (patch)
- docs(fmt,fs,text,yaml): fix Markdown alerts (#5568)
### 2024.07.26
#### @std/assert 1.0.1 (patch)

View File

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

View File

@ -1,6 +1,6 @@
{
"name": "@std/async",
"version": "1.0.1",
"version": "1.0.2",
"exports": {
".": "./mod.ts",
"./abortable": "./abortable.ts",

View File

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

View File

@ -1,6 +1,6 @@
{
"name": "@std/csv",
"version": "1.0.0-rc.5",
"version": "1.0.0-rc.6",
"exports": {
".": "./mod.ts",
"./parse": "./parse.ts",

View File

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

View File

@ -13,26 +13,26 @@
"graphviz": "npm:node-graphviz@^0.1.1",
"@std/archive": "jsr:@std/archive@^0.224.3",
"@std/assert": "jsr:@std/assert@^1.0.1",
"@std/async": "jsr:@std/async@^1.0.1",
"@std/assert": "jsr:@std/assert@^1.0.2",
"@std/async": "jsr:@std/async@^1.0.2",
"@std/bytes": "jsr:@std/bytes@^1.0.2-rc.3",
"@std/cli": "jsr:@std/cli@^1.0.1",
"@std/cli": "jsr:@std/cli@^1.0.2",
"@std/collections": "jsr:@std/collections@^1.0.5",
"@std/crypto": "jsr:@std/crypto@^1.0.2-rc.1",
"@std/csv": "jsr:@std/csv@^1.0.0-rc.5",
"@std/csv": "jsr:@std/csv@^1.0.0-rc.6",
"@std/data-structures": "jsr:@std/data-structures@^1.0.1",
"@std/datetime": "jsr:@std/datetime@^0.224.3",
"@std/datetime": "jsr:@std/datetime@^0.224.4",
"@std/dotenv": "jsr:@std/dotenv@^0.225.0",
"@std/encoding": "jsr:@std/encoding@^1.0.1",
"@std/expect": "jsr:@std/expect@^1.0.0",
"@std/fmt": "jsr:@std/fmt@^1.0.0",
"@std/front-matter": "jsr:@std/front-matter@^1.0.0",
"@std/fs": "jsr:@std/fs@^1.0.0",
"@std/html": "jsr:@std/html@^1.0.0",
"@std/front-matter": "jsr:@std/front-matter@^1.0.1",
"@std/fs": "jsr:@std/fs@^1.0.1",
"@std/html": "jsr:@std/html@^1.0.1",
"@std/http": "jsr:@std/http@^1.0.0",
"@std/ini": "jsr:@std/ini@^1.0.0-rc.2",
"@std/ini": "jsr:@std/ini@^1.0.0-rc.3",
"@std/internal": "jsr:@std/internal@^1.0.1",
"@std/io": "jsr:@std/io@^0.224.3",
"@std/io": "jsr:@std/io@^0.224.4",
"@std/json": "jsr:@std/json@^1.0.0",
"@std/jsonc": "jsr:@std/jsonc@^1.0.0",
"@std/log": "jsr:@std/log@^0.224.5",
@ -44,13 +44,13 @@
"@std/semver": "jsr:@std/semver@^1.0.0",
"@std/streams": "jsr:@std/streams@^1.0.0",
"@std/testing": "jsr:@std/testing@^1.0.0",
"@std/text": "jsr:@std/text@^1.0.1",
"@std/text": "jsr:@std/text@^1.0.2",
"@std/toml": "jsr:@std/toml@^1.0.0",
"@std/ulid": "jsr:@std/ulid@^1.0.0",
"@std/url": "jsr:@std/url@^1.0.0-rc.2",
"@std/url": "jsr:@std/url@^1.0.0-rc.3",
"@std/uuid": "jsr:@std/uuid@^1.0.0",
"@std/webgpu": "jsr:@std/webgpu@^0.224.5",
"@std/yaml": "jsr:@std/yaml@^1.0.0"
"@std/yaml": "jsr:@std/yaml@^1.0.1"
},
"tasks": {
"test": "deno test --unstable-http --unstable-webgpu --doc --allow-all --parallel --coverage --trace-leaks --clean",

View File

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

View File

@ -1,6 +1,6 @@
{
"name": "@std/fs",
"version": "1.0.0",
"version": "1.0.1",
"exports": {
".": "./mod.ts",
"./copy": "./copy.ts",

View File

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

View File

@ -1,6 +1,6 @@
{
"name": "@std/ini",
"version": "1.0.0-rc.2",
"version": "1.0.0-rc.3",
"exports": {
".": "./mod.ts",
"./parse": "./parse.ts",

View File

@ -1,6 +1,6 @@
{
"name": "@std/io",
"version": "0.224.3",
"version": "0.224.4",
"exports": {
".": "./mod.ts",
"./buf-reader": "./buf_reader.ts",

View File

@ -1,6 +1,6 @@
{
"name": "@std/text",
"version": "1.0.1",
"version": "1.0.2",
"exports": {
".": "./mod.ts",
"./closest-string": "./closest_string.ts",

View File

@ -1,6 +1,6 @@
{
"name": "@std/url",
"version": "1.0.0-rc.2",
"version": "1.0.0-rc.3",
"exports": {
".": "./mod.ts",
"./basename": "./basename.ts",

View File

@ -1,6 +1,6 @@
{
"name": "@std/yaml",
"version": "1.0.0",
"version": "1.0.1",
"exports": {
".": "./mod.ts",
"./parse": "./parse.ts",