diff --git a/Cargo.lock b/Cargo.lock index ccae762f82..0768d574f4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -408,7 +408,7 @@ dependencies = [ [[package]] name = "deno" -version = "1.5.2" +version = "1.5.3" dependencies = [ "atty", "base64 0.12.3", @@ -467,7 +467,7 @@ dependencies = [ [[package]] name = "deno_core" -version = "0.67.0" +version = "0.68.0" dependencies = [ "anyhow", "futures", @@ -485,7 +485,7 @@ dependencies = [ [[package]] name = "deno_crypto" -version = "0.1.1" +version = "0.2.0" dependencies = [ "deno_core", "rand 0.7.3", @@ -510,7 +510,7 @@ dependencies = [ [[package]] name = "deno_fetch" -version = "0.10.0" +version = "0.11.0" dependencies = [ "deno_core", "reqwest", @@ -536,7 +536,7 @@ dependencies = [ [[package]] name = "deno_web" -version = "0.18.0" +version = "0.19.0" dependencies = [ "deno_core", "futures", diff --git a/Releases.md b/Releases.md index 5d73771840..11c713ec45 100644 --- a/Releases.md +++ b/Releases.md @@ -6,6 +6,30 @@ https://github.com/denoland/deno/releases We also have one-line install commands at: https://github.com/denoland/deno_install +### 1.5.3 / 2020.11.16 + +- feat(unstable): support deno lint --rules --json (#8384) +- fix: fix various global objects constructor length (#8373) +- fix: allow declaration emits for Deno.compile() (#8303) +- fix: allow root modules be .mjs/.cjs (#8310) +- fix: allow setting of importsNotUsedAsValues in Deno.compile() (#8306) +- fix: do not write tsbuildinfo when diagnostics are emitted (#8311) +- fix: don't walk the subdirectory twice when using the `--ignore` flag (#8040, + #8375) +- fix: local sources are not cached in memory (#8328) +- fix: Use safe shell escaping in `deno install` (#7613) +- fix: DOM handler order in Websocket and Worker (#8320, #8334) +- fix(op_crates/web) make isTrusted not constructable (#8337) +- fix(op_crates/web): FileReader event handler order (#8348) +- fix(op_crates/web): handler order when reassign (#8264) +- refactor: deno_crypto op crate (#7956) + +Changes in std version 0.78.0: + +- feat(std/node): consistent Node.js builtin shapes (#8274) +- fix(std/http): flush body chunks for HTTP chunked encoding (#8349) +- refactor(std/fs): moved isCopyFolder to options (#8319) + ### 1.5.2 / 2020.11.09 - fix(core/error): Remove extra newline from JsError::fmt() (#8145) diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 8e389c23ad..482c6f364a 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno" -version = "1.5.2" +version = "1.5.3" 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.1.1" } -deno_core = { path = "../core", version = "0.67.0" } -deno_web = { path = "../op_crates/web", version = "0.18.0" } -deno_fetch = { path = "../op_crates/fetch", version = "0.10.0" } +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" } 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.1.1" } -deno_core = { path = "../core", version = "0.67.0" } +deno_crypto = { path = "../op_crates/crypto", version = "0.2.0" } +deno_core = { path = "../core", version = "0.68.0" } deno_doc = "0.1.15" deno_lint = "0.2.9" -deno_web = { path = "../op_crates/web", version = "0.18.0" } -deno_fetch = { path = "../op_crates/fetch", version = "0.10.0" } +deno_web = { path = "../op_crates/web", version = "0.19.0" } +deno_fetch = { path = "../op_crates/fetch", version = "0.11.0" } atty = "0.2.14" base64 = "0.12.3" diff --git a/core/Cargo.toml b/core/Cargo.toml index 512c1f8f6f..768bfc1229 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,7 +1,7 @@ # Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. [package] name = "deno_core" -version = "0.67.0" +version = "0.68.0" 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 3bcaf74904..80cf9ae34f 100644 --- a/op_crates/crypto/Cargo.toml +++ b/op_crates/crypto/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_crypto" -version = "0.1.1" +version = "0.2.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.67.0", path = "../../core" } +deno_core = { version = "0.68.0", path = "../../core" } rand = "0.7.3" diff --git a/op_crates/fetch/Cargo.toml b/op_crates/fetch/Cargo.toml index 515d51fff2..1347c38425 100644 --- a/op_crates/fetch/Cargo.toml +++ b/op_crates/fetch/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_fetch" -version = "0.10.0" +version = "0.11.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.67.0", path = "../../core" } +deno_core = { version = "0.68.0", path = "../../core" } reqwest = { version = "0.10.8", default-features = false, features = ["rustls-tls", "stream", "gzip", "brotli"] } serde = { version = "1.0.116", features = ["derive"] } diff --git a/op_crates/web/Cargo.toml b/op_crates/web/Cargo.toml index a3a98afc52..b3f8364c9a 100644 --- a/op_crates/web/Cargo.toml +++ b/op_crates/web/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_web" -version = "0.18.0" +version = "0.19.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.67.0", path = "../../core" } +deno_core = { version = "0.68.0", path = "../../core" } idna = "0.2.0" serde = { version = "1.0.116", features = ["derive"] } diff --git a/std/version.ts b/std/version.ts index cbf72ae3e7..cb99c7a929 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.77.0"; +export const VERSION = "0.78.0";