mirror of
https://github.com/denoland/std.git
synced 2024-11-21 20:50:22 +00:00
chore: release 2024.05.29 (#4883)
Co-authored-by: kt3k <kt3k@users.noreply.github.com>
This commit is contained in:
parent
7717c29173
commit
673c436739
88
Releases.md
88
Releases.md
@ -1,3 +1,91 @@
|
||||
### 2024.05.29
|
||||
|
||||
#### @std/cli 0.224.4 (patch)
|
||||
|
||||
- fix(cli): reduce flicker in spinner render function (#4835)
|
||||
- docs(cli): make check_docs pass (#4815)
|
||||
- docs(cli): improve spinner.message document (#4785)
|
||||
- test(cli): reduce the flakiness of `Spinner` test cases (#4844)
|
||||
|
||||
#### @std/data-structures 0.225.0 (minor)
|
||||
|
||||
- BREAKING(data-structures): hide private internals (#4827)
|
||||
- docs(data-structures): enables doc lint of data-structures (#4847)
|
||||
|
||||
#### @std/encoding 0.224.3 (patch)
|
||||
|
||||
- docs(encoding): fix typo in `ascii85.ts` (#4854)
|
||||
- docs(encoding): Cleanup and fix doc lints (#4838)
|
||||
- refactor(encoding): remove unnecessary prefixes from private functions (#4862)
|
||||
- refactor(encoding): rename `_util.ts` (#4860)
|
||||
- test(encoding): use own `encodeHex()` and `decodeHex()` (#4863)
|
||||
|
||||
#### @std/expect 0.224.3 (patch)
|
||||
|
||||
- docs(expect): document methods and add examples (#4836)
|
||||
|
||||
#### @std/fmt 0.225.2 (patch)
|
||||
|
||||
- docs(fmt): improve API docs (#4829)
|
||||
|
||||
#### @std/front-matter 0.224.1 (patch)
|
||||
|
||||
- docs(front-matter): improve docs for stabilization (#4789)
|
||||
|
||||
#### @std/html 0.224.1 (patch)
|
||||
|
||||
- docs(html): improve API docs (#4878)
|
||||
|
||||
#### @std/http 0.224.2 (patch)
|
||||
|
||||
- docs(http): don't run some examples in doc checker (#4840)
|
||||
- docs(http): improve docs for stabilization (#4813)
|
||||
|
||||
#### @std/ini 0.225.0 (minor)
|
||||
|
||||
- BREAKING(ini): remove internal `Formatting` type (#4818)
|
||||
- fix(ini): remove unused `ParseOptions.assignment` property (#4816)
|
||||
- docs(ini): add missing doc comments (#4819)
|
||||
- refactor(ini): move StringifyOptions to stringify.ts (#4817)
|
||||
|
||||
#### @std/msgpack 0.224.2 (patch)
|
||||
|
||||
- fix(msgpack): error on early end of data (#4831)
|
||||
- docs(msgpack): complete documentation of the package (#4832)
|
||||
|
||||
#### @std/semver 0.224.1 (patch)
|
||||
|
||||
- docs(semver): improve docs (#4846)
|
||||
|
||||
#### @std/streams 0.224.2 (patch)
|
||||
|
||||
- docs(streams): improve docs for stabilization (#4852)
|
||||
|
||||
#### @std/text 0.224.1 (patch)
|
||||
|
||||
- docs(text): pass docs check (#4837)
|
||||
- docs(text): add module doc (#4812)
|
||||
|
||||
#### @std/ulid 0.224.1 (patch)
|
||||
|
||||
- docs(ulid): finish documentation (#4825)
|
||||
|
||||
#### @std/uuid 0.224.3 (patch)
|
||||
|
||||
- deprecation(uuid): deprecate `v1.generate()` signature with `buf` and `offset`
|
||||
parameters (#4880)
|
||||
- deprecation(uuid): rename `V1Options` to `GenerateOptions` (#4872)
|
||||
- fix(uuid): validate namespace UUIDs in `v3.generate()` and `v5.generate()`
|
||||
(#4874)
|
||||
- docs(uuid): update module docs (#4790)
|
||||
- test(uuid): add tests for invalid namespace UUID (#4875)
|
||||
|
||||
#### @std/yaml 0.224.1 (patch)
|
||||
|
||||
- refactor(yaml): remove dead code (#4849)
|
||||
- test(yaml): test handling of omap (#4851)
|
||||
- test(yaml): test float handling (#4850)
|
||||
|
||||
### 2024.05.22
|
||||
|
||||
#### @std/assert 0.225.3 (patch)
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@std/cli",
|
||||
"version": "0.224.3",
|
||||
"version": "0.224.4",
|
||||
"exports": {
|
||||
".": "./mod.ts",
|
||||
"./parse-args": "./parse_args.ts",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@std/data-structures",
|
||||
"version": "0.224.1",
|
||||
"version": "0.225.0",
|
||||
"exports": {
|
||||
".": "./mod.ts",
|
||||
"./binary-heap": "./binary_heap.ts",
|
||||
|
32
deno.json
32
deno.json
@ -16,41 +16,41 @@
|
||||
"@std/assert": "jsr:@std/assert@^0.225.3",
|
||||
"@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.3",
|
||||
"@std/cli": "jsr:@std/cli@^0.224.4",
|
||||
"@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.224.1",
|
||||
"@std/data-structures": "jsr:@std/data-structures@^0.225.0",
|
||||
"@std/datetime": "jsr:@std/datetime@^0.224.0",
|
||||
"@std/dotenv": "jsr:@std/dotenv@^0.224.0",
|
||||
"@std/encoding": "jsr:@std/encoding@^0.224.2",
|
||||
"@std/expect": "jsr:@std/expect@^0.224.2",
|
||||
"@std/fmt": "jsr:@std/fmt@^0.225.1",
|
||||
"@std/front-matter": "jsr:@std/front-matter@^0.224.0",
|
||||
"@std/encoding": "jsr:@std/encoding@^0.224.3",
|
||||
"@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/fs": "jsr:@std/fs@^0.229.1",
|
||||
"@std/html": "jsr:@std/html@^0.224.0",
|
||||
"@std/http": "jsr:@std/http@^0.224.1",
|
||||
"@std/ini": "jsr:@std/ini@^0.224.0",
|
||||
"@std/html": "jsr:@std/html@^0.224.1",
|
||||
"@std/http": "jsr:@std/http@^0.224.2",
|
||||
"@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/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.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/regexp": "jsr:@std/regexp@^0.224.1",
|
||||
"@std/semver": "jsr:@std/semver@^0.224.0",
|
||||
"@std/streams": "jsr:@std/streams@^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.0",
|
||||
"@std/text": "jsr:@std/text@^0.224.1",
|
||||
"@std/toml": "jsr:@std/toml@^0.224.0",
|
||||
"@std/ulid": "jsr:@std/ulid@^0.224.0",
|
||||
"@std/ulid": "jsr:@std/ulid@^0.224.1",
|
||||
"@std/url": "jsr:@std/url@^0.224.0",
|
||||
"@std/uuid": "jsr:@std/uuid@^0.224.0",
|
||||
"@std/uuid": "jsr:@std/uuid@^0.224.3",
|
||||
"@std/webgpu": "jsr:@std/webgpu@^0.224.2",
|
||||
"@std/yaml": "jsr:@std/yaml@^0.224.0"
|
||||
"@std/yaml": "jsr:@std/yaml@^0.224.1"
|
||||
},
|
||||
"tasks": {
|
||||
"test": "RUST_BACKTRACE=1 deno test --unstable-http --unstable-webgpu --doc --allow-all --parallel --coverage --trace-leaks",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@std/encoding",
|
||||
"version": "0.224.2",
|
||||
"version": "0.224.3",
|
||||
"exports": {
|
||||
".": "./mod.ts",
|
||||
"./ascii85": "./ascii85.ts",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@std/expect",
|
||||
"version": "0.224.2",
|
||||
"version": "0.224.3",
|
||||
"exports": {
|
||||
".": "./mod.ts",
|
||||
"./expect": "./expect.ts",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@std/fmt",
|
||||
"version": "0.225.1",
|
||||
"version": "0.225.2",
|
||||
"exports": {
|
||||
"./bytes": "./bytes.ts",
|
||||
"./colors": "./colors.ts",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@std/front-matter",
|
||||
"version": "0.224.0",
|
||||
"version": "0.224.1",
|
||||
"exports": {
|
||||
".": "./mod.ts",
|
||||
"./any": "./any.ts",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@std/html",
|
||||
"version": "0.224.0",
|
||||
"version": "0.224.1",
|
||||
"exports": {
|
||||
".": "./mod.ts",
|
||||
"./entities": "./entities.ts",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@std/http",
|
||||
"version": "0.224.1",
|
||||
"version": "0.224.2",
|
||||
"exports": {
|
||||
".": "./mod.ts",
|
||||
"./cookie": "./cookie.ts",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@std/ini",
|
||||
"version": "0.224.0",
|
||||
"version": "0.225.0",
|
||||
"exports": {
|
||||
".": "./mod.ts",
|
||||
"./ini-map": "./ini_map.ts",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@std/msgpack",
|
||||
"version": "0.224.1",
|
||||
"version": "0.224.2",
|
||||
"exports": {
|
||||
".": "./mod.ts",
|
||||
"./decode": "./decode.ts",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@std/semver",
|
||||
"version": "0.224.0",
|
||||
"version": "0.224.1",
|
||||
"exports": {
|
||||
".": "./mod.ts",
|
||||
"./can-parse": "./can_parse.ts",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@std/streams",
|
||||
"version": "0.224.1",
|
||||
"version": "0.224.2",
|
||||
"exports": {
|
||||
".": "./mod.ts",
|
||||
"./buffer": "./buffer.ts",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@std/text",
|
||||
"version": "0.224.0",
|
||||
"version": "0.224.1",
|
||||
"exports": {
|
||||
".": "./mod.ts",
|
||||
"./case": "./case.ts",
|
||||
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"name": "@std/ulid",
|
||||
"version": "0.224.0",
|
||||
"version": "0.224.1",
|
||||
"exports": "./mod.ts"
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@std/uuid",
|
||||
"version": "0.224.2",
|
||||
"version": "0.224.3",
|
||||
"exports": {
|
||||
".": "./mod.ts",
|
||||
"./common": "./common.ts",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@std/yaml",
|
||||
"version": "0.224.0",
|
||||
"version": "0.224.1",
|
||||
"exports": {
|
||||
".": "./mod.ts",
|
||||
"./parse": "./parse.ts",
|
||||
|
Loading…
Reference in New Issue
Block a user