Skip to content

Commit f820eae

Browse files
committed
CHANGELOG.md: change log for v0.37.0
Updates #2568 Change-Id: Idfe9895bb0b50823fcd15844e1041b856bb2a120 Reviewed-on: https://go-review.googlesource.com/c/vscode-go/+/457476 TryBot-Result: kokoro <[email protected]> Run-TryBot: Hyang-Ah Hana Kim <[email protected]> Reviewed-by: Suzy Mueller <[email protected]>
1 parent 107463e commit f820eae

File tree

2 files changed

+24
-2
lines changed

2 files changed

+24
-2
lines changed

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
## v0.37.0 - 19 Dec, 2022
2+
3+
This release includes a new [code analysis feature](https://github.com/golang/vscode-go/wiki/features#analyze-vulnerabilities-in-dependencies) that surfaces known vulnerabilities in your dependencies. This vulncheck analyzer is backed by [Go's vulnerability database](https://go.dev/security/vulndb) and the Go language server's integration of [`govulncheck`](https://golang.org/x/vuln/cmd/govulncheck").
4+
Read [Go's support for vulnerability management](https://go.dev/blog/vuln) to learn about the Go team's approach to helping Go developers secure their open-source dependencies.
5+
6+
### Changes
7+
- The new "Go: Toggle Vulncheck" command enables/disables imports-based vulnerability analysis. This requires gopls v0.11.0 or newer.
8+
- Test and debug test codelenses are added to some subtests if the test names can be determined. ([Issue 2536](https://github.com/golang/vscode-go/issues/2536))
9+
- Gopls settings was updated to match [email protected].
10+
- `"go.formatTool"` setting accepts a special value `"custom"`, which causes the extension to use the custom formatter configured with the setting `"go.alternateTools": { "customFormatter": <your custom tool name> }`. ([Issue 2503](https://github.com/golang/vscode-go/issues/2503))
11+
- The experimental "Go: Run Vulncheck (exp)" command was removed.
12+
- The extension no longer bypasses Delve's Go version check by default. Users must install the delve version compatible with their Go version, or explicitly configure their launch configuration to pass the `--check-go-version=false` flag using the `dlvFlags` attribute. ([Go Delve Issue 3058](https://github.com/go-delve/delve/issues/3058))
13+
14+
### Fixes
15+
- The editor survey prompt logic was adjusted for uniform sampling. ([Issue 2545](https://github.com/golang/vscode-go/issues/2545))
16+
- Fixed the crash bug when handling coverage profiles involving go `//line`-directive. ([Issue 2453](https://github.com/golang/vscode-go/issues/2453))
17+
- Updated dependencies to address GHSA-3rfm-jhwj-7488 and GHSA-hrpp-h998-j3pp.
18+
19+
### Thanks
20+
21+
Thank you for your contribution, @devuo, @pjweinbgo, @aarzilli, @tklauser, @hyangah, @suzmue, @jamalc!
22+
123
## v0.36.0 - 7 Nov, 2022
224
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).
325

src/goToolsInformation.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -213,8 +213,8 @@ export const allToolsInformation: { [key: string]: Tool } = {
213213
minimumGoVersion: semver.coerce('1.13'),
214214
latestVersion: semver.parse('v0.10.1'),
215215
latestVersionTimestamp: moment('2022-11-01', 'YYYY-MM-DD'),
216-
latestPrereleaseVersion: semver.parse('v0.10.1'),
217-
latestPrereleaseVersionTimestamp: moment('2022-11-01', 'YYYY-MM-DD')
216+
latestPrereleaseVersion: semver.parse('v0.11.0-pre.3'),
217+
latestPrereleaseVersionTimestamp: moment('2022-12-13', 'YYYY-MM-DD')
218218
},
219219
'dlv': {
220220
name: 'dlv',

0 commit comments

Comments
 (0)