diff options
-rw-r--r-- | Cargo.lock | 10 | ||||
-rw-r--r-- | Releases.md | 22 | ||||
-rw-r--r-- | cli/Cargo.toml | 4 |
3 files changed, 29 insertions, 7 deletions
diff --git a/Cargo.lock b/Cargo.lock index 82cab6575..29c21073e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -396,7 +396,7 @@ checksum = "3ee2393c4a91429dffb4bedf19f4d6abf27d8a732c8ce4980305d782e5426d57" [[package]] name = "deno" -version = "1.7.2" +version = "1.7.3" dependencies = [ "atty", "base64 0.13.0", @@ -672,9 +672,9 @@ dependencies = [ [[package]] name = "dprint-plugin-typescript" -version = "0.40.0" +version = "0.40.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e50f6bfa546cac0c82ff808d532dcac33b9fb16dd931ddad3d96e3b736cc4dc9" +checksum = "22ab78a112d8e9f2debd76898da1705fe4dfd73a3b93381422578ad4bed13660" dependencies = [ "dprint-core", "dprint-swc-ecma-ast-view", @@ -686,9 +686,9 @@ dependencies = [ [[package]] name = "dprint-swc-ecma-ast-view" -version = "0.7.0" +version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e5715c419ccc89e7ae0e996191a0b3dd04730ab82526012672c564092bbe5252" +checksum = "1feab084d494806f38b1387614d4c32841b9b65f5b17b0689855ccd4ffa6b8ac" dependencies = [ "bumpalo", "fnv", diff --git a/Releases.md b/Releases.md index 27aa3efec..646f39f1c 100644 --- a/Releases.md +++ b/Releases.md @@ -6,6 +6,28 @@ https://github.com/denoland/deno/releases We also have one-line install commands at: 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 - feat(lsp, unstable): add references code lens (#9316) diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 9b4217788..b682b7c93 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno" -version = "1.7.2" +version = "1.7.3" license = "MIT" authors = ["the Deno authors"] edition = "2018" @@ -46,7 +46,7 @@ base64 = "0.13.0" byteorder = "1.4.2" clap = "2.33.3" dissimilar = "1.0.2" -dprint-plugin-typescript = "0.40.0" +dprint-plugin-typescript = "0.40.1" dprint-plugin-markdown = "0.5.1" encoding_rs = "0.8.28" env_logger = "0.8.2" |