mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 04:51:22 +00:00
v1.6.2
This commit is contained in:
parent
6ce310fa27
commit
d199e45ad5
2
Cargo.lock
generated
2
Cargo.lock
generated
@ -452,7 +452,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "deno"
|
name = "deno"
|
||||||
version = "1.6.1"
|
version = "1.6.2"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"atty",
|
"atty",
|
||||||
"base64 0.12.3",
|
"base64 0.12.3",
|
||||||
|
21
Releases.md
21
Releases.md
@ -6,6 +6,27 @@ https://github.com/denoland/deno/releases
|
|||||||
We also have one-line install commands at:
|
We also have one-line install commands at:
|
||||||
https://github.com/denoland/deno_install
|
https://github.com/denoland/deno_install
|
||||||
|
|
||||||
|
### 1.6.2 / 2020.12.22
|
||||||
|
|
||||||
|
- feat(lsp): support the unstable setting (#8851)
|
||||||
|
- feat(unstable): record raw coverage into a directory (#8642)
|
||||||
|
- feat(unstable): support in memory certificate data for Deno.createHttpClient
|
||||||
|
(#8739)
|
||||||
|
- fix: atomically write files to $DENO_DIR (#8822)
|
||||||
|
- fix: implement ReadableStream fetch body handling (#8855)
|
||||||
|
- fix: make DNS resolution async (#8743)
|
||||||
|
- fix: make dynamic import errors catchable (#8750)
|
||||||
|
- fix: respect enable flag for requests in lsp (#8850)
|
||||||
|
- refactor: rename runtime/rt to runtime/js (#8806)
|
||||||
|
- refactor: rewrite lsp to be async (#8727)
|
||||||
|
- refactor: rewrite ops to use ResourceTable2 (#8512)
|
||||||
|
- refactor: optimise static assets in lsp (#8771)
|
||||||
|
- upgrade TypeScript to 4.1.3 (#8785)
|
||||||
|
|
||||||
|
Changes in std version 0.82.0:
|
||||||
|
|
||||||
|
- feat(std/node): Added os.type (#8591)
|
||||||
|
|
||||||
### 1.6.1 / 2020.12.14
|
### 1.6.1 / 2020.12.14
|
||||||
|
|
||||||
- feat(lsp): support import maps (#8683)
|
- feat(lsp): support import maps (#8683)
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "deno"
|
name = "deno"
|
||||||
version = "1.6.1"
|
version = "1.6.2"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
authors = ["the Deno authors"]
|
authors = ["the Deno authors"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
@ -5,4 +5,4 @@
|
|||||||
* the cli's API is stable. In the future when std becomes stable, likely we
|
* the cli's API is stable. In the future when std becomes stable, likely we
|
||||||
* will match versions with cli as we have in the past.
|
* will match versions with cli as we have in the past.
|
||||||
*/
|
*/
|
||||||
export const VERSION = "0.81.0";
|
export const VERSION = "0.82.0";
|
||||||
|
Loading…
Reference in New Issue
Block a user