mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 20:38:55 +00:00
v1.5.4
This commit is contained in:
parent
230a11e8a4
commit
bc79d55649
10
Cargo.lock
generated
10
Cargo.lock
generated
@ -408,7 +408,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "deno"
|
||||
version = "1.5.3"
|
||||
version = "1.5.4"
|
||||
dependencies = [
|
||||
"atty",
|
||||
"base64 0.12.3",
|
||||
@ -467,7 +467,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "deno_core"
|
||||
version = "0.68.0"
|
||||
version = "0.69.0"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"futures",
|
||||
@ -485,7 +485,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "deno_crypto"
|
||||
version = "0.2.0"
|
||||
version = "0.3.0"
|
||||
dependencies = [
|
||||
"deno_core",
|
||||
"rand 0.7.3",
|
||||
@ -509,7 +509,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "deno_fetch"
|
||||
version = "0.11.0"
|
||||
version = "0.12.0"
|
||||
dependencies = [
|
||||
"deno_core",
|
||||
"reqwest",
|
||||
@ -535,7 +535,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "deno_web"
|
||||
version = "0.19.0"
|
||||
version = "0.20.0"
|
||||
dependencies = [
|
||||
"deno_core",
|
||||
"futures",
|
||||
|
26
Releases.md
26
Releases.md
@ -6,6 +6,32 @@ https://github.com/denoland/deno/releases
|
||||
We also have one-line install commands at:
|
||||
https://github.com/denoland/deno_install
|
||||
|
||||
### 1.5.4 / 2020.11.23
|
||||
|
||||
- feat(unstable): Add deno test --no-run (#8093)
|
||||
- feat(unstable): Support --watch flag for bundle and fmt subcommands (#8276)
|
||||
- fix: Support "deno run --v8-flags=--help" without script (#8110)
|
||||
- fix(tsc): Allow non-standard extensions on imports (#8464)
|
||||
- refactor: Improve Deno.version type declaration (#8391)
|
||||
- refactor: Rename --failfast to --fail-fast for test subcommand (#8456)
|
||||
- upgrade: rusty_v8 0.13.0, v8 8.8.278.2 (#8446)
|
||||
|
||||
Changes in std version 0.79.0:
|
||||
|
||||
- feat(std/hash): Add HmacSha1 (#8418)
|
||||
- feat(std/http): Check if cookie property is valid (#7189)
|
||||
- feat(std/http): Validate cookie path value (#8457)
|
||||
- feat(std/io): ReadableStream from AsyncIterator & WritableStream from Writer
|
||||
(#8378)
|
||||
- feat(std/log): Log error stack (#8401)
|
||||
- feat(std/node): Add os.totalmem, os.freemem (#8317)
|
||||
- feat(std/node): Add ReadableStream, WritableStream, errors support (#7569)
|
||||
- feat(std/node): Add util.deprecate (#8407)
|
||||
- feat(std/node): Add process.nextTick (#8386)
|
||||
- fix(std/http): Fix error handling in the request iterator (#8365)
|
||||
- fix(std/node) Fix event extendability (#8409)
|
||||
- fix(std/node): Correct typings for global, globalThis, window (#8363)
|
||||
|
||||
### 1.5.3 / 2020.11.16
|
||||
|
||||
- feat(unstable): support deno lint --rules --json (#8384)
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
[package]
|
||||
name = "deno"
|
||||
version = "1.5.3"
|
||||
version = "1.5.4"
|
||||
license = "MIT"
|
||||
authors = ["the Deno authors"]
|
||||
edition = "2018"
|
||||
@ -20,10 +20,10 @@ harness = false
|
||||
path = "./bench/main.rs"
|
||||
|
||||
[build-dependencies]
|
||||
deno_crypto = { path = "../op_crates/crypto", version = "0.2.0" }
|
||||
deno_core = { path = "../core", version = "0.68.0" }
|
||||
deno_web = { path = "../op_crates/web", version = "0.19.0" }
|
||||
deno_fetch = { path = "../op_crates/fetch", version = "0.11.0" }
|
||||
deno_crypto = { path = "../op_crates/crypto", version = "0.3.0" }
|
||||
deno_core = { path = "../core", version = "0.69.0" }
|
||||
deno_web = { path = "../op_crates/web", version = "0.20.0" }
|
||||
deno_fetch = { path = "../op_crates/fetch", version = "0.12.0" }
|
||||
regex = "1.3.9"
|
||||
serde = { version = "1.0.116", features = ["derive"] }
|
||||
|
||||
@ -32,12 +32,12 @@ winres = "0.1.11"
|
||||
winapi = "0.3.9"
|
||||
|
||||
[dependencies]
|
||||
deno_crypto = { path = "../op_crates/crypto", version = "0.2.0" }
|
||||
deno_core = { path = "../core", version = "0.68.0" }
|
||||
deno_crypto = { path = "../op_crates/crypto", version = "0.3.0" }
|
||||
deno_core = { path = "../core", version = "0.69.0" }
|
||||
deno_doc = "0.1.16"
|
||||
deno_lint = "0.2.11"
|
||||
deno_web = { path = "../op_crates/web", version = "0.19.0" }
|
||||
deno_fetch = { path = "../op_crates/fetch", version = "0.11.0" }
|
||||
deno_web = { path = "../op_crates/web", version = "0.20.0" }
|
||||
deno_fetch = { path = "../op_crates/fetch", version = "0.12.0" }
|
||||
|
||||
atty = "0.2.14"
|
||||
base64 = "0.12.3"
|
||||
|
@ -1,7 +1,7 @@
|
||||
# Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
||||
[package]
|
||||
name = "deno_core"
|
||||
version = "0.68.0"
|
||||
version = "0.69.0"
|
||||
edition = "2018"
|
||||
description = "A secure JavaScript/TypeScript runtime built with V8, Rust, and Tokio"
|
||||
authors = ["the Deno authors"]
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
[package]
|
||||
name = "deno_crypto"
|
||||
version = "0.2.0"
|
||||
version = "0.3.0"
|
||||
edition = "2018"
|
||||
description = "Collection of WebCrypto APIs"
|
||||
authors = ["the Deno authors"]
|
||||
@ -14,6 +14,6 @@ repository = "https://github.com/denoland/deno"
|
||||
path = "lib.rs"
|
||||
|
||||
[dependencies]
|
||||
deno_core = { version = "0.68.0", path = "../../core" }
|
||||
deno_core = { version = "0.69.0", path = "../../core" }
|
||||
rand = "0.7.3"
|
||||
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
[package]
|
||||
name = "deno_fetch"
|
||||
version = "0.11.0"
|
||||
version = "0.12.0"
|
||||
edition = "2018"
|
||||
description = "provides fetch Web API to deno_core"
|
||||
authors = ["the Deno authors"]
|
||||
@ -14,6 +14,6 @@ repository = "https://github.com/denoland/deno"
|
||||
path = "lib.rs"
|
||||
|
||||
[dependencies]
|
||||
deno_core = { version = "0.68.0", path = "../../core" }
|
||||
deno_core = { version = "0.69.0", path = "../../core" }
|
||||
reqwest = { version = "0.10.8", default-features = false, features = ["rustls-tls", "stream", "gzip", "brotli"] }
|
||||
serde = { version = "1.0.116", features = ["derive"] }
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
[package]
|
||||
name = "deno_web"
|
||||
version = "0.19.0"
|
||||
version = "0.20.0"
|
||||
edition = "2018"
|
||||
description = "Collection of Web APIs"
|
||||
authors = ["the Deno authors"]
|
||||
@ -14,7 +14,7 @@ repository = "https://github.com/denoland/deno"
|
||||
path = "lib.rs"
|
||||
|
||||
[dependencies]
|
||||
deno_core = { version = "0.68.0", path = "../../core" }
|
||||
deno_core = { version = "0.69.0", path = "../../core" }
|
||||
idna = "0.2.0"
|
||||
serde = { version = "1.0.116", features = ["derive"] }
|
||||
|
||||
|
@ -5,4 +5,4 @@
|
||||
* the cli's API is stable. In the future when std becomes stable, likely we
|
||||
* will match versions with cli as we have in the past.
|
||||
*/
|
||||
export const VERSION = "0.78.0";
|
||||
export const VERSION = "0.79.0";
|
||||
|
Loading…
Reference in New Issue
Block a user