Skip to content

Commit

Permalink
3.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kitsonk committed Aug 10, 2021
1 parent 164b812 commit edb1e12
Show file tree
Hide file tree
Showing 7 changed files with 35 additions and 10 deletions.
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,31 @@
Releases of the extension can be downloaded from
[Visual Studio Marketplace](https://marketplace.visualstudio.com/items?itemName=denoland.vscode-deno).

### [3.8.0](https://github.com/denoland/vscode_deno/compare/3.7.0...3.8.0) / 2021.08.10

- feat: add ability to set cache directory in settings (#477)

The plugin supports setting the `deno.cache` option, which allows setting a
specific cache directory for the Deno language server to use. This is similar
to the `DENO_DIR` environment variable that can be set when invoking Deno on
the command line.

- feat: hide the status bar unless `deno.enable` is true (#485)

The Deno language server runs in a workspace even when the project isn't
enabled for Deno, as the formatting services are still available and the
language server needs to keep track of the state of documents in case the
workspace does become enabled. It is confusing to see the version of Deno in
the status bar. The extension now will not display this information unless the
workspace is enabled for Deno.

- fix: properly handle plugin configuration at startup (#474)

This led to an issue where if Deno started before the built in TypeScript
language service in a Deno enabled project, the TypeScript language service
diagnostics were not _muted_ and incorrect or duplicate diagnostics were being
displayed.

### [3.7.0](https://github.com/denoland/vscode_deno/compare/3.6.1...3.7.0) / 2021.07.02

- feat: add support for import map in test code lens (#446)
Expand Down
4 changes: 2 additions & 2 deletions client/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"author": "Deno Land Inc.",
"license": "MIT",
"private": true,
"version": "3.7.0",
"version": "3.8.0",
"publisher": "deno-land",
"repository": {
"type": "git",
Expand Down
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "A language server client for Deno.",
"author": "Deno Land Inc.",
"license": "MIT",
"version": "3.7.0",
"version": "3.8.0",
"icon": "deno.png",
"galleryBanner": {
"color": "#3B3738",
Expand Down
4 changes: 2 additions & 2 deletions typescript-deno-plugin/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion typescript-deno-plugin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"author": "Deno Land Inc.",
"license": "MIT",
"private": true,
"version": "3.7.0",
"version": "3.8.0",
"publisher": "deno-land",
"main": "./out/index",
"repository": {
Expand Down

0 comments on commit edb1e12

Please sign in to comment.