From 71d7482577ee187187051ac8d9976a5387c038db Mon Sep 17 00:00:00 2001 From: Kitson Kelly Date: Mon, 9 Nov 2020 10:58:21 +1100 Subject: [PATCH] v1.5.2 (#8301) --- Cargo.lock | 8 ++++---- Releases.md | 37 +++++++++++++++++++++++++++++++++++++ cli/Cargo.toml | 14 +++++++------- core/Cargo.toml | 2 +- op_crates/fetch/Cargo.toml | 4 ++-- op_crates/web/Cargo.toml | 4 ++-- std/version.ts | 2 +- 7 files changed, 54 insertions(+), 17 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 6112afc093..62ace88e28 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -408,7 +408,7 @@ dependencies = [ [[package]] name = "deno" -version = "1.5.1" +version = "1.5.2" dependencies = [ "atty", "base64 0.12.3", @@ -466,7 +466,7 @@ dependencies = [ [[package]] name = "deno_core" -version = "0.66.0" +version = "0.67.0" dependencies = [ "anyhow", "futures", @@ -501,7 +501,7 @@ dependencies = [ [[package]] name = "deno_fetch" -version = "0.9.0" +version = "0.10.0" dependencies = [ "deno_core", "reqwest", @@ -527,7 +527,7 @@ dependencies = [ [[package]] name = "deno_web" -version = "0.17.0" +version = "0.18.0" dependencies = [ "deno_core", "futures", diff --git a/Releases.md b/Releases.md index f31461e4dc..5d73771840 100644 --- a/Releases.md +++ b/Releases.md @@ -6,6 +6,43 @@ https://github.com/denoland/deno/releases We also have one-line install commands at: https://github.com/denoland/deno_install +### 1.5.2 / 2020.11.09 + +- fix(core/error): Remove extra newline from JsError::fmt() (#8145) +- fix(op_crates/web): make TextEncoder work with forced non-strings (#8206) +- fix(op_crates/web): fix URLSearchParams, malformed url handling (#8092) +- fix(op_crates/web): define abort event handler on prototype (#8230) +- fix(cli/repl): Fixing syntax highlighting (#8202) +- fix: inject helpers when transpiling via swc (#8221) +- fix: add commit hash and target to long_version output (#8133) +- fix: correct libs sent to tsc for unstable worker (#8260) +- fix: properly handle type checking root modules with type definitions (#8263) +- fix: allow remapping to locals for import map (#8262) +- fix: ensure that transitory dependencies are emitted (#8275) +- fix: make onabort event handler web compatible (#8225) +- fix: display of non-ASCII characters on Windows (#8199) +- refactor: Cleanup Flags to Permissions conversion (#8213) +- refactor: migrate runtime compile/bundle to new infrastructure (#8192) +- refactor: cleanup compiler snapshot and tsc/module_graph (#8220) +- refactor: remove ProgramState::permissions (#8228) +- refactor: refactor file_fetcher (#8245) +- refactor: rewrite permission_test to not depend on Python (#8291) +- refactor: auto detect target triples for upgrade (#8286) +- build: migrate to dlint (#8176) +- build: remove eslint (#8232) +- build: rewrite tools/ scripts to deno (#8247) +- build: full color ci logs (#8280) +- upgrade: TypeScript to 4.0.5 (#8138) +- upgrade: deno_doc, deno_lint, dprint, swc (#8292) + +Changes in std version 0.77.0: + +- feat(std/node/fs): add realpath and realpathSync (#8169) +- feat(std/wasi): add start method to Context (#8141) +- fix(std/flags): Fix parse incorrectly parsing alias flags with equals (#8216) +- fix(std/node): only define Node.js globals when loading std/node/global + (#8281) + ### 1.5.1 / 2020.10.31 - fix: Accept Windows line breaks in prompt/confirm/alert (#8149) diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 52b6edeb05..6e02e7d9d2 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno" -version = "1.5.1" +version = "1.5.2" license = "MIT" authors = ["the Deno authors"] edition = "2018" @@ -20,9 +20,9 @@ harness = false path = "./bench/main.rs" [build-dependencies] -deno_core = { path = "../core", version = "0.66.0" } -deno_web = { path = "../op_crates/web", version = "0.17.0" } -deno_fetch = { path = "../op_crates/fetch", version = "0.9.0" } +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" } regex = "1.3.9" serde = { version = "1.0.116", features = ["derive"] } @@ -31,11 +31,11 @@ winres = "0.1.11" winapi = "0.3.9" [dependencies] -deno_core = { path = "../core", version = "0.66.0" } +deno_core = { path = "../core", version = "0.67.0" } deno_doc = "0.1.15" deno_lint = "0.2.9" -deno_web = { path = "../op_crates/web", version = "0.17.0" } -deno_fetch = { path = "../op_crates/fetch", version = "0.9.0" } +deno_web = { path = "../op_crates/web", version = "0.18.0" } +deno_fetch = { path = "../op_crates/fetch", version = "0.10.0" } atty = "0.2.14" base64 = "0.12.3" diff --git a/core/Cargo.toml b/core/Cargo.toml index cea33c148c..512c1f8f6f 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.66.0" +version = "0.67.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 b3387d5950..515d51fff2 100644 --- a/op_crates/fetch/Cargo.toml +++ b/op_crates/fetch/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_fetch" -version = "0.9.0" +version = "0.10.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.66.0", path = "../../core" } +deno_core = { version = "0.67.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 cb52420e4d..a3a98afc52 100644 --- a/op_crates/web/Cargo.toml +++ b/op_crates/web/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_web" -version = "0.17.0" +version = "0.18.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.66.0", path = "../../core" } +deno_core = { version = "0.67.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 fdb553360f..cbf72ae3e7 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.76.0"; +export const VERSION = "0.77.0";