Skip to content

Commit

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

### [3.11.0](https://github.com/denoland/vscode_deno/compare/3.10.1...3.11.0) / 20212.03.21

- feat: support certificate related options (#612)

Options are now supported to provide the Deno language server with custom TLS
certificate information as well as unsafely ignore invalid TLS certificates,
which are currently supported on the command line. This allows the extension
to cache modules in custom certificate TLS environments from the editor.

- feat: support Deno enabling specified workspace paths (#635)

When used with a version of the Deno language server that supports the same
feature, specified folders (and their sub folders) can be _Deno enabled_
leaving the remaining folders in the workspace using the built-in
JavaScript/TypeScript language server. This feature is set using the _Deno:
Enable Paths_ setting or `"deno.enablePaths"` if editing settings directly.

- fix: utilize fresh objects when muting built in ls (#615)
- fix: send all workspace settings during initialization (#632)

### [3.10.1](https://github.com/denoland/vscode_deno/compare/3.10.0...3.10.1) / 20212.01.16

- fix: update nest.land registry (#602)
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.

4 changes: 2 additions & 2 deletions 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.10.1",
"version": "3.11.0",
"publisher": "deno-land",
"repository": {
"type": "git",
Expand All @@ -22,4 +22,4 @@
"@types/vscode": "1.60.0",
"vscode-test": "^1.6.1"
}
}
}
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.10.1",
"version": "3.11.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.10.1",
"version": "3.11.0",
"publisher": "deno-land",
"main": "./dist/index",
"files": [
Expand Down

0 comments on commit 6bb9b70

Please sign in to comment.