diff --git a/Cargo.lock b/Cargo.lock index cd278d2a89..bb00ae39f6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -524,7 +524,7 @@ dependencies = [ [[package]] name = "deno" -version = "1.9.2" +version = "1.10.0" dependencies = [ "atty", "base64 0.13.0", diff --git a/Releases.md b/Releases.md index 7e872e4205..cdb7fbed76 100644 --- a/Releases.md +++ b/Releases.md @@ -6,6 +6,37 @@ https://github.com/denoland/deno/releases We also have one-line install commands at: https://github.com/denoland/deno_install +### 1.10.0 / 2021.05.11 + +- feat: "deno test" prompts number of tests and origin (#10428) +- feat: "Worker.postMessage()" uses structured clone algorithm (#9323) +- feat: add "deno test --doc" (#10521) +- feat: add "deno test --jobs" (#9815) +- feat: add "deno test --watch" (#9160) +- feat: add test permissions to Deno.test (#10188) +- feat: add WebStorage API (#7819) +- feat: align plugin api with "deno_core::Extension" (#10427) +- feat: support deno-fmt-ignore-file for markdown formatting (#10191) +- feat(core): enable WASM shared memory (#10116) +- feat(core): introduce Extension (#9800) +- feat(lsp): add internal debugging logging (#10438) +- feat(lsp): support workspace folders configuration (#10488) +- fix: invalid types for asynchronous and synchronous `File#truncate` (#10353) +- fix: rename Deno.emit() bundle options to "module" and "classic" (#10332) +- fix: sleepSync doesn't return a Promise (#10358) +- fix: TextEncoder#encodeInto spec compliance (#10129) +- fix: typings for `Deno.os.arch` (#10541) +- fix(extensions/fetch): infinite loop on fill headers (#10406) +- fix(extensions/fetch): Prevent throwing when inspecting a request (#10335) +- fix(installer): allow remote import maps (#10499) +- fix(lsp): remove code_action/diagnostics deadlock (#10555) +- fix(tls): flush send buffer in the background after closing TLS stream + (#10146) +- fix(tls): throw meaningful error when hostname is invalid (#10387) + +Release notes for std version 0.96.0: +https://github.com/denoland/deno_std/releases/tag/0.96.0 + ### 1.9.2 / 2021.04.23 - fix: parse websocket messages correctly (#10318) diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 1d6c9fc56c..38a84d8c5b 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno" -version = "1.9.2" +version = "1.10.0" license = "MIT" authors = ["the Deno authors"] edition = "2018" diff --git a/cli/tests/integration_tests.rs b/cli/tests/integration_tests.rs index 2ead500b6d..fe40e243b6 100644 --- a/cli/tests/integration_tests.rs +++ b/cli/tests/integration_tests.rs @@ -5583,6 +5583,7 @@ console.log("finish"); assert_eq!(output.stdout, "Welcome to Deno!\n".as_bytes()); } + #[ignore] #[test] #[cfg(windows)] // https://github.com/denoland/deno/issues/9667