-
Notifications
You must be signed in to change notification settings - Fork 763
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
7a5c1bb CHANGELOG.md: address suzmue's comment and apply style fixes f17266e CHANGELOG.md: change log for v0.40.1 c37e0fe package-lock.json: run npm audit fix 35ca87e src/goExplorer: add GOTOOLCHAIN in the go env var explorer 077c236 go.mod: update dependencies to silence vuln reports 3888cc4 src/goTest: fix display pprof result page when using ssh ec9e90d src/goToolsInformation: set min go version for golangci-lint 34f54ac package.json: update vscode test electron dependency 3900894 go.mod: go mod tidy -go=1.18 d6fb202 src/goTest: fix bugs in subtest handling fae8cb9 src/goMain: stop trying to diagnose when gopls is not running 308c6c0 src/language/goLanguageServer: fix parameter hint setting query 322014f src/utils/pathUtils: adjust snap go path 4316a96 src/language/goLanguageServer: improve suggestGoplsIssueReport d833323 package.json: remove 'workspaceContains' from activation events 07bea22 docs/contributing.md: remove unnecessary quote 455b799 test/integration: delete legacy DA's path mapping tests ffde5a1 test/runTest: suppress vscode download log 95a552b package.json: update @vscode/test-electron to 2.3.6 7f843ca src/welcome: delete unused variables c6bfee8 .github/workflows: upgrade to v4 github actions e864a1e package.json: start the v0.41.0-dev cycle 8190ad6 CHANGELOG.md: fix delve version used in v0.40.0 release ed92a0c CHANGELOG.md: update planned release date f76ac35 tools: add max version for delve Change-Id: I26e97fabb61ebd80954fe78c204066ffd092f9b5
- Loading branch information
Showing
37 changed files
with
563 additions
and
2,137 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,40 @@ | ||
module github.com/golang/vscode-go | ||
|
||
go 1.16 | ||
go 1.18 | ||
|
||
require ( | ||
github.com/google/go-cmp v0.5.9 | ||
github.com/stamblerre/work-stats v0.0.0-20221215212512-f2f2cf51e506 | ||
golang.org/x/build v0.0.0-20230221151429-f03e733dd241 | ||
) | ||
|
||
require ( | ||
cloud.google.com/go/compute v1.21.0 // indirect | ||
cloud.google.com/go/compute/metadata v0.2.3 // indirect | ||
cloud.google.com/go/iam v1.1.1 // indirect | ||
cloud.google.com/go/secretmanager v1.11.1 // indirect | ||
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect | ||
github.com/golang/protobuf v1.5.3 // indirect | ||
github.com/google/go-github v17.0.0+incompatible // indirect | ||
github.com/google/go-querystring v1.1.0 // indirect | ||
github.com/google/s2a-go v0.1.4 // indirect | ||
github.com/google/uuid v1.3.0 // indirect | ||
github.com/googleapis/enterprise-certificate-proxy v0.2.3 // indirect | ||
github.com/googleapis/gax-go/v2 v2.11.0 // indirect | ||
github.com/gregjones/httpcache v0.0.0-20180305231024-9cad4c3443a7 // indirect | ||
github.com/stamblerre/sheets v0.0.0-20220322044539-54bdb620f700 // indirect | ||
go.opencensus.io v0.24.0 // indirect | ||
go4.org v0.0.0-20180809161055-417644f6feb5 // indirect | ||
golang.org/x/crypto v0.14.0 // indirect | ||
golang.org/x/net v0.17.0 // indirect | ||
golang.org/x/oauth2 v0.10.0 // indirect | ||
golang.org/x/sync v0.3.0 // indirect | ||
golang.org/x/sys v0.13.0 // indirect | ||
golang.org/x/text v0.13.0 // indirect | ||
golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac // indirect | ||
google.golang.org/api v0.126.0 // indirect | ||
google.golang.org/appengine v1.6.7 // indirect | ||
google.golang.org/genproto/googleapis/rpc v0.0.0-20230711160842-782d3b101e98 // indirect | ||
google.golang.org/grpc v1.58.3 // indirect | ||
google.golang.org/protobuf v1.31.0 // indirect | ||
) |
Oops, something went wrong.