diff --git a/Cargo.lock b/Cargo.lock index 9c520424e0..f441300a17 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -624,7 +624,7 @@ dependencies = [ [[package]] name = "deno" -version = "1.16.3" +version = "1.16.4" dependencies = [ "atty", "base64 0.13.0", diff --git a/Releases.md b/Releases.md index 65390fbc1a..c83bb1dab8 100644 --- a/Releases.md +++ b/Releases.md @@ -6,6 +6,17 @@ https://github.com/denoland/deno/releases We also have one-line install commands at: https://github.com/denoland/deno_install +### 1.16.4 / 2021.12.03 + +- fix(core): Wake up the runtime if there are ticks scheduled (#12933) +- fix(core): throw on invalid callConsole args (#12973) (#12974) +- fix(ext/crypto): throw on key & op algo mismatch (#12838) +- fix(test): Improve reliability of `deno test`'s op sanitizer with timers + (#12934) +- fix(websocket): bad rid on WebSocketStream abort (#12913) +- fix(workers): Make `worker.terminate()` not immediately kill the isolate + (#12831) + ### 1.16.3 / 2021.11.24 - fix(cli): config file should resolve paths relative to the config file diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 3bee0d3a1a..e898ff527a 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno" -version = "1.16.3" +version = "1.16.4" authors = ["the Deno authors"] default-run = "deno" edition = "2021" diff --git a/cli/compat/esm_resolver.rs b/cli/compat/esm_resolver.rs index 4da1229800..24a3ac2370 100644 --- a/cli/compat/esm_resolver.rs +++ b/cli/compat/esm_resolver.rs @@ -1197,7 +1197,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.116.0/node/http.ts").unwrap(); + Url::parse("https://deno.land/std@0.117.0/node/http.ts").unwrap(); let actual = node_resolve("http", main.as_str(), &cwd).unwrap(); println!("actual {}", actual); diff --git a/cli/compat/mod.rs b/cli/compat/mod.rs index b43abe4e26..d7bdf866df 100644 --- a/cli/compat/mod.rs +++ b/cli/compat/mod.rs @@ -15,7 +15,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.116.0/"; +static STD_URL_STR: &str = "https://deno.land/std@0.117.0/"; static SUPPORTED_MODULES: &[&str] = &[ "assert", diff --git a/cli/tests/testdata/compat/import_map.json b/cli/tests/testdata/compat/import_map.json index 20a4101ffd..22ee3b0daa 100644 --- a/cli/tests/testdata/compat/import_map.json +++ b/cli/tests/testdata/compat/import_map.json @@ -1,5 +1,5 @@ { "imports": { - "std/": "https://deno.land/std@0.116.0/" + "std/": "https://deno.land/std@0.117.0/" } } diff --git a/cli/tests/testdata/compat/import_map_https_imports.mjs b/cli/tests/testdata/compat/import_map_https_imports.mjs index 7847bafd95..e64030da0f 100644 --- a/cli/tests/testdata/compat/import_map_https_imports.mjs +++ b/cli/tests/testdata/compat/import_map_https_imports.mjs @@ -1,5 +1,5 @@ import { sortBy } from "std/collections/sort_by.ts"; -import { findSingle } from "https://deno.land/std@0.116.0/collections/find_single.ts"; +import { findSingle } from "https://deno.land/std@0.117.0/collections/find_single.ts"; import os from "node:os"; console.log(sortBy([2, 3, 1], (it) => it));