mirror of
https://github.com/denoland/deno.git
synced 2025-03-03 17:34:47 -05:00
v1.7.3
This commit is contained in:
parent
39f3aaaa72
commit
f67b06939b
3 changed files with 29 additions and 7 deletions
10
Cargo.lock
generated
10
Cargo.lock
generated
|
@ -396,7 +396,7 @@ checksum = "3ee2393c4a91429dffb4bedf19f4d6abf27d8a732c8ce4980305d782e5426d57"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "deno"
|
name = "deno"
|
||||||
version = "1.7.2"
|
version = "1.7.3"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"atty",
|
"atty",
|
||||||
"base64 0.13.0",
|
"base64 0.13.0",
|
||||||
|
@ -672,9 +672,9 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "dprint-plugin-typescript"
|
name = "dprint-plugin-typescript"
|
||||||
version = "0.40.0"
|
version = "0.40.1"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "e50f6bfa546cac0c82ff808d532dcac33b9fb16dd931ddad3d96e3b736cc4dc9"
|
checksum = "22ab78a112d8e9f2debd76898da1705fe4dfd73a3b93381422578ad4bed13660"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"dprint-core",
|
"dprint-core",
|
||||||
"dprint-swc-ecma-ast-view",
|
"dprint-swc-ecma-ast-view",
|
||||||
|
@ -686,9 +686,9 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "dprint-swc-ecma-ast-view"
|
name = "dprint-swc-ecma-ast-view"
|
||||||
version = "0.7.0"
|
version = "0.8.0"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "e5715c419ccc89e7ae0e996191a0b3dd04730ab82526012672c564092bbe5252"
|
checksum = "1feab084d494806f38b1387614d4c32841b9b65f5b17b0689855ccd4ffa6b8ac"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"bumpalo",
|
"bumpalo",
|
||||||
"fnv",
|
"fnv",
|
||||||
|
|
22
Releases.md
22
Releases.md
|
@ -6,6 +6,28 @@ 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.7.3 / 2021.02.12
|
||||||
|
|
||||||
|
- feat(unstable, lsp): add deno cache code actions (#9471)
|
||||||
|
- feat(unstable, lsp): add implementations code lens (#9441)
|
||||||
|
- fix(cli): check for inline source maps before external ones (#9394)
|
||||||
|
- fix(cli): fix WebSocket close (#8776)
|
||||||
|
- fix(cli): import maps handles data URLs (#9437)
|
||||||
|
- fix(console): log function object properties / do not log non-enumerable props
|
||||||
|
by default (#9363)
|
||||||
|
- fix(lsp): handle code lenses for non-documents (#9454)
|
||||||
|
- fix(lsp): handle type deps properly (#9436)
|
||||||
|
- fix(lsp): prepare diagnostics when the config changes (#9438)
|
||||||
|
- fix(lsp): properly handle static assets (#9476)
|
||||||
|
- fix(lsp): support codeAction/resolve (#9405)
|
||||||
|
- fix(op_crates): Don't use `Deno.inspect` in op crates (#9332)
|
||||||
|
- fix(runtime/tls): handle invalid host for connectTls/startTls (#9453)
|
||||||
|
- upgrade: rusty_v8 0.17.0, v8 9.0.123 (#9413)
|
||||||
|
- upgrade: deno_doc, deno_lint, dprint, swc_ecmascript, swc_bundler (#9474)
|
||||||
|
|
||||||
|
Release notes for std version 0.87.0:
|
||||||
|
https://github.com/denoland/deno_std/releases/tag/0.87.0
|
||||||
|
|
||||||
### 1.7.2 / 2021.02.05
|
### 1.7.2 / 2021.02.05
|
||||||
|
|
||||||
- feat(lsp, unstable): add references code lens (#9316)
|
- feat(lsp, unstable): add references code lens (#9316)
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "deno"
|
name = "deno"
|
||||||
version = "1.7.2"
|
version = "1.7.3"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
authors = ["the Deno authors"]
|
authors = ["the Deno authors"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
@ -46,7 +46,7 @@ base64 = "0.13.0"
|
||||||
byteorder = "1.4.2"
|
byteorder = "1.4.2"
|
||||||
clap = "2.33.3"
|
clap = "2.33.3"
|
||||||
dissimilar = "1.0.2"
|
dissimilar = "1.0.2"
|
||||||
dprint-plugin-typescript = "0.40.0"
|
dprint-plugin-typescript = "0.40.1"
|
||||||
dprint-plugin-markdown = "0.5.1"
|
dprint-plugin-markdown = "0.5.1"
|
||||||
encoding_rs = "0.8.28"
|
encoding_rs = "0.8.28"
|
||||||
env_logger = "0.8.2"
|
env_logger = "0.8.2"
|
||||||
|
|
Loading…
Add table
Reference in a new issue