Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: merge v1.16.3 into main #12892

Merged
merged 2 commits into from
Nov 24, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
v1.16.3
  • Loading branch information
piscisaureus committed Nov 24, 2021
commit 22eed75627c800782b15bf075058fb5562716180
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 20 additions & 0 deletions Releases.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,26 @@ https://github.com/denoland/deno/releases
We also have one-line install commands at:
https://github.com/denoland/deno_install

### 1.16.3 / 2021.11.24

- fix(cli): config file should resolve paths relative to the config file
(#12867)
- fix(cli): don't cache .tsbuildinfo unless emitting (#12830)
- fix(cli/compile): skip bundling for pre-bundled code (#12687)
- fix(core): don't panic when evaluating module after termination (#12833)
- fix(core): keep event loop alive if there are ticks scheduled (#12814)
- fix(ext/crypto): don't panic on decryption failure (#12840)
- fix(ext/fetch): HTTP/1.x header case got discarded on the wire (#12837)
- fix(fmt): markdown formatting was incorrectly removing some non-breaking space
html entities (#12818)
- fix(lsp): lsp should respect include/exclude files in format config (#12876)
- fix(lsp): normalize urls in did_change_watched_files (#12873)
- fix(lsp): tag deprecated diagnostics properly (#12801)
- fix(lsp): use lint exclude files list from the config file (#12825)
- fix(runtime): support "other" event type in FSWatcher (#12836)
- fix(runtime): support reading /proc using readFile (#12839)
- fix(test): do not throw on error.errors.map (#12810)

### 1.16.2 / 2021.11.17

- feat(unstable/test): include test step pass/fail/ignore counts in final report
Expand Down
2 changes: 1 addition & 1 deletion cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[package]
name = "deno"
version = "1.16.2"
version = "1.16.3"
authors = ["the Deno authors"]
default-run = "deno"
edition = "2021"
Expand Down
2 changes: 1 addition & 1 deletion cli/compat/esm_resolver.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1193,7 +1193,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.115.0/node/http.ts").unwrap();
Url::parse("https://deno.land/std@0.116.0/node/http.ts").unwrap();

let actual = node_resolve("http", main.as_str(), &cwd).unwrap();
println!("actual {}", actual);
Expand Down
2 changes: 1 addition & 1 deletion cli/compat/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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.115.0/";
static STD_URL_STR: &str = "https://deno.land/std@0.116.0/";

static SUPPORTED_MODULES: &[&str] = &[
"assert",
Expand Down
2 changes: 1 addition & 1 deletion cli/tests/testdata/compat/import_map.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"imports": {
"std/": "https://deno.land/std@0.115.0/"
"std/": "https://deno.land/std@0.116.0/"
}
}
2 changes: 1 addition & 1 deletion cli/tests/testdata/compat/import_map_https_imports.mjs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { sortBy } from "std/collections/sort_by.ts";
import { findSingle } from "https://deno.land/std@0.115.0/collections/find_single.ts";
import { findSingle } from "https://deno.land/std@0.116.0/collections/find_single.ts";
import os from "node:os";

console.log(sortBy([2, 3, 1], (it) => it));
Expand Down
2 changes: 1 addition & 1 deletion test_util/std
Submodule std updated from c03950 to e59b24