mirror of
https://github.com/denoland/std.git
synced 2024-11-21 12:40:03 +00:00
chore: update versions
This commit is contained in:
parent
23f47386ea
commit
87e133d49c
100
Releases.md
100
Releases.md
@ -1,3 +1,103 @@
|
||||
### 2024.09.02
|
||||
|
||||
#### @std/archive 0.225.2 (patch)
|
||||
|
||||
- feat(archive): `UntarStream` and `TarStream` (#4548)
|
||||
|
||||
#### @std/assert 1.0.4 (patch)
|
||||
|
||||
- refactor(assert,datetime,fmt,io,streams): consistently `throw new Error()`
|
||||
instead of `throw Error()` (#5855)
|
||||
|
||||
#### @std/async 1.0.5 (patch)
|
||||
|
||||
- docs(async): add note about `deadline()` `DOMException` name of `TimeoutError`
|
||||
(#5833)
|
||||
|
||||
#### @std/cache 0.1.2 (patch)
|
||||
|
||||
- fix(cache/unstable): fix flaky fibonacci test (#5872)
|
||||
- docs(cache): document valid range information for TTL values (#5834)
|
||||
|
||||
#### @std/datetime 0.225.2 (patch)
|
||||
|
||||
- refactor(assert,datetime,fmt,io,streams): consistently `throw new Error()`
|
||||
instead of `throw Error()` (#5855)
|
||||
|
||||
#### @std/dotenv 0.225.2 (patch)
|
||||
|
||||
- fix(dotenv): handle single-quotes in values in `stringify()` (#5846)
|
||||
|
||||
#### @std/expect 1.0.2 (patch)
|
||||
|
||||
- refactor(expect): align error messages in the matchers (#5835)
|
||||
|
||||
#### @std/fmt 1.0.2 (patch)
|
||||
|
||||
- refactor(assert,datetime,fmt,io,streams): consistently `throw new Error()`
|
||||
instead of `throw Error()` (#5855)
|
||||
|
||||
#### @std/http 1.0.5 (patch)
|
||||
|
||||
- fix(http): less restrictive arguments for `accepts*()` functions (#5850)
|
||||
|
||||
#### @std/io 0.224.7 (patch)
|
||||
|
||||
- fix(io): don't use `Deno.Buffer` in examples (#5889)
|
||||
- refactor(assert,datetime,fmt,io,streams): consistently `throw new Error()`
|
||||
instead of `throw Error()` (#5855)
|
||||
|
||||
#### @std/msgpack 1.0.2 (patch)
|
||||
|
||||
- fix(msgpack): accept readonly input data in `encode()` (#5832)
|
||||
|
||||
#### @std/path 1.0.4 (patch)
|
||||
|
||||
- feat(path/unstable): support `URL` in first arg of `join()` (#5863)
|
||||
- refactor(path): make `isWindows` check compatible with Node and Bun (#4961)
|
||||
|
||||
#### @std/streams 1.0.4 (patch)
|
||||
|
||||
- refactor(assert,datetime,fmt,io,streams): consistently `throw new Error()`
|
||||
instead of `throw Error()` (#5855)
|
||||
|
||||
#### @std/yaml 1.0.5 (patch)
|
||||
|
||||
- refactor(yaml): simplify merge type (#5877)
|
||||
- refactor(yaml): simplify set type (#5867)
|
||||
- refactor(yaml): simplify regexp type (#5860)
|
||||
- refactor(yaml): move `duplicate` and `duplicateIndex` (#5836)
|
||||
- refactor(yaml): inline `composeNode()` (#5861)
|
||||
- refactor(yaml): simplify `resolve()` for pairs (#5852)
|
||||
- refactor(yaml): simplify null type (#5858)
|
||||
- refactor(yaml): simplify boolean type (#5859)
|
||||
- refactor(yaml): inline `readAlias()` (#5856)
|
||||
- refactor(yaml): inline `readAnchorProperty()` (#5853)
|
||||
- refactor(yaml): simplify omap `resolve()` (#5843)
|
||||
- refactor(yaml): simplify pair `construct()` function (#5844)
|
||||
- refactor(yaml): inline `readTagProperty()` (#5849)
|
||||
- refactor(yaml): replace `getObjectTypeString()` with `isPlainObject()` (#5842)
|
||||
- refactor(yaml): inline `readBlockMapping()` (#5847)
|
||||
- refactor(yaml): inline `readBlockScalar()` (#5841)
|
||||
- refactor(yaml): inline `readFlowCollection()` (#5840)
|
||||
- refactor(yaml): change error message in `stringifyNode()` (#5839)
|
||||
- refactor(yaml): inline `readDoubleQuotedScalar()` (#5838)
|
||||
- refactor(yaml): align additional error messages (#5806)
|
||||
- refactor(yaml): move `isObject()` (#5823)
|
||||
- refactor(yaml): inline `readSingleQuotedScalar()` (#5827)
|
||||
- test(yaml): add invalid `represent` type test (#5874)
|
||||
- test(yaml): add positive timezone timestamp test (#5881)
|
||||
- test(yaml): add int type tests (#5868)
|
||||
- test(yaml): add set type test (#5866)
|
||||
- test(yaml): add regexp type tests (#5862)
|
||||
- test(yaml): add duplicate binary references test (#5837)
|
||||
- test(yaml): add undefined array entry with `skipInvalid` and `flowLevel`
|
||||
options test (#5828)
|
||||
- test(yaml): add duplicate array reference test (#5825)
|
||||
- test(yaml): add undefined object entry with skipInvalid and flowLevel option
|
||||
test (#5829)
|
||||
- chore(yaml): fix typo in inline comment (#5845)
|
||||
|
||||
### 2024.08.26
|
||||
|
||||
#### @std/archive 0.225.1 (patch)
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@std/archive",
|
||||
"version": "0.225.1",
|
||||
"version": "0.225.2",
|
||||
"exports": {
|
||||
".": "./mod.ts",
|
||||
"./tar-stream": "./tar_stream.ts",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@std/assert",
|
||||
"version": "1.0.3",
|
||||
"version": "1.0.4",
|
||||
"exports": {
|
||||
".": "./mod.ts",
|
||||
"./assert": "./assert.ts",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@std/async",
|
||||
"version": "1.0.4",
|
||||
"version": "1.0.5",
|
||||
"exports": {
|
||||
".": "./mod.ts",
|
||||
"./abortable": "./abortable.ts",
|
||||
|
2
cache/deno.json
vendored
2
cache/deno.json
vendored
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@std/cache",
|
||||
"version": "0.1.1",
|
||||
"version": "0.1.2",
|
||||
"exports": {
|
||||
".": "./mod.ts",
|
||||
"./lru-cache": "./lru_cache.ts",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@std/datetime",
|
||||
"version": "0.225.1",
|
||||
"version": "0.225.2",
|
||||
"exports": {
|
||||
".": "./mod.ts",
|
||||
"./constants": "./constants.ts",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@std/dotenv",
|
||||
"version": "0.225.1",
|
||||
"version": "0.225.2",
|
||||
"exports": {
|
||||
".": "./mod.ts",
|
||||
"./load": "./load.ts",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@std/expect",
|
||||
"version": "1.0.1",
|
||||
"version": "1.0.2",
|
||||
"exports": {
|
||||
".": "./mod.ts",
|
||||
"./expect": "./expect.ts",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@std/fmt",
|
||||
"version": "1.0.1",
|
||||
"version": "1.0.2",
|
||||
"exports": {
|
||||
"./bytes": "./bytes.ts",
|
||||
"./colors": "./colors.ts",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@std/http",
|
||||
"version": "1.0.4",
|
||||
"version": "1.0.5",
|
||||
"exports": {
|
||||
".": "./mod.ts",
|
||||
"./cookie": "./cookie.ts",
|
||||
|
@ -6,38 +6,38 @@
|
||||
"automation/": "https://raw.githubusercontent.com/denoland/automation/0.10.0/",
|
||||
"graphviz": "npm:node-graphviz@^0.1.1",
|
||||
|
||||
"@std/archive": "jsr:@std/archive@^0.225.1",
|
||||
"@std/assert": "jsr:@std/assert@^1.0.3",
|
||||
"@std/async": "jsr:@std/async@^1.0.4",
|
||||
"@std/archive": "jsr:@std/archive@^0.225.2",
|
||||
"@std/assert": "jsr:@std/assert@^1.0.4",
|
||||
"@std/async": "jsr:@std/async@^1.0.5",
|
||||
"@std/bytes": "jsr:@std/bytes@^1.0.2",
|
||||
"@std/cache": "jsr:@std/cache@^0.1.1",
|
||||
"@std/cache": "jsr:@std/cache@^0.1.2",
|
||||
"@std/cli": "jsr:@std/cli@^1.0.4",
|
||||
"@std/collections": "jsr:@std/collections@^1.0.5",
|
||||
"@std/crypto": "jsr:@std/crypto@^1.0.3",
|
||||
"@std/csv": "jsr:@std/csv@^1.0.2",
|
||||
"@std/data-structures": "jsr:@std/data-structures@^1.0.2",
|
||||
"@std/datetime": "jsr:@std/datetime@^0.225.1",
|
||||
"@std/dotenv": "jsr:@std/dotenv@^0.225.1",
|
||||
"@std/datetime": "jsr:@std/datetime@^0.225.2",
|
||||
"@std/dotenv": "jsr:@std/dotenv@^0.225.2",
|
||||
"@std/encoding": "jsr:@std/encoding@^1.0.3",
|
||||
"@std/expect": "jsr:@std/expect@^1.0.1",
|
||||
"@std/fmt": "jsr:@std/fmt@^1.0.1",
|
||||
"@std/expect": "jsr:@std/expect@^1.0.2",
|
||||
"@std/fmt": "jsr:@std/fmt@^1.0.2",
|
||||
"@std/front-matter": "jsr:@std/front-matter@^1.0.3",
|
||||
"@std/fs": "jsr:@std/fs@^1.0.2",
|
||||
"@std/html": "jsr:@std/html@^1.0.2",
|
||||
"@std/http": "jsr:@std/http@^1.0.4",
|
||||
"@std/http": "jsr:@std/http@^1.0.5",
|
||||
"@std/ini": "jsr:@std/ini@^1.0.0-rc.4",
|
||||
"@std/internal": "jsr:@std/internal@^1.0.2",
|
||||
"@std/io": "jsr:@std/io@^0.224.6",
|
||||
"@std/io": "jsr:@std/io@^0.224.7",
|
||||
"@std/json": "jsr:@std/json@^1.0.0",
|
||||
"@std/jsonc": "jsr:@std/jsonc@^1.0.1",
|
||||
"@std/log": "jsr:@std/log@^0.224.6",
|
||||
"@std/media-types": "jsr:@std/media-types@^1.0.3",
|
||||
"@std/msgpack": "jsr:@std/msgpack@^1.0.1",
|
||||
"@std/msgpack": "jsr:@std/msgpack@^1.0.2",
|
||||
"@std/net": "jsr:@std/net@^1.0.1",
|
||||
"@std/path": "jsr:@std/path@^1.0.3",
|
||||
"@std/path": "jsr:@std/path@^1.0.4",
|
||||
"@std/regexp": "jsr:@std/regexp@^1.0.0",
|
||||
"@std/semver": "jsr:@std/semver@^1.0.2",
|
||||
"@std/streams": "jsr:@std/streams@^1.0.3",
|
||||
"@std/streams": "jsr:@std/streams@^1.0.4",
|
||||
"@std/testing": "jsr:@std/testing@^1.0.1",
|
||||
"@std/text": "jsr:@std/text@^1.0.4",
|
||||
"@std/toml": "jsr:@std/toml@^1.0.1",
|
||||
@ -45,6 +45,6 @@
|
||||
"@std/url": "jsr:@std/url@^0.225.0",
|
||||
"@std/uuid": "jsr:@std/uuid@^1.0.2",
|
||||
"@std/webgpu": "jsr:@std/webgpu@^0.224.6",
|
||||
"@std/yaml": "jsr:@std/yaml@^1.0.4"
|
||||
"@std/yaml": "jsr:@std/yaml@^1.0.5"
|
||||
}
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@std/io",
|
||||
"version": "0.224.6",
|
||||
"version": "0.224.7",
|
||||
"exports": {
|
||||
".": "./mod.ts",
|
||||
"./buf-reader": "./buf_reader.ts",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@std/msgpack",
|
||||
"version": "1.0.1",
|
||||
"version": "1.0.2",
|
||||
"exports": {
|
||||
".": "./mod.ts",
|
||||
"./decode": "./decode.ts",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@std/path",
|
||||
"version": "1.0.3",
|
||||
"version": "1.0.4",
|
||||
"exports": {
|
||||
".": "./mod.ts",
|
||||
"./basename": "./basename.ts",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@std/streams",
|
||||
"version": "1.0.3",
|
||||
"version": "1.0.4",
|
||||
"exports": {
|
||||
".": "./mod.ts",
|
||||
"./buffer": "./buffer.ts",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@std/yaml",
|
||||
"version": "1.0.4",
|
||||
"version": "1.0.5",
|
||||
"exports": {
|
||||
".": "./mod.ts",
|
||||
"./parse": "./parse.ts",
|
||||
|
Loading…
Reference in New Issue
Block a user