diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2021-01-29 09:53:03 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-29 09:53:03 -0500 |
commit | 11dd6f201378fe04cccadb46b7054cc2f791dda8 (patch) | |
tree | df0fb61808ac98624f3338370a27d145a115df21 | |
parent | 4b92eef25e8f8ca203c7f03a9c6e55802cd3e47f (diff) |
v1.7.1
-rw-r--r-- | Cargo.lock | 14 | ||||
-rw-r--r-- | Releases.md | 38 | ||||
-rw-r--r-- | cli/Cargo.toml | 14 | ||||
-rw-r--r-- | core/Cargo.toml | 2 | ||||
-rw-r--r-- | op_crates/crypto/Cargo.toml | 4 | ||||
-rw-r--r-- | op_crates/fetch/Cargo.toml | 4 | ||||
-rw-r--r-- | op_crates/web/Cargo.toml | 4 | ||||
-rw-r--r-- | op_crates/websocket/Cargo.toml | 4 | ||||
-rw-r--r-- | runtime/Cargo.toml | 22 | ||||
-rw-r--r-- | std/version.ts | 2 |
10 files changed, 73 insertions, 35 deletions
diff --git a/Cargo.lock b/Cargo.lock index 5137743c3..1f5183e06 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -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", diff --git a/Releases.md b/Releases.md index 35839290a..ab8470626 100644 --- a/Releases.md +++ b/Releases.md @@ -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) diff --git a/cli/Cargo.toml b/cli/Cargo.toml index bb4352967..2d20e2738 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -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" diff --git a/core/Cargo.toml b/core/Cargo.toml index d7ba17aef..8f559ba91 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -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"] diff --git a/op_crates/crypto/Cargo.toml b/op_crates/crypto/Cargo.toml index 5fe727845..892128290 100644 --- a/op_crates/crypto/Cargo.toml +++ b/op_crates/crypto/Cargo.toml @@ -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" diff --git a/op_crates/fetch/Cargo.toml b/op_crates/fetch/Cargo.toml index fa83ad439..049c5d990 100644 --- a/op_crates/fetch/Cargo.toml +++ b/op_crates/fetch/Cargo.toml @@ -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"] } diff --git a/op_crates/web/Cargo.toml b/op_crates/web/Cargo.toml index 92033c1c8..831b0e9d3 100644 --- a/op_crates/web/Cargo.toml +++ b/op_crates/web/Cargo.toml @@ -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"] } diff --git a/op_crates/websocket/Cargo.toml b/op_crates/websocket/Cargo.toml index e6755f6df..b991649c4 100644 --- a/op_crates/websocket/Cargo.toml +++ b/op_crates/websocket/Cargo.toml @@ -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"] } diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml index 5c0bb0898..27f5282d8 100644 --- a/runtime/Cargo.toml +++ b/runtime/Cargo.toml @@ -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" diff --git a/std/version.ts b/std/version.ts index 575fb7435..434eaf801 100644 --- a/std/version.ts +++ b/std/version.ts @@ -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"; |