diff --git a/CHANGELOG.md b/CHANGELOG.md index 0dd4cf9b..1c73e2c1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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.9.0](https://github.com/denoland/vscode_deno/compare/3.8.1...3.9.0) / 2021.09.15 + +- feat: support deno.json(c) files (#521) + + As of 1.14 Deno supports an expanded set of configuration options in the + configuration file above the supported TypeScript `"compilerOptions"` options. + + The extension supports validating these configuration files, as well as + recommends naming them `deno.json` or `deno.jsonc`. + +- fix: debug config provider (#513) +- fix: better suppression of built in diagnostics (#514) +- chore: bundle extension (#506) + + This decreases download/install size of the extension as well as speeds up + load time of the extension. + +- chore: fix packaging of extension (#507) +- chore: update vscode typings (#519) + ### [3.8.1](https://github.com/denoland/vscode_deno/compare/3.8.0...3.8.1) / 2021.08.25 - fix: properly parse config for test code lens (#502) diff --git a/client/package-lock.json b/client/package-lock.json index c5710124..0b3c89d1 100644 --- a/client/package-lock.json +++ b/client/package-lock.json @@ -1,12 +1,12 @@ { "name": "vscode-deno-client", - "version": "3.8.1", + "version": "3.9.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "vscode-deno-client", - "version": "3.8.1", + "version": "3.9.0", "license": "MIT", "dependencies": { "semver": "7.3.5", diff --git a/client/package.json b/client/package.json index 26be3997..71663179 100644 --- a/client/package.json +++ b/client/package.json @@ -4,7 +4,7 @@ "author": "Deno Land Inc.", "license": "MIT", "private": true, - "version": "3.8.1", + "version": "3.9.0", "publisher": "deno-land", "repository": { "type": "git", diff --git a/package-lock.json b/package-lock.json index e2ba3920..a1df6458 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "vscode-deno", - "version": "3.8.1", + "version": "3.9.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "vscode-deno", - "version": "3.8.1", + "version": "3.9.0", "hasInstallScript": true, "license": "MIT", "dependencies": { @@ -57,7 +57,7 @@ "link": true }, "typescript-deno-plugin": { - "version": "3.8.1", + "version": "3.9.0", "license": "MIT", "devDependencies": { "typescript": "^4.4.2" diff --git a/package.json b/package.json index 86270261..f5e15f62 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "description": "A language server client for Deno.", "author": "Deno Land Inc.", "license": "MIT", - "version": "3.8.1", + "version": "3.9.0", "icon": "deno.png", "galleryBanner": { "color": "#3B3738", @@ -434,7 +434,7 @@ ] }, "scripts": { - "vscode:prepublish": "npm i && npm run esbuild-plugin && npm run esbuild-base", + "vscode:prepublish": "npm i && npm run esbuild-plugin && npm i && npm run esbuild-base", "esbuild-base": "esbuild ./client/src/extension.ts --bundle --outfile=client/dist/main.js --external:vscode --format=cjs --platform=node", "esbuild-plugin": "esbuild ./typescript-deno-plugin/src/index.ts --bundle --outfile=typescript-deno-plugin/dist/index.js --external:vscode --format=cjs --platform=node", "esbuild": "npm run esbuild-plugin -- --sourcemap && npm run esbuild-base -- --sourcemap", diff --git a/typescript-deno-plugin/package-lock.json b/typescript-deno-plugin/package-lock.json index 6c8975ca..884d575a 100644 --- a/typescript-deno-plugin/package-lock.json +++ b/typescript-deno-plugin/package-lock.json @@ -1,11 +1,11 @@ { "name": "typescript-deno-plugin", - "version": "3.8.1", + "version": "3.9.0", "lockfileVersion": 2, "requires": true, "packages": { "": { - "version": "3.8.1", + "version": "3.9.0", "license": "MIT", "devDependencies": { "typescript": "^4.4.2" diff --git a/typescript-deno-plugin/package.json b/typescript-deno-plugin/package.json index 5ed6523f..64b5e2d7 100644 --- a/typescript-deno-plugin/package.json +++ b/typescript-deno-plugin/package.json @@ -4,7 +4,7 @@ "author": "Deno Land Inc.", "license": "MIT", "private": true, - "version": "3.8.1", + "version": "3.9.0", "publisher": "deno-land", "main": "./dist/index", "files": [