This commit is contained in:
Ryan Dahl 2021-01-29 09:53:03 -05:00 committed by GitHub
parent 4b92eef25e
commit 11dd6f2013
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
10 changed files with 73 additions and 35 deletions

14
Cargo.lock generated
View File

@ -390,7 +390,7 @@ checksum = "993a608597367c6377b258c25d7120740f00ed23a2252b729b1932dd7866f908"
[[package]]
name = "deno"
version = "1.7.0"
version = "1.7.1"
dependencies = [
"atty",
"base64 0.13.0",
@ -452,7 +452,7 @@ dependencies = [
[[package]]
name = "deno_core"
version = "0.77.0"
version = "0.77.1"
dependencies = [
"anyhow",
"futures",
@ -471,7 +471,7 @@ dependencies = [
[[package]]
name = "deno_crypto"
version = "0.11.0"
version = "0.11.1"
dependencies = [
"deno_core",
"rand 0.8.3",
@ -495,7 +495,7 @@ dependencies = [
[[package]]
name = "deno_fetch"
version = "0.20.0"
version = "0.20.1"
dependencies = [
"bytes",
"deno_core",
@ -526,7 +526,7 @@ dependencies = [
[[package]]
name = "deno_runtime"
version = "0.7.0"
version = "0.7.1"
dependencies = [
"atty",
"deno_core",
@ -570,7 +570,7 @@ dependencies = [
[[package]]
name = "deno_web"
version = "0.28.0"
version = "0.28.1"
dependencies = [
"deno_core",
"futures",
@ -580,7 +580,7 @@ dependencies = [
[[package]]
name = "deno_websocket"
version = "0.3.0"
version = "0.3.1"
dependencies = [
"deno_core",
"http",

View File

@ -6,6 +6,44 @@ https://github.com/denoland/deno/releases
We also have one-line install commands at:
https://github.com/denoland/deno_install
### 1.7.1 / 2021.01.29
- feat(lsp, unstable): add performance measurements (#9209)
- fix(cli): IO resource types, fix concurrent read/write and graceful close
(#9118)
- fix(cli): Move WorkerOptions::deno types to unstable (#9163)
- fix(cli): add lib dom.asynciterable (#9288)
- fix(cli): correctly determine emit state with redirects (#9287)
- fix(cli): early abort before type checking on missing modules (#9285)
- fix(cli): enable url wpt (#9299)
- fix(cli): fix panic in Deno.emit (#9302)
- fix(cli): fix panic in op_dns_resolve (#9187)
- fix(cli): fix recursive dispatches of unload event (#9207)
- fix(cli): fmt command help message (#9280)
- fix(cli): use DOMException in Performance#measure (#9142)
- fix(cli/flags): don't panic on invalid location scheme (#9202)
- fix(compile): fix panic when cross-compiling between windows and unix (#9203)
- fix(core): Handle prepareStackTrace() throws (#9211)
- fix(coverage): ignore comments (#8639)
- fix(coverage): use source maps when printing pretty reports (#9278)
- fix(lsp): complete list of unused diagnostics (#9274)
- fix(lsp): fix deadlocks, use one big mutex (#9271)
- fix(lsp): handle mbc documents properly (#9151)
- fix(lsp): handle mbc properly when formatting (#9273)
- fix(lsp): reduce deadlocks with in memory documents (#9259)
- fix(op_crates/fetch): fix ReadableStream.pipeThrough() (#9265)
- fix(op_crates/web): Add gb18030 and GBK encodings (#9242)
- fix(op_crates/web): Improve customInspect for Location (#9290)
- chore: new typescript WPT runner (#9269)
Changes in std version 0.85.0:
- feat(std/node): Add support for process.on("exit") (#8940)
- fix(std/async): make pooledMap() errors catchable (#9217)
- fix(std/node): Stop callbacks being called twice when callback throws error
(#8867)
- fix(std/node): replace uses of `window` with `globalThis` (#9237)
### 1.7.0 / 2021.01.19
- BREAKING(unstable): Use hosts for net allowlists (#8845)

View File

@ -2,7 +2,7 @@
[package]
name = "deno"
version = "1.7.0"
version = "1.7.1"
license = "MIT"
authors = ["the Deno authors"]
edition = "2018"
@ -24,10 +24,10 @@ harness = false
path = "./bench/main.rs"
[build-dependencies]
deno_core = { path = "../core", version = "0.77.0" }
deno_fetch = { path = "../op_crates/fetch", version = "0.20.0" }
deno_web = { path = "../op_crates/web", version = "0.28.0" }
deno_websocket = { path = "../op_crates/websocket", version = "0.3.0" }
deno_core = { path = "../core", version = "0.77.1" }
deno_fetch = { path = "../op_crates/fetch", version = "0.20.1" }
deno_web = { path = "../op_crates/web", version = "0.28.1" }
deno_websocket = { path = "../op_crates/websocket", version = "0.3.1" }
regex = "1.4.3"
serde = { version = "1.0.121", features = ["derive"] }
@ -36,10 +36,10 @@ winapi = "0.3.9"
winres = "0.1.11"
[dependencies]
deno_core = { path = "../core", version = "0.77.0" }
deno_core = { path = "../core", version = "0.77.1" }
deno_doc = "0.1.21"
deno_lint = "0.2.17"
deno_runtime = { path = "../runtime", version = "0.7.0" }
deno_runtime = { path = "../runtime", version = "0.7.1" }
atty = "0.2.14"
base64 = "0.13.0"

View File

@ -1,7 +1,7 @@
# Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
[package]
name = "deno_core"
version = "0.77.0"
version = "0.77.1"
edition = "2018"
description = "A secure JavaScript/TypeScript runtime built with V8, Rust, and Tokio"
authors = ["the Deno authors"]

View File

@ -2,7 +2,7 @@
[package]
name = "deno_crypto"
version = "0.11.0"
version = "0.11.1"
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.77.0", path = "../../core" }
deno_core = { version = "0.77.1", path = "../../core" }
rand = "0.8.2"

View File

@ -2,7 +2,7 @@
[package]
name = "deno_fetch"
version = "0.20.0"
version = "0.20.1"
edition = "2018"
description = "provides fetch Web API to deno_core"
authors = ["the Deno authors"]
@ -15,7 +15,7 @@ path = "lib.rs"
[dependencies]
bytes = "1.0.1"
deno_core = { version = "0.77.0", path = "../../core" }
deno_core = { version = "0.77.1", path = "../../core" }
reqwest = { version = "0.11.0", default-features = false, features = ["rustls-tls", "stream", "gzip", "brotli"] }
serde = { version = "1.0.121", features = ["derive"] }
tokio = { version = "1.1.0", features = ["full"] }

View File

@ -2,7 +2,7 @@
[package]
name = "deno_web"
version = "0.28.0"
version = "0.28.1"
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.77.0", path = "../../core" }
deno_core = { version = "0.77.1", path = "../../core" }
idna = "0.2.0"
serde = { version = "1.0.121", features = ["derive"] }

View File

@ -2,7 +2,7 @@
[package]
name = "deno_websocket"
version = "0.3.0"
version = "0.3.1"
edition = "2018"
description = "Implementation of WebSocket API for Deno"
authors = ["the Deno authors"]
@ -14,7 +14,7 @@ repository = "https://github.com/denoland/deno"
path = "lib.rs"
[dependencies]
deno_core = { version = "0.77.0", path = "../../core" }
deno_core = { version = "0.77.1", path = "../../core" }
http = "0.2.3"
serde = { version = "1.0.121", features = ["derive"] }
tokio = { version = "1.1.0", features = ["full"] }

View File

@ -2,7 +2,7 @@
[package]
name = "deno_runtime"
version = "0.7.0"
version = "0.7.1"
license = "MIT"
authors = ["the Deno authors"]
edition = "2018"
@ -18,22 +18,22 @@ name = "hello_runtime"
path = "examples/hello_runtime.rs"
[build-dependencies]
deno_core = { path = "../core", version = "0.77.0" }
deno_crypto = { path = "../op_crates/crypto", version = "0.11.0" }
deno_fetch = { path = "../op_crates/fetch", version = "0.20.0" }
deno_web = { path = "../op_crates/web", version = "0.28.0" }
deno_websocket = { path = "../op_crates/websocket", version = "0.3.0" }
deno_core = { path = "../core", version = "0.77.1" }
deno_crypto = { path = "../op_crates/crypto", version = "0.11.1" }
deno_fetch = { path = "../op_crates/fetch", version = "0.20.1" }
deno_web = { path = "../op_crates/web", version = "0.28.1" }
deno_websocket = { path = "../op_crates/websocket", version = "0.3.1" }
[target.'cfg(windows)'.build-dependencies]
winres = "0.1.11"
winapi = "0.3.9"
[dependencies]
deno_core = { path = "../core", version = "0.77.0" }
deno_crypto = { path = "../op_crates/crypto", version = "0.11.0" }
deno_fetch = { path = "../op_crates/fetch", version = "0.20.0" }
deno_web = { path = "../op_crates/web", version = "0.28.0" }
deno_websocket = { path = "../op_crates/websocket", version = "0.3.0" }
deno_core = { path = "../core", version = "0.77.1" }
deno_crypto = { path = "../op_crates/crypto", version = "0.11.1" }
deno_fetch = { path = "../op_crates/fetch", version = "0.20.1" }
deno_web = { path = "../op_crates/web", version = "0.28.1" }
deno_websocket = { path = "../op_crates/websocket", version = "0.3.1" }
atty = "0.2.14"
dlopen = "0.1.8"

View File

@ -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.84.0";
export const VERSION = "0.85.0";