vscode-go v0.36.0 Release Notes
Release Date: 2022-11-07 // over 2 years ago-
A list of all issues and changes can be found in the v0.36.0 milestone and commit history.
๐ Changes
- ๐ 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) - ๐ 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 to learn about notable changes and new features.
- Typing
vars
will now offer a completion snippet that expands it to avar (...)
block containing multiple variables. (PR 2481) - ๐ 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 for details. - โ When debugging tests, the extension will open the "Debug Console". (Issue 2409)
๐ Fixes
- ๐ Fixed Issue 2525 that prevented triggering of parameter hints after method autocompletion. Users can enable/disable this parameter hints popup with the
"editor.parameterHints.enabled"
setting. - ๐ Fixed test profie feature (CL 440530).
- โ Removed dev dependency affected by CVE-2022-3517.
Thanks
Thank you for your contribution, @suzmue, @fatoboist, @cuishuang, @jamalc, @karthikraobr, @pjweinbgo, @firelizzard18, @hyangah!
- ๐ 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
Previous changes from v0.35.2
-
A list of all issues and changes can be found in the v0.35.2 milestone and commit history.
๐ Changes
๐ This release includes a new go.goroot command, fixes to the
Generate Tests
commands, and improvements for windows users.Thanks
Thank you for your contribution, @OrBin, @Ras96, @hyangah, @jamalcarvalho, and @suzmue!