mirror of
https://github.com/denoland/deno.git
synced 2024-12-24 08:09:08 -05:00
v1.6.3
This commit is contained in:
parent
4997f426c3
commit
b07a0b640d
4 changed files with 21 additions and 3 deletions
2
Cargo.lock
generated
2
Cargo.lock
generated
|
@ -400,7 +400,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "deno"
|
name = "deno"
|
||||||
version = "1.6.2"
|
version = "1.6.3"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"atty",
|
"atty",
|
||||||
"base64 0.12.3",
|
"base64 0.12.3",
|
||||||
|
|
18
Releases.md
18
Releases.md
|
@ -6,6 +6,24 @@ 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.3 / 2020.12.30
|
||||||
|
|
||||||
|
- feat(lsp): Implement textDocument/rename (#8910)
|
||||||
|
- feat(lsp): Add cache command (#8911)
|
||||||
|
- feat(unstable): collect coverage from the run command (#8893)
|
||||||
|
- fix: fetch bad URL will not panic (#8884)
|
||||||
|
- fix: info does not panic on missing modules (#8924)
|
||||||
|
- fix(core): Fix incorrect index in Promise.all error reporting (#8913)
|
||||||
|
- fix(lsp): handle ts debug errors better (#8914)
|
||||||
|
- fix(lsp): provide diagnostics for unresolved modules (#8872)
|
||||||
|
- upgrade: dprint, swc_bundler, swc_common, swc_ecmascript (#8901)
|
||||||
|
- upgrade: rusty_v8 0.15.0, v8 8.8.294 (#8898)
|
||||||
|
|
||||||
|
Changes in std version 0.83.0:
|
||||||
|
|
||||||
|
- feat(std/node): adds fs.mkdtemp & fs.mkdtempSync (#8604)
|
||||||
|
- fix(std/http): Don't expose ServerRequest::done as Deferred (#8919)
|
||||||
|
|
||||||
### 1.6.2 / 2020.12.22
|
### 1.6.2 / 2020.12.22
|
||||||
|
|
||||||
- feat(lsp): support the unstable setting (#8851)
|
- feat(lsp): support the unstable setting (#8851)
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "deno"
|
name = "deno"
|
||||||
version = "1.6.2"
|
version = "1.6.3"
|
||||||
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.82.0";
|
export const VERSION = "0.83.0";
|
||||||
|
|
Loading…
Reference in a new issue