Skip to content

Commit

Permalink
3.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kitsonk committed Mar 30, 2022
1 parent 7a43c87 commit 65b2dcf
Show file tree
Hide file tree
Showing 7 changed files with 37 additions and 17 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.12.0](https://github.com/denoland/vscode_deno/compare/3.11.0...3.12.0) / 20212.03.30

- feat: prompt for enabling when config detected (#640)

When a `deno.json` or `deno.jsonc` is detected in the root of a workspace or
workspace folder and Deno isn't explicitly enabled or disabled, a prompt will
appear to choose to enable the workspace (or workspace folder).

- feat: support config file tasks (#641)

When a Deno configuration file (`deno.json`/`deno.jsonc`) applies to a
workspace, and the Deno language server supports the task detection feature,
tasks from the configuration file will be available in VSCode.

- feat: support vscode Testing API (#629)

When the Deno language server supports the experimental testing API, tests
will be made available in the Testing Explorer pane and other decorations
individual tests in the code.

### [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)
Expand Down
16 changes: 8 additions & 8 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.11.0",
"version": "3.12.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.

4 changes: 2 additions & 2 deletions 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.11.0",
"version": "3.12.0",
"icon": "deno.png",
"galleryBanner": {
"color": "#3B3738",
Expand Down Expand Up @@ -513,4 +513,4 @@
"esbuild": "^0.14.23",
"typescript": "^4.5.5"
}
}
}
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.11.0",
"version": "3.12.0",
"publisher": "deno-land",
"main": "./dist/index",
"files": [
Expand Down

0 comments on commit 65b2dcf

Please sign in to comment.