1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-24 15:19:26 -05:00
This commit is contained in:
Bert Belder 2021-11-24 14:01:54 -08:00
parent 88847d6c9b
commit bfa2f30529
No known key found for this signature in database
GPG key ID: 7A77887B2E2ED461
8 changed files with 27 additions and 7 deletions

2
Cargo.lock generated
View file

@ -624,7 +624,7 @@ dependencies = [
[[package]]
name = "deno"
version = "1.16.2"
version = "1.16.3"
dependencies = [
"atty",
"base64 0.13.0",

View file

@ -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

View file

@ -2,7 +2,7 @@
[package]
name = "deno"
version = "1.16.2"
version = "1.16.3"
authors = ["the Deno authors"]
default-run = "deno"
edition = "2021"

View file

@ -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.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);

View file

@ -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",

View file

@ -1,5 +1,5 @@
{
"imports": {
"std/": "https://deno.land/std@0.115.0/"
"std/": "https://deno.land/std@0.116.0/"
}
}

View file

@ -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));

@ -1 +1 @@
Subproject commit c0395032bbff5fad88c664dd9255d82012051c53
Subproject commit e59b24543e670752701cd6b7d35ebb857d100210