Tags: kmwoley/vscode-go
Tags
CHANGELOG.md: update v0.22.1 release date It was delayed due to last minute CI issues Change-Id: If2e801b9c849f1df70349f70b30dfd98af257c64 Reviewed-on: https://go-review.googlesource.com/c/vscode-go/+/290391 Trust: Hyang-Ah Hana Kim <[email protected]> Run-TryBot: Hyang-Ah Hana Kim <[email protected]> TryBot-Result: kokoro <[email protected]> Reviewed-by: Rebecca Stambler <[email protected]>
[release] src/goMain: fix the exception caused by invalid version string https://go-review.googlesource.com/c/vscode-go/+/289191 made showGoWelcomePage pass an empty string to shouldShowGoWelcomePage and causes it to fail. Do the null check on the coerced semver. Change-Id: Ibc5d9684e153571e7e6507f533367a128952c9ac Reviewed-on: https://go-review.googlesource.com/c/vscode-go/+/289969 Run-TryBot: Hyang-Ah Hana Kim <[email protected]> TryBot-Result: kokoro <[email protected]> Trust: Hyang-Ah Hana Kim <[email protected]> Reviewed-by: Suzy Mueller <[email protected]> (cherry picked from commit feee65b) Reviewed-on: https://go-review.googlesource.com/c/vscode-go/+/290109 Reviewed-by: Rebecca Stambler <[email protected]>
[release] CHANGELOG.md: v0.22.1 Change-Id: I1535f1779f069e63a4a421494c75fae722a3533e Reviewed-on: https://go-review.googlesource.com/c/vscode-go/+/287953 Trust: Hyang-Ah Hana Kim <[email protected]> Run-TryBot: Hyang-Ah Hana Kim <[email protected]> Reviewed-by: Rebecca Stambler <[email protected]> TryBot-Result: kokoro <[email protected]>
[release] src/welcome: correct link to Gophers Slack The link should be an invite, since people without accounts won't be able to see the channel. Change-Id: If3554e4cd7b8ee694e06ff650101a5c003d20761 Reviewed-on: https://go-review.googlesource.com/c/vscode-go/+/286892 Trust: Rebecca Stambler <[email protected]> Run-TryBot: Rebecca Stambler <[email protected]> TryBot-Result: kokoro <[email protected]> Reviewed-by: Hyang-Ah Hana Kim <[email protected]> (cherry picked from commit 63d2287) Reviewed-on: https://go-review.googlesource.com/c/vscode-go/+/286913
[release] all: merge master@b665d37 b665d37 src/goLanguageServer: remove gopls start progress bar Change-Id: Icb2c05a1734c592a81e523960e92dae27bfd0611
[release] all: merge master@d04d4cf d04d4cf README.md: correct tools installation command name 03274ad src/goStatus: present error icon if gopls couldn't be found 465fe7e src/goLanguageServer.ts: prompt to update instead of silent update 607cebe src/welcome: add note about removing go.useLanguageServer setting Change-Id: I43ff57a9698097b9e05e8e705082912cd41ac3d6
[release] Update README.md and CHANGELOG.md I intend to keep this announcement change only in the release branch until the release date. We will cherry-pick this to the master branch. Change-Id: If318853c6801aed8f43e6a9e01ef4ac3e638181c Reviewed-on: https://go-review.googlesource.com/c/vscode-go/+/285893 Trust: Hyang-Ah Hana Kim <[email protected]> Run-TryBot: Hyang-Ah Hana Kim <[email protected]> TryBot-Result: kokoro <[email protected]> Reviewed-by: Rebecca Stambler <[email protected]>
[release] src/goLanguageServer: partial revert of cl/280601 This partially reverts commit 4c91c38. In https://go-review.googlesource.com/c/vscode-go/+/280601, we tried to remove the languageServerExperimentalFeatures setting because gopls's diagnostics feature is no longer in its experimental state and that was the only flag left in this setting. However, we learned some users depend on this flag because the extension turns off buildOnSave and vetOnSave features when gopls's diagnostics is used and they need to run custom vet analyzers. This is not ideal and the extension shouldn't prevent users from running their custom analyzers. That needs more investigation and experiment. For now, we rollback the change, but place the deprecation notice. Update golang#50 Fixes golang#1110 Change-Id: I376692b152d3011aaa8da7a1b5121ba33e2188b6 Reviewed-on: https://go-review.googlesource.com/c/vscode-go/+/285253 Trust: Hyang-Ah Hana Kim <[email protected]> Run-TryBot: Hyang-Ah Hana Kim <[email protected]> TryBot-Result: kokoro <[email protected]> Reviewed-by: Rebecca Stambler <[email protected]> (cherry picked from commit fbd2fc4) Reviewed-on: https://go-review.googlesource.com/c/vscode-go/+/285256
[release] src/goLanguageServer: partial revert of cl/280601 This partially reverts commit 4c91c38. In https://go-review.googlesource.com/c/vscode-go/+/280601, we tried to remove the languageServerExperimentalFeatures setting because gopls's diagnostics feature is no longer in its experimental state and that was the only flag left in this setting. However, we learned some users depend on this flag because the extension turns off buildOnSave and vetOnSave features when gopls's diagnostics is used and they need to run custom vet analyzers. This is not ideal and the extension shouldn't prevent users from running their custom analyzers. That needs more investigation and experiment. For now, we rollback the change, but place the deprecation notice. Update golang#50 Fixes golang#1110 Change-Id: I376692b152d3011aaa8da7a1b5121ba33e2188b6 Reviewed-on: https://go-review.googlesource.com/c/vscode-go/+/285253 Trust: Hyang-Ah Hana Kim <[email protected]> Run-TryBot: Hyang-Ah Hana Kim <[email protected]> TryBot-Result: kokoro <[email protected]> Reviewed-by: Rebecca Stambler <[email protected]> (cherry picked from commit fbd2fc4) Reviewed-on: https://go-review.googlesource.com/c/vscode-go/+/285256
[release] src/config: fix initConfig and WrappedConfiguration workspaceIsTrusted is a function, not a variable. Make sure the properties to be overriden by WrappedConfiguration are what we want, by not copying them in the constructor. Change-Id: Ia88c31651005f0bb6c95e8316b955f4fcb63d8dc Reviewed-on: https://go-review.googlesource.com/c/vscode-go/+/284586 Trust: Hyang-Ah Hana Kim <[email protected]> Run-TryBot: Hyang-Ah Hana Kim <[email protected]> Reviewed-by: Suzy Mueller <[email protected]> (cherry picked from commit a267fff) Reviewed-on: https://go-review.googlesource.com/c/vscode-go/+/284794 TryBot-Result: kokoro <[email protected]>
PreviousNext