diff options
author | Bert Belder <bertbelder@gmail.com> | 2020-09-18 20:39:58 +0200 |
---|---|---|
committer | Bert Belder <bertbelder@gmail.com> | 2020-09-18 21:28:11 +0200 |
commit | d6f3de6feb006bf6911b938bfa43a3655c962c50 (patch) | |
tree | bb8bbd32e7c6f090003ac0b69f18f60f7663bf13 | |
parent | f44522eac9c9f13835d4df62135bb5728a000239 (diff) |
v1.4.1
-rw-r--r-- | Cargo.lock | 6 | ||||
-rw-r--r-- | Releases.md | 29 | ||||
-rw-r--r-- | cli/Cargo.toml | 12 | ||||
-rw-r--r-- | core/Cargo.toml | 2 | ||||
-rw-r--r-- | op_crates/fetch/Cargo.toml | 4 | ||||
-rw-r--r-- | op_crates/web/Cargo.toml | 4 | ||||
-rw-r--r-- | std/version.ts | 2 |
7 files changed, 44 insertions, 15 deletions
diff --git a/Cargo.lock b/Cargo.lock index 174973817..9bd3daf04 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -393,7 +393,7 @@ dependencies = [ [[package]] name = "deno" -version = "1.4.0" +version = "1.4.1" dependencies = [ "atty", "base64 0.12.3", @@ -451,7 +451,7 @@ dependencies = [ [[package]] name = "deno_core" -version = "0.57.0" +version = "0.58.0" dependencies = [ "anyhow", "futures", @@ -510,7 +510,7 @@ dependencies = [ [[package]] name = "deno_web" -version = "0.8.0" +version = "0.9.0" dependencies = [ "deno_core", "futures", diff --git a/Releases.md b/Releases.md index 60ad4f85a..90987cb90 100644 --- a/Releases.md +++ b/Releases.md @@ -6,6 +6,35 @@ https://github.com/denoland/deno/releases We also have one-line install commands at https://github.com/denoland/deno_install +### 1.4.1 / 2020.09.18 + +- fix(cli/console): escape special characters in strings and property names + (#7546, #7533, #7550) +- fix(cli/fmt): canonicalize files in current dir (#7508) +- fix(cli/fmt): make fmt output more readable (#7534) +- fix(cli/install): revert "bundle before installation" (#7522) +- fix(cli/js): disable URL.createObjectUrl (#7543) +- fix(cli/js): use Buffer.writeSync in MultipartBuilder (#7542) +- fix(cli/repl): disable rustyline logs (#7535) +- fix(cli/repl): format evaluation results with the object specifier (#7561) +- fix(cli/bundle,eval,repl): add missing flags (#7414) +- refactor(cli): move fetch() implementation to op_crates/fetch (#7524, #7529) +- refactor(cli): move FileReader and URL to op_crates/web (#7554, #7544) +- refactor(cli): move op_resources and op_close to deno_core (#7539) +- refactor(cli/info,unstable): deno info --json output (#7417) +- refactor(cli/js): simplify global properties (#7502) +- refactor(cli/js): use Symbol.for instead of Symbol (#7537) +- refactor(core): remove JsRuntime::set_js_error_create_fn (#7478) +- refactor(core): use the 'anyhow' crate instead of ErrBox (#7476) +- upgrade: rust crates (#7454) +- benchmark: add no_check_hello benchmark (#7458) + +Changes in std version 0.70.0: + +- feat(std/node): add AssertionError class (#7210) +- fix(std/datetime): timezone bug (#7466) +- fix(std/testing): assertion diff color (#7499) + ### 1.4.0 / 2020.09.13 - feat: Implement WebSocket API (#7051, #7437) diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 68ea4c4cc..a1b5b3f6b 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno" -version = "1.4.0" +version = "1.4.1" license = "MIT" authors = ["the Deno authors"] edition = "2018" @@ -20,8 +20,8 @@ harness = false path = "./bench/main.rs" [build-dependencies] -deno_core = { path = "../core", version = "0.57.0" } -deno_web = { path = "../op_crates/web", version = "0.8.0" } +deno_core = { path = "../core", version = "0.58.0" } +deno_web = { path = "../op_crates/web", version = "0.9.0" } deno_fetch = { path = "../op_crates/fetch", version = "0.1.0" } [target.'cfg(windows)'.build-dependencies] @@ -29,10 +29,10 @@ winres = "0.1.11" winapi = "0.3.9" [dependencies] -deno_core = { path = "../core", version = "0.57.0" } +deno_core = { path = "../core", version = "0.58.0" } deno_doc = "0.1.9" deno_lint = { version = "0.2.0", features = ["json"] } -deno_web = { path = "../op_crates/web", version = "0.8.0" } +deno_web = { path = "../op_crates/web", version = "0.9.0" } deno_fetch = { path = "../op_crates/fetch", version = "0.1.0" } atty = "0.2.14" @@ -71,7 +71,7 @@ tokio-rustls = "0.14.1" # Keep in-sync with warp. tokio-tungstenite = "0.11.0" webpki = "0.21.3" -webpki-roots = "=0.19.0" # Pinned to v0.19.0 to match 'reqwest'. +webpki-roots = "=0.19.0" # Pinned to v0.19.0 to match 'reqwest'. walkdir = "2.3.1" warp = { version = "0.2.5", features = ["tls"] } semver-parser = "0.9.0" diff --git a/core/Cargo.toml b/core/Cargo.toml index f279accef..b17ac88cb 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.57.0" +version = "0.58.0" edition = "2018" description = "A secure JavaScript/TypeScript runtime built with V8, Rust, and Tokio" authors = ["the Deno authors"] diff --git a/op_crates/fetch/Cargo.toml b/op_crates/fetch/Cargo.toml index 2c1130bff..33ffc513c 100644 --- a/op_crates/fetch/Cargo.toml +++ b/op_crates/fetch/Cargo.toml @@ -14,6 +14,6 @@ repository = "https://github.com/denoland/deno" path = "lib.rs" [dependencies] -deno_core = { version = "0.57.0", path = "../../core" } +deno_core = { version = "0.58.0", path = "../../core" } reqwest = { version = "0.10.8", default-features = false, features = ["rustls-tls", "stream", "gzip", "brotli"] } -serde = { version = "1.0.116", features = ["derive"] }
\ No newline at end of file +serde = { version = "1.0.116", features = ["derive"] } diff --git a/op_crates/web/Cargo.toml b/op_crates/web/Cargo.toml index b5db36db1..df8e3786d 100644 --- a/op_crates/web/Cargo.toml +++ b/op_crates/web/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_web" -version = "0.8.0" +version = "0.9.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.57.0", path = "../../core" } +deno_core = { version = "0.58.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 65c9f7011..5908e116a 100644 --- a/std/version.ts +++ b/std/version.ts @@ -4,4 +4,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.69.0"; +export const VERSION = "0.70.0"; |