From 975f413c4607ac9130aa31f6497a9820bab57bbd Mon Sep 17 00:00:00 2001 From: Satya Rohith Date: Thu, 3 Mar 2022 22:23:16 +0530 Subject: [PATCH] 1.19.2 (#13825) --- Cargo.lock | 2 +- Releases.md | 7 +++++++ cli/Cargo.toml | 2 +- cli/compat/esm_resolver.rs | 2 +- cli/compat/mod.rs | 2 +- 5 files changed, 11 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index a7be96cf0d..caca6cde0d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -728,7 +728,7 @@ dependencies = [ [[package]] name = "deno" -version = "1.19.1" +version = "1.19.2" dependencies = [ "atty", "base64 0.13.0", diff --git a/Releases.md b/Releases.md index f532d305aa..beed36da20 100644 --- a/Releases.md +++ b/Releases.md @@ -6,6 +6,13 @@ https://github.com/denoland/deno/releases We also have one-line install commands at: https://github.com/denoland/deno_install +### 1.19.2 / 2022.03.03 + +- fix(cli): disable config discovery for remote script (#13745) +- fix(repl): fix null eval result (#13804) +- fix(runtime): disable console color for non tty stdout (#13782) +- fix(test): use --no-prompt by default (#13777) + ### 1.19.1 / 2022.02.24 - feat(ext/ffi): Support read only global statics (#13662) diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 86c00a29d3..2cd4cc10c8 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno" -version = "1.19.1" +version = "1.19.2" authors = ["the Deno authors"] default-run = "deno" edition = "2021" diff --git a/cli/compat/esm_resolver.rs b/cli/compat/esm_resolver.rs index 1ac12ca148..8156aa3eef 100644 --- a/cli/compat/esm_resolver.rs +++ b/cli/compat/esm_resolver.rs @@ -1234,7 +1234,7 @@ mod tests { let cwd = testdir("basic"); let main = Url::from_file_path(cwd.join("main.js")).unwrap(); let expected = - Url::parse("https://deno.land/std@0.127.0/node/http.ts").unwrap(); + Url::parse("https://deno.land/std@0.128.0/node/http.ts").unwrap(); let actual = node_resolve("http", main.as_str(), &cwd).unwrap(); assert!(matches!(actual, ResolveResponse::Esm(_))); diff --git a/cli/compat/mod.rs b/cli/compat/mod.rs index 0f1c360840..1e380b7d8c 100644 --- a/cli/compat/mod.rs +++ b/cli/compat/mod.rs @@ -20,7 +20,7 @@ pub(crate) use esm_resolver::NodeEsmResolver; // each release, a better mechanism is preferable, but it's a quick and dirty // solution to avoid printing `X-Deno-Warning` headers when the compat layer is // downloaded -static STD_URL_STR: &str = "https://deno.land/std@0.127.0/"; +static STD_URL_STR: &str = "https://deno.land/std@0.128.0/"; static SUPPORTED_MODULES: &[&str] = &[ "assert",