Skip to content

Commit ded7791

Browse files
authored
v1.17.1
1 parent 615717b commit ded7791

File tree

7 files changed

+18
-6
lines changed

7 files changed

+18
-6
lines changed

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Releases.md

+12
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,18 @@ https://github.com/denoland/deno/releases
66
We also have one-line install commands at:
77
https://github.com/denoland/deno_install
88

9+
### 1.17.1 / 2021.12.22
10+
11+
- feat(lsp, unstable): add code lens for debugging tests (#13138)
12+
- feat(lsp, unstable): supply accept header when fetching registry config
13+
(#13159)
14+
- fix: inspector prompts (#13123)
15+
- fix(coverage): Split sources by char index (#13114)
16+
- fix(ext/ffi): use `c_char` instead of `i8` for reading strings (#13118)
17+
- fix(ext/websocket): WebSocketStream don't error with "sending after closing"
18+
when closing (#13134)
19+
- fix(repl): support assertions on import & export declarations (#13121)
20+
921
### 1.17.0 / 2021.12.16
1022

1123
- feat: add `--no-check=remote` flag (#12766)

cli/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[package]
44
name = "deno"
5-
version = "1.17.0"
5+
version = "1.17.1"
66
authors = ["the Deno authors"]
77
default-run = "deno"
88
edition = "2021"

cli/compat/esm_resolver.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1193,7 +1193,7 @@ mod tests {
11931193
let cwd = testdir("basic");
11941194
let main = Url::from_file_path(cwd.join("main.js")).unwrap();
11951195
let expected =
1196-
Url::parse("https://deno.land/std@0.118.0/node/http.ts").unwrap();
1196+
Url::parse("https://deno.land/std@0.119.0/node/http.ts").unwrap();
11971197

11981198
let actual = node_resolve("http", main.as_str(), &cwd).unwrap();
11991199
println!("actual {}", actual);

cli/compat/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ pub(crate) use esm_resolver::NodeEsmResolver;
1616
// each release, a better mechanism is preferable, but it's a quick and dirty
1717
// solution to avoid printing `X-Deno-Warning` headers when the compat layer is
1818
// downloaded
19-
static STD_URL_STR: &str = "https://deno.land/std@0.118.0/";
19+
static STD_URL_STR: &str = "https://deno.land/std@0.119.0/";
2020

2121
static SUPPORTED_MODULES: &[&str] = &[
2222
"assert",
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"imports": {
3-
"std/": "https://deno.land/std@0.118.0/"
3+
"std/": "https://deno.land/std@0.119.0/"
44
}
55
}

cli/tests/testdata/compat/import_map_https_imports.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { sortBy } from "std/collections/sort_by.ts";
2-
import { findSingle } from "https://deno.land/std@0.118.0/collections/find_single.ts";
2+
import { findSingle } from "https://deno.land/std@0.119.0/collections/find_single.ts";
33
import os from "node:os";
44

55
console.log(sortBy([2, 3, 1], (it) => it));

0 commit comments

Comments
 (0)