Skip to content

Commit ce9ddf8

Browse files
committed
CHANGELOG.md: draft v0.36.0 release note
Also update default gopls version. For #2525 Change-Id: Id6fc3d3771b6e35a4f6a570f22f7cb85aee8677c Reviewed-on: https://go-review.googlesource.com/c/vscode-go/+/446872 Run-TryBot: Hyang-Ah Hana Kim <[email protected]> Reviewed-by: Alan Donovan <[email protected]>
1 parent 7055f45 commit ce9ddf8

File tree

2 files changed

+21
-3
lines changed

2 files changed

+21
-3
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
## v0.36.0 - 4 Nov, 2022
2+
A list of all issues and changes can be found in the [v0.36.0 milestone](https://github.com/golang/vscode-go/milestone/52) and [commit history](https://github.com/golang/vscode-go/compare/v0.35.2...v0.36.0).
3+
4+
### Changes
5+
- From this release, the extension will download specific versions of 3rd party tools installed with the "Go: Install/Update Tools" command. This is to enhance stability and security. The "Go: Install/Upate Tools" command will present the versions the extension will install. To install a different version of a tool, use `go install` command from the terminal instead. ([Issue 1850](https://github.com/golang/vscode-go/issues/1850))
6+
- The default gopls version was updated to v0.10.1 and the settings were updated accordingly. See the [release note of gopls v0.10.0](https://github.com/golang/tools/releases/tag/gopls%2Fv0.10.0) to learn about notable changes and new features.
7+
- Typing `vars` will now offer a completion snippet that expands it to a `var (...)` block containing multiple variables. ([PR 2481](https://github.com/golang/vscode-go/pull/2481))
8+
- The setting to enable the "references" codelens, `go.enableCodeLens.references`, is now hidden. The feature remained broken for a while, so we plan to remove it in a future release. Please see [Issue 2509](https://github.com/golang/vscode-go/issues#2509) for details.
9+
- When debugging tests, the extension will open the "Debug Console". ([Issue 2409](https://github.com/golang/vscode-go/issues/2409))
10+
11+
### Fixes
12+
- Fixed [Issue 2525](https://github.com/golang/vscode-go/issues/2525) that prevented triggering of parameter hints after method autocompletion. Users can enable/disable this parameter hints popup with the `"editor.parameterHints.enabled"` setting.
13+
- Fixed [test profie feature](https://github.com/golang/vscode-go/wiki/features#profiling) ([CL 440530](https://go-review.googlesource.com/c/vscode-go/+/440530)).
14+
- Removed dev dependency affected by CVE-2022-3517.
15+
16+
### Thanks
17+
Thank you for your contribution, @suzmue, @fatoboist, @cuishuang, @jamalc, @karthikraobr, @pjweinbgo, @firelizzard18, @hyangah!
18+
119
## v0.35.2 - 15 Aug, 2022
220
A list of all issues and changes can be found in the [v0.35.2 milestone](https://github.com/golang/vscode-go/milestone/51) and [commit history](https://github.com/golang/vscode-go/compare/v0.35.1...v0.35.2).
321

src/goToolsInformation.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -211,9 +211,9 @@ export const allToolsInformation: { [key: string]: Tool } = {
211211
description: 'Language Server from Google',
212212
usePrereleaseInPreviewMode: true,
213213
minimumGoVersion: semver.coerce('1.13'),
214-
latestVersion: semver.parse('v0.10.0'),
215-
latestVersionTimestamp: moment('2022-10-28', 'YYYY-MM-DD'),
216-
latestPrereleaseVersion: semver.parse('v0.10.1-pre.1'),
214+
latestVersion: semver.parse('v0.10.1'),
215+
latestVersionTimestamp: moment('2022-11-01', 'YYYY-MM-DD'),
216+
latestPrereleaseVersion: semver.parse('v0.10.1'),
217217
latestPrereleaseVersionTimestamp: moment('2022-11-01', 'YYYY-MM-DD')
218218
},
219219
'dlv': {

0 commit comments

Comments
 (0)