Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cmd/go: empty file causes go list to drop test packages #37971

Closed
stamblerre opened this issue Mar 20, 2020 · 12 comments
Closed

cmd/go: empty file causes go list to drop test packages #37971

stamblerre opened this issue Mar 20, 2020 · 12 comments
Labels
FrozenDueToAge NeedsInvestigation Someone must examine and confirm this is a valid issue and not a duplicate of an existing one.
Milestone

Comments

@stamblerre
Copy link
Contributor

This is similar to #35973, which caused imports to be dropped when a directory contains an empty file. This can be reproduced with the following directory structure:

├── a
│   ├── a.go
│   ├── a2.go
│   └── a_test.go
└── go.mod

where a_test.go is an x_test and a2.go is empty. Full repro steps are below. This is the direct cause of #37958, but we can likely work around it for 1.14. I'd be curious to hear if it's possible to fix this for 1.15.

$ dir=$(mktemp -d)
$ cd $dir
$ go mod init github.com/me/a
$ mkdir a
$ cd a
$ cat <<EOF > a.go
package a
func Hello() {}
EOF
$ cat <<EOF > a_test.go
package a_test
import "testing"
import "github.com/me/a/a"
func TestA(t *testing.T) { a.Hello() }
EOF
$ go list -e -json -compiled -test github.com/me/a/a
{
	"Dir": "/var/folders/c5/cdxx0hzn6v3cvfn42kwt2tj000crcx/T/tmp.j9ARp7Xr/a",
	"ImportPath": "github.com/me/a/a",
	"Name": "a",
	"Root": "/var/folders/c5/cdxx0hzn6v3cvfn42kwt2tj000crcx/T/tmp.j9ARp7Xr",
	"Module": {
		"Path": "github.com/me/a",
		"Main": true,
		"Dir": "/var/folders/c5/cdxx0hzn6v3cvfn42kwt2tj000crcx/T/tmp.j9ARp7Xr",
		"GoMod": "/var/folders/c5/cdxx0hzn6v3cvfn42kwt2tj000crcx/T/tmp.j9ARp7Xr/go.mod",
		"GoVersion": "1.14"
	},
	"Match": [
		"github.com/me/a/a"
	],
	"Stale": true,
	"StaleReason": "not installed but available in build cache",
	"GoFiles": [
		"a.go"
	],
	"CompiledGoFiles": [
		"a.go"
	],
	"XTestGoFiles": [
		"a_test.go"
	],
	"XTestImports": [
		"github.com/me/a/a",
		"testing"
	]
}
{
	"Dir": "/var/folders/c5/cdxx0hzn6v3cvfn42kwt2tj000crcx/T/tmp.j9ARp7Xr/a",
	"ImportPath": "github.com/me/a/a.test",
	"Name": "main",
	"Root": "/var/folders/c5/cdxx0hzn6v3cvfn42kwt2tj000crcx/T/tmp.j9ARp7Xr",
	"Stale": true,
	"StaleReason": "stale dependency: github.com/me/a/a",
	"GoFiles": [
		"/Users/rstambler/Library/Caches/go-build/78/78d91e04dc9b291475a8b2506a08e3fb4e7938a89531a32ee65f11fbb65b87f1-d"
	],
	"CompiledGoFiles": [
		"/Users/rstambler/Library/Caches/go-build/78/78d91e04dc9b291475a8b2506a08e3fb4e7938a89531a32ee65f11fbb65b87f1-d"
	],
	"Imports": [
		"github.com/me/a/a",
		"github.com/me/a/a_test [github.com/me/a/a.test]",
		"os",
		"testing",
		"testing/internal/testdeps"
	],
	"ImportMap": {
		"github.com/me/a/a_test": "github.com/me/a/a_test [github.com/me/a/a.test]"
	},
	"Deps": [
		"bufio",
		"bytes",
		"compress/flate",
		"compress/gzip",
		"context",
		"encoding/binary",
		"errors",
		"flag",
		"fmt",
		"github.com/me/a/a",
		"github.com/me/a/a_test [github.com/me/a/a.test]",
		"hash",
		"hash/crc32",
		"internal/bytealg",
		"internal/cpu",
		"internal/fmtsort",
		"internal/oserror",
		"internal/poll",
		"internal/race",
		"internal/reflectlite",
		"internal/syscall/unix",
		"internal/testlog",
		"io",
		"io/ioutil",
		"math",
		"math/bits",
		"os",
		"path/filepath",
		"reflect",
		"regexp",
		"regexp/syntax",
		"runtime",
		"runtime/debug",
		"runtime/internal/atomic",
		"runtime/internal/math",
		"runtime/internal/sys",
		"runtime/pprof",
		"runtime/trace",
		"sort",
		"strconv",
		"strings",
		"sync",
		"sync/atomic",
		"syscall",
		"testing",
		"testing/internal/testdeps",
		"text/tabwriter",
		"time",
		"unicode",
		"unicode/utf8",
		"unsafe"
	]
}
{
	"Dir": "/var/folders/c5/cdxx0hzn6v3cvfn42kwt2tj000crcx/T/tmp.j9ARp7Xr/a",
	"ImportPath": "github.com/me/a/a_test [github.com/me/a/a.test]",
	"Name": "a_test",
	"Root": "/var/folders/c5/cdxx0hzn6v3cvfn42kwt2tj000crcx/T/tmp.j9ARp7Xr",
	"ForTest": "github.com/me/a/a",
	"Stale": true,
	"StaleReason": "stale dependency: github.com/me/a/a",
	"GoFiles": [
		"a_test.go"
	],
	"CompiledGoFiles": [
		"a_test.go"
	],
	"Imports": [
		"github.com/me/a/a",
		"testing"
	],
	"Deps": [
		"bytes",
		"context",
		"errors",
		"flag",
		"fmt",
		"github.com/me/a/a",
		"internal/bytealg",
		"internal/cpu",
		"internal/fmtsort",
		"internal/oserror",
		"internal/poll",
		"internal/race",
		"internal/reflectlite",
		"internal/syscall/unix",
		"internal/testlog",
		"io",
		"math",
		"math/bits",
		"os",
		"reflect",
		"runtime",
		"runtime/debug",
		"runtime/internal/atomic",
		"runtime/internal/math",
		"runtime/internal/sys",
		"runtime/trace",
		"sort",
		"strconv",
		"strings",
		"sync",
		"sync/atomic",
		"syscall",
		"testing",
		"time",
		"unicode",
		"unicode/utf8",
		"unsafe"
	]
}
$ touch a2.go
$ go list -e -json -compiled -test github.com/me/a/a
{
	"Dir": "/var/folders/c5/cdxx0hzn6v3cvfn42kwt2tj000crcx/T/tmp.j9ARp7Xr/a",
	"ImportPath": "github.com/me/a/a",
	"Name": "a",
	"Root": "/var/folders/c5/cdxx0hzn6v3cvfn42kwt2tj000crcx/T/tmp.j9ARp7Xr",
	"Match": [
		"github.com/me/a/a"
	],
	"Incomplete": true,
	"Stale": true,
	"StaleReason": "not installed but available in build cache",
	"GoFiles": [
		"a.go"
	],
	"CompiledGoFiles": [
		"a.go"
	],
	"Error": {
		"ImportStack": [
			"github.com/me/a/a"
		],
		"Pos": "",
		"Err": "\na2.go:1:1: expected 'package', found 'EOF'"
	},
	"XTestGoFiles": [
		"a_test.go"
	],
	"XTestImports": [
		"github.com/me/a/a",
		"testing"
	]
}

/cc @bcmills @jayconrod

@stamblerre stamblerre changed the title cmd/go: empty file causes test packages to be dropped cmd/go: empty file causes go list to drop test packages Mar 20, 2020
@gopherbot
Copy link

Change https://golang.org/cl/224517 mentions this issue: go/packages: add test for golang/go#37971

@jayconrod jayconrod added the NeedsInvestigation Someone must examine and confirm this is a valid issue and not a duplicate of an existing one. label Mar 20, 2020
@jayconrod jayconrod added this to the Go1.15 milestone Mar 20, 2020
@jayconrod
Copy link
Contributor

cc @matloob

@gopherbot
Copy link

Change https://golang.org/cl/224538 mentions this issue: internal/lsp: be more careful about showing workspace misconfig message

@jayconrod
Copy link
Contributor

@matloob Do you want to take a look at this next week? I know you've been looking at error handling.

I think the problem is here. If there's an error loading the package being tested, we don't attempt to load test packages.

For most (all?) errors, it should be safe to load test packages. Even if the package doesn't exist, it should be safe to try, since TestGoFiles and XTestGoFiles will be empty anyway.

@matloob
Copy link
Contributor

matloob commented Mar 20, 2020

Will do, thanks!

@gopherbot
Copy link

Change https://golang.org/cl/224944 mentions this issue: cmd/go: list test packages even when the main package has an error

gopherbot pushed a commit to golang/tools that referenced this issue Mar 23, 2020
We can re-enable this when we have a version of Go that includes the fix
for golang/go#37971. Then we can continue playing whack-a-mole with go
list corner cases :)

Fixes golang/go#37958

Change-Id: I2417731bf5c01fbde867fef2ef03b5025ae779c7
Reviewed-on: https://go-review.googlesource.com/c/tools/+/224538
Run-TryBot: Rebecca Stambler <rstambler@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Heschi Kreinick <heschi@google.com>
@zikaeroh
Copy link
Contributor

Does this need to be backported so gopls can remove its hack? Or is the hack okay until 1.15? If you have one of these broken files, I had thought it wouldn't be able to load info for other files but maybe I misinterpreted CL 224538 or the severity of the oddity this causes.

@stamblerre
Copy link
Contributor Author

Historically, backporting a fix requires more justification (because gopls can work around this fine), but I'm certainly not opposed to getting this backported.

@stamblerre stamblerre reopened this Mar 24, 2020
@zikaeroh
Copy link
Contributor

You're the expert, not me, if the workaround works then that's fine with me. 😄

@stamblerre
Copy link
Contributor Author

Ah well I'd also prefer to avoid the workaround if possible, mostly because it's probably masking other such errors that we could get fixed in 1.15. I'll let the Go command folks decide.

@jayconrod
Copy link
Contributor

Security issues, serious problems with no workaround, and documentation fixes are eligible for backporting. Since gopls has a workaround I don't think this will make the cut. I think the risk is low for this fix, but it's never zero.

You might want to chat with the release team and then open a backport issue though; they're the ones who decide.

@stamblerre This issue is fixed at master though right? If so, it should be closed. Backports are tracked with separate issues (MinorReleases has all the details).

@stamblerre
Copy link
Contributor Author

Makes sense. Thanks!

gopherbot pushed a commit to golang/tools that referenced this issue Mar 24, 2020
Since the fix is only available at master, make the test 1.15-specific.

Change-Id: Ie17c8806479d3d53076c2351da8bcfcfbfc8257f
Reviewed-on: https://go-review.googlesource.com/c/tools/+/224517
Run-TryBot: Rebecca Stambler <rstambler@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Michael Matloob <matloob@golang.org>
myitcv added a commit to govim/govim that referenced this issue Mar 28, 2020
* internal/gocommand: don't delete command's environment 3db5fc6b
* internal/lsp/cache: validate workspace path case 82bb8936
* internal/gocommand: only set working dir if it's not empty 8faa90c2
* internal/lsp/analysis: add quickfix for "no new vars on left side" eabff7e0
* go/packages: add a workaround for different import stacks between go versions d190e260
* go/analysis/passes/unreachable: add suggested-fix to remove dead code c12078ef
* internal/lsp/analysis: add quickfix for "no result values expected" f4fcf867
* internal/lsp/source: remove unused parameters from functions afab6edf
* internal/lsp/cmd: add a flag to disable telemetry 17a19b5f
* internal/lsp/analysis: add quickfix for undeclared variable 8f81e2e6
* internal/lsp: add support for type error analyzers 42235f63
* internal/lsp: refactor references/rename/implementations eca45d48
* internal/lsp/hooks: enable staticcheck hooks 8db92c5f
* internal/lsp/analysis: add simplify-slice pass from "gofmt -s" 5d86d385
* internal/lsp/analysis: add simplify-composite-lit pass from "gofmt -s" e428a8ec
* internal/lsp/analysis: add pass for unused parameters 88b9c284
* internal/lsp/analysis: add simplify-range pass from "gofmt -s" 94fe02cb
* internal/lsp: add support for sourceFixAll analyzers e46a7b92
* tools/gopls: add cmd support for workspace_symbol d58d27dc
* go/analysis/analysistest: expand testing to handle suggested fixes b1df9901
* internal/lsp: change disabledAnalyses setting to be general 02a6ca6d
* internal/lsp: avoid possible nil pointer in references/rename 52ff224b
* internal/telemetry: render trace tags using typed keys c9942794
* internal/telemetry: convert attributes using the key type 1386b938
* internal/telemetry: make metrics take a strongly typed key 12492730
* internal/telemetry: normalize the event reciever names to all use ev 063d392f
* internal/telemetry: improve the telemetry benchmark 8f75b710
* lsp/source: create zero value ast.Exprs e2e2519b
* internal/lsp: remove command-line-arguments as a workspace package f53864d0
* gopls/integration/govim: improvements/fixes for run_local.sh 4c1ea055
* blog: use serial comma in long author lists 644a21fb
* internal/telemetry: hide event.Type a49f79bc
* internal/telemetry: remove the ProcessEvent function f207553f
* internal/telemetry: replace TagSet with TagMap and TagPointer 224c947c
* internal/telemetry: change Exporter to be a function type. 62abcc1d
* internal/lsp/regtest: remove redundant T and ctx params from regtest funcs 1fc30e1f
* go/packages: add test for golang/go#37971 cc38525d
* internal/lsp/fake: add regexp search and replace 4c83a7e0
* internal/lsp: print view-specific environment 6fc5d0bc
* internal/lsp: stop showing workspace misconfiguration message a5e5fedf
* internal/lsp: never reload command-line-arguments directly 6fb6f5a9
* internal/lsp: fix nil pointer in 'go mod why' logic bbbf714b
* internal/telemetry/export/ocagent: add traces to tutorial 5c746ccf
* internal/telemetry/export/ocagent: update metrics tutorial to use the event system dbf25ea2
* go/analysis/passes/printf: warn against using %v verb in Error() methods a576cf52
* internal/lsp/source: prefer unexported and non-func candidates ef1313dc
* internal/lsp: be more careful about showing workspace misconfig message 8849913b
* present: test Markdown & fix splitting of pre blocks e609210b
* present: add end-to-end rendering test e41bc026
* internal/lsp: fix nil pointer in renaming to "error" 18ea2c8f
* internal/telemetry: switch metrics to use the event system 8dcfad9e
* internal/telemetry: switch metrics to use only the public API 326edff2
* internal/telemetry: replace event.TagList with event.TagSet b378960d
* internal/lsp: remove completion commands 0d839f3c
* internal/telemetry/export/ocagent: update metric tutorial to use oragent 268ba720
* internal/jsonrpc2: remove unnecessary Log comment from Handler interface 2f9d11aa
* internal/lsp/cmd: fix definition test to run independently 521f4a0c
* gopls/doc: add documentation for "local" configuration c97a9db7
* internal/lsp: fix errors found by staticcheck 9a0fabac
* blog: use first OldURL to generate atom feed ID ba25ddc8
* internal/telemetry: add type safe tag keys 540150da
* internal/telemetry: delete the event.TagOf method d7fc2cf5
* internal/lsp: move the telemetry package 04208b9e
* internal/telemetry: change ocagent test to use the standard telemetry methods 9dec35b5
* internal/telemetry: allow ProcessEvent to modify the event cb106d26
* internal/lsp: move the operation key to the telemetry package 9fceb114
* internal/lsp/source: fix literal completions in variadic args 11a475a5
* internal/lsp/source: optimize enumeration of a type's fields 613a0345
* cmd/compilebench: report rss measurement dba9bee0
* present2md: fix depth count for blogs with sections 2944c61d
* present: fix Markdown bugs 4d864399
* present: add OldURL metadata and use for redirects in blog b304dfc3
* x/tools/gopls: 'go generate' should use $/progress if available cf1dd6fc
* internal/lsp: fix breadcrumbs when inside of a method d05f4d6e
* internal/lsp: fix code.ts to generate progress and *TextEdit 827390e9
myitcv added a commit to govim/govim that referenced this issue Mar 31, 2020
* internal/gocommand: don't delete command's environment 3db5fc6b
* internal/lsp/cache: validate workspace path case 82bb8936
* internal/gocommand: only set working dir if it's not empty 8faa90c2
* internal/lsp/analysis: add quickfix for "no new vars on left side" eabff7e0
* go/packages: add a workaround for different import stacks between go versions d190e260
* go/analysis/passes/unreachable: add suggested-fix to remove dead code c12078ef
* internal/lsp/analysis: add quickfix for "no result values expected" f4fcf867
* internal/lsp/source: remove unused parameters from functions afab6edf
* internal/lsp/cmd: add a flag to disable telemetry 17a19b5f
* internal/lsp/analysis: add quickfix for undeclared variable 8f81e2e6
* internal/lsp: add support for type error analyzers 42235f63
* internal/lsp: refactor references/rename/implementations eca45d48
* internal/lsp/hooks: enable staticcheck hooks 8db92c5f
* internal/lsp/analysis: add simplify-slice pass from "gofmt -s" 5d86d385
* internal/lsp/analysis: add simplify-composite-lit pass from "gofmt -s" e428a8ec
* internal/lsp/analysis: add pass for unused parameters 88b9c284
* internal/lsp/analysis: add simplify-range pass from "gofmt -s" 94fe02cb
* internal/lsp: add support for sourceFixAll analyzers e46a7b92
* tools/gopls: add cmd support for workspace_symbol d58d27dc
* go/analysis/analysistest: expand testing to handle suggested fixes b1df9901
* internal/lsp: change disabledAnalyses setting to be general 02a6ca6d
* internal/lsp: avoid possible nil pointer in references/rename 52ff224b
* internal/telemetry: render trace tags using typed keys c9942794
* internal/telemetry: convert attributes using the key type 1386b938
* internal/telemetry: make metrics take a strongly typed key 12492730
* internal/telemetry: normalize the event reciever names to all use ev 063d392f
* internal/telemetry: improve the telemetry benchmark 8f75b710
* lsp/source: create zero value ast.Exprs e2e2519b
* internal/lsp: remove command-line-arguments as a workspace package f53864d0
* gopls/integration/govim: improvements/fixes for run_local.sh 4c1ea055
* blog: use serial comma in long author lists 644a21fb
* internal/telemetry: hide event.Type a49f79bc
* internal/telemetry: remove the ProcessEvent function f207553f
* internal/telemetry: replace TagSet with TagMap and TagPointer 224c947c
* internal/telemetry: change Exporter to be a function type. 62abcc1d
* internal/lsp/regtest: remove redundant T and ctx params from regtest funcs 1fc30e1f
* go/packages: add test for golang/go#37971 cc38525d
* internal/lsp/fake: add regexp search and replace 4c83a7e0
* internal/lsp: print view-specific environment 6fc5d0bc
* internal/lsp: stop showing workspace misconfiguration message a5e5fedf
* internal/lsp: never reload command-line-arguments directly 6fb6f5a9
* internal/lsp: fix nil pointer in 'go mod why' logic bbbf714b
* internal/telemetry/export/ocagent: add traces to tutorial 5c746ccf
* internal/telemetry/export/ocagent: update metrics tutorial to use the event system dbf25ea2
* go/analysis/passes/printf: warn against using %v verb in Error() methods a576cf52
* internal/lsp/source: prefer unexported and non-func candidates ef1313dc
* internal/lsp: be more careful about showing workspace misconfig message 8849913b
* present: test Markdown & fix splitting of pre blocks e609210b
* present: add end-to-end rendering test e41bc026
* internal/lsp: fix nil pointer in renaming to "error" 18ea2c8f
* internal/telemetry: switch metrics to use the event system 8dcfad9e
* internal/telemetry: switch metrics to use only the public API 326edff2
* internal/telemetry: replace event.TagList with event.TagSet b378960d
* internal/lsp: remove completion commands 0d839f3c
* internal/telemetry/export/ocagent: update metric tutorial to use oragent 268ba720
* internal/jsonrpc2: remove unnecessary Log comment from Handler interface 2f9d11aa
* internal/lsp/cmd: fix definition test to run independently 521f4a0c
* gopls/doc: add documentation for "local" configuration c97a9db7
* internal/lsp: fix errors found by staticcheck 9a0fabac
* blog: use first OldURL to generate atom feed ID ba25ddc8
* internal/telemetry: add type safe tag keys 540150da
* internal/telemetry: delete the event.TagOf method d7fc2cf5
* internal/lsp: move the telemetry package 04208b9e
* internal/telemetry: change ocagent test to use the standard telemetry methods 9dec35b5
* internal/telemetry: allow ProcessEvent to modify the event cb106d26
* internal/lsp: move the operation key to the telemetry package 9fceb114
* internal/lsp/source: fix literal completions in variadic args 11a475a5
* internal/lsp/source: optimize enumeration of a type's fields 613a0345
* cmd/compilebench: report rss measurement dba9bee0
* present2md: fix depth count for blogs with sections 2944c61d
* present: fix Markdown bugs 4d864399
* present: add OldURL metadata and use for redirects in blog b304dfc3
* x/tools/gopls: 'go generate' should use $/progress if available cf1dd6fc
* internal/lsp: fix breadcrumbs when inside of a method d05f4d6e
* internal/lsp: fix code.ts to generate progress and *TextEdit 827390e9
myitcv added a commit to govim/govim that referenced this issue Mar 31, 2020
* internal/gocommand: don't delete command's environment 3db5fc6b
* internal/lsp/cache: validate workspace path case 82bb8936
* internal/gocommand: only set working dir if it's not empty 8faa90c2
* internal/lsp/analysis: add quickfix for "no new vars on left side" eabff7e0
* go/packages: add a workaround for different import stacks between go versions d190e260
* go/analysis/passes/unreachable: add suggested-fix to remove dead code c12078ef
* internal/lsp/analysis: add quickfix for "no result values expected" f4fcf867
* internal/lsp/source: remove unused parameters from functions afab6edf
* internal/lsp/cmd: add a flag to disable telemetry 17a19b5f
* internal/lsp/analysis: add quickfix for undeclared variable 8f81e2e6
* internal/lsp: add support for type error analyzers 42235f63
* internal/lsp: refactor references/rename/implementations eca45d48
* internal/lsp/hooks: enable staticcheck hooks 8db92c5f
* internal/lsp/analysis: add simplify-slice pass from "gofmt -s" 5d86d385
* internal/lsp/analysis: add simplify-composite-lit pass from "gofmt -s" e428a8ec
* internal/lsp/analysis: add pass for unused parameters 88b9c284
* internal/lsp/analysis: add simplify-range pass from "gofmt -s" 94fe02cb
* internal/lsp: add support for sourceFixAll analyzers e46a7b92
* tools/gopls: add cmd support for workspace_symbol d58d27dc
* go/analysis/analysistest: expand testing to handle suggested fixes b1df9901
* internal/lsp: change disabledAnalyses setting to be general 02a6ca6d
* internal/lsp: avoid possible nil pointer in references/rename 52ff224b
* internal/telemetry: render trace tags using typed keys c9942794
* internal/telemetry: convert attributes using the key type 1386b938
* internal/telemetry: make metrics take a strongly typed key 12492730
* internal/telemetry: normalize the event reciever names to all use ev 063d392f
* internal/telemetry: improve the telemetry benchmark 8f75b710
* lsp/source: create zero value ast.Exprs e2e2519b
* internal/lsp: remove command-line-arguments as a workspace package f53864d0
* gopls/integration/govim: improvements/fixes for run_local.sh 4c1ea055
* blog: use serial comma in long author lists 644a21fb
* internal/telemetry: hide event.Type a49f79bc
* internal/telemetry: remove the ProcessEvent function f207553f
* internal/telemetry: replace TagSet with TagMap and TagPointer 224c947c
* internal/telemetry: change Exporter to be a function type. 62abcc1d
* internal/lsp/regtest: remove redundant T and ctx params from regtest funcs 1fc30e1f
* go/packages: add test for golang/go#37971 cc38525d
* internal/lsp/fake: add regexp search and replace 4c83a7e0
* internal/lsp: print view-specific environment 6fc5d0bc
* internal/lsp: stop showing workspace misconfiguration message a5e5fedf
* internal/lsp: never reload command-line-arguments directly 6fb6f5a9
* internal/lsp: fix nil pointer in 'go mod why' logic bbbf714b
* internal/telemetry/export/ocagent: add traces to tutorial 5c746ccf
* internal/telemetry/export/ocagent: update metrics tutorial to use the event system dbf25ea2
* go/analysis/passes/printf: warn against using %v verb in Error() methods a576cf52
* internal/lsp/source: prefer unexported and non-func candidates ef1313dc
* internal/lsp: be more careful about showing workspace misconfig message 8849913b
* present: test Markdown & fix splitting of pre blocks e609210b
* present: add end-to-end rendering test e41bc026
* internal/lsp: fix nil pointer in renaming to "error" 18ea2c8f
* internal/telemetry: switch metrics to use the event system 8dcfad9e
* internal/telemetry: switch metrics to use only the public API 326edff2
* internal/telemetry: replace event.TagList with event.TagSet b378960d
* internal/lsp: remove completion commands 0d839f3c
* internal/telemetry/export/ocagent: update metric tutorial to use oragent 268ba720
* internal/jsonrpc2: remove unnecessary Log comment from Handler interface 2f9d11aa
* internal/lsp/cmd: fix definition test to run independently 521f4a0c
* gopls/doc: add documentation for "local" configuration c97a9db7
* internal/lsp: fix errors found by staticcheck 9a0fabac
* blog: use first OldURL to generate atom feed ID ba25ddc8
* internal/telemetry: add type safe tag keys 540150da
* internal/telemetry: delete the event.TagOf method d7fc2cf5
* internal/lsp: move the telemetry package 04208b9e
* internal/telemetry: change ocagent test to use the standard telemetry methods 9dec35b5
* internal/telemetry: allow ProcessEvent to modify the event cb106d26
* internal/lsp: move the operation key to the telemetry package 9fceb114
* internal/lsp/source: fix literal completions in variadic args 11a475a5
* internal/lsp/source: optimize enumeration of a type's fields 613a0345
* cmd/compilebench: report rss measurement dba9bee0
* present2md: fix depth count for blogs with sections 2944c61d
* present: fix Markdown bugs 4d864399
* present: add OldURL metadata and use for redirects in blog b304dfc3
* x/tools/gopls: 'go generate' should use $/progress if available cf1dd6fc
* internal/lsp: fix breadcrumbs when inside of a method d05f4d6e
* internal/lsp: fix code.ts to generate progress and *TextEdit 827390e9
myitcv added a commit to govim/govim that referenced this issue Mar 31, 2020
* gopls/integration/govim: revert back to using the latest govim a30bf2db
* internal/lsp: add a reg test to test "go mod init" e18c1c42
* internal/lsp: avoid logging context cancellation a7c0594f
* internal/telemetry: give Event a custom implementation of TagMap a42d6a35
* internal/telemetry: removing the IsEmpty method of TagMap 3b4a2bfd
* internal/telemetry: add a noop exporter benchmark 4edcf529
* internal/lsp: rewrite the stats using the newer telemetry features 80f63e2b
* internal/telemetry: add a synchronization to telemetry 657a6521
* internal/gocommand: fix environment on Windows f8bfb4ee
* internal/lsp/tests: remove ellipses from test names 31583a0d
* internal/lsp: fix view rebuilding when `go mod init` runs 9c79f685
* gopls/integration/govim: fix govim tests without a go.mod file 046453f0
* x/tools/present: point to instagram sted twitter for Renee French fa3cc9ee
* internal/telemetry: minor improvement to span events fd4102a8
* internal/telemetry: add fast non variadic event functions 36db5297
* internal/telemetry: use tags instead of special event fields. f61d083d
* internal/telemetry: change tag to use type specific storage f8bbb569
* internal/gocommand: don't delete command's environment 3db5fc6b
* internal/lsp/cache: validate workspace path case 82bb8936
* internal/gocommand: only set working dir if it's not empty 8faa90c2
* internal/lsp/analysis: add quickfix for "no new vars on left side" eabff7e0
* go/packages: add a workaround for different import stacks between go versions d190e260
* go/analysis/passes/unreachable: add suggested-fix to remove dead code c12078ef
* internal/lsp/analysis: add quickfix for "no result values expected" f4fcf867
* internal/lsp/source: remove unused parameters from functions afab6edf
* internal/lsp/cmd: add a flag to disable telemetry 17a19b5f
* internal/lsp/analysis: add quickfix for undeclared variable 8f81e2e6
* internal/lsp: add support for type error analyzers 42235f63
* internal/lsp: refactor references/rename/implementations eca45d48
* internal/lsp/hooks: enable staticcheck hooks 8db92c5f
* internal/lsp/analysis: add simplify-slice pass from "gofmt -s" 5d86d385
* internal/lsp/analysis: add simplify-composite-lit pass from "gofmt -s" e428a8ec
* internal/lsp/analysis: add pass for unused parameters 88b9c284
* internal/lsp/analysis: add simplify-range pass from "gofmt -s" 94fe02cb
* internal/lsp: add support for sourceFixAll analyzers e46a7b92
* tools/gopls: add cmd support for workspace_symbol d58d27dc
* go/analysis/analysistest: expand testing to handle suggested fixes b1df9901
* internal/lsp: change disabledAnalyses setting to be general 02a6ca6d
* internal/lsp: avoid possible nil pointer in references/rename 52ff224b
* internal/telemetry: render trace tags using typed keys c9942794
* internal/telemetry: convert attributes using the key type 1386b938
* internal/telemetry: make metrics take a strongly typed key 12492730
* internal/telemetry: normalize the event reciever names to all use ev 063d392f
* internal/telemetry: improve the telemetry benchmark 8f75b710
* lsp/source: create zero value ast.Exprs e2e2519b
* internal/lsp: remove command-line-arguments as a workspace package f53864d0
* gopls/integration/govim: improvements/fixes for run_local.sh 4c1ea055
* blog: use serial comma in long author lists 644a21fb
* internal/telemetry: hide event.Type a49f79bc
* internal/telemetry: remove the ProcessEvent function f207553f
* internal/telemetry: replace TagSet with TagMap and TagPointer 224c947c
* internal/telemetry: change Exporter to be a function type. 62abcc1d
* internal/lsp/regtest: remove redundant T and ctx params from regtest funcs 1fc30e1f
* go/packages: add test for golang/go#37971 cc38525d
* internal/lsp/fake: add regexp search and replace 4c83a7e0
* internal/lsp: print view-specific environment 6fc5d0bc
* internal/lsp: stop showing workspace misconfiguration message a5e5fedf
* internal/lsp: never reload command-line-arguments directly 6fb6f5a9
* internal/lsp: fix nil pointer in 'go mod why' logic bbbf714b
* internal/telemetry/export/ocagent: add traces to tutorial 5c746ccf
* internal/telemetry/export/ocagent: update metrics tutorial to use the event system dbf25ea2
* go/analysis/passes/printf: warn against using %v verb in Error() methods a576cf52
* internal/lsp/source: prefer unexported and non-func candidates ef1313dc
* internal/lsp: be more careful about showing workspace misconfig message 8849913b
* present: test Markdown & fix splitting of pre blocks e609210b
* present: add end-to-end rendering test e41bc026
* internal/lsp: fix nil pointer in renaming to "error" 18ea2c8f
* internal/telemetry: switch metrics to use the event system 8dcfad9e
* internal/telemetry: switch metrics to use only the public API 326edff2
* internal/telemetry: replace event.TagList with event.TagSet b378960d
* internal/lsp: remove completion commands 0d839f3c
* internal/telemetry/export/ocagent: update metric tutorial to use oragent 268ba720
* internal/jsonrpc2: remove unnecessary Log comment from Handler interface 2f9d11aa
* internal/lsp/cmd: fix definition test to run independently 521f4a0c
* gopls/doc: add documentation for "local" configuration c97a9db7
* internal/lsp: fix errors found by staticcheck 9a0fabac
* blog: use first OldURL to generate atom feed ID ba25ddc8
* internal/telemetry: add type safe tag keys 540150da
* internal/telemetry: delete the event.TagOf method d7fc2cf5
* internal/lsp: move the telemetry package 04208b9e
* internal/telemetry: change ocagent test to use the standard telemetry methods 9dec35b5
* internal/telemetry: allow ProcessEvent to modify the event cb106d26
* internal/lsp: move the operation key to the telemetry package 9fceb114
* internal/lsp/source: fix literal completions in variadic args 11a475a5
* internal/lsp/source: optimize enumeration of a type's fields 613a0345
* cmd/compilebench: report rss measurement dba9bee0
* present2md: fix depth count for blogs with sections 2944c61d
* present: fix Markdown bugs 4d864399
* present: add OldURL metadata and use for redirects in blog b304dfc3
* x/tools/gopls: 'go generate' should use $/progress if available cf1dd6fc
* internal/lsp: fix breadcrumbs when inside of a method d05f4d6e
* internal/lsp: fix code.ts to generate progress and *TextEdit 827390e9
myitcv added a commit to govim/govim that referenced this issue Apr 2, 2020
* internal/lsp: add goreturns like functionality as quickfix 09944062
* internal/lsp: refactor and propagate errors from code actions 9d5940d4
* go.mod: upgrade goldmark dependency to fix js/wasm build ac2e9568
* gopls/integration/govim: revert back to using the latest govim a30bf2db
* internal/lsp: add a reg test to test "go mod init" e18c1c42
* internal/lsp: avoid logging context cancellation a7c0594f
* internal/telemetry: give Event a custom implementation of TagMap a42d6a35
* internal/telemetry: removing the IsEmpty method of TagMap 3b4a2bfd
* internal/telemetry: add a noop exporter benchmark 4edcf529
* internal/lsp: rewrite the stats using the newer telemetry features 80f63e2b
* internal/telemetry: add a synchronization to telemetry 657a6521
* internal/gocommand: fix environment on Windows f8bfb4ee
* internal/lsp/tests: remove ellipses from test names 31583a0d
* internal/lsp: fix view rebuilding when `go mod init` runs 9c79f685
* gopls/integration/govim: fix govim tests without a go.mod file 046453f0
* x/tools/present: point to instagram sted twitter for Renee French fa3cc9ee
* internal/telemetry: minor improvement to span events fd4102a8
* internal/telemetry: add fast non variadic event functions 36db5297
* internal/telemetry: use tags instead of special event fields. f61d083d
* internal/telemetry: change tag to use type specific storage f8bbb569
* internal/gocommand: don't delete command's environment 3db5fc6b
* internal/lsp/cache: validate workspace path case 82bb8936
* internal/gocommand: only set working dir if it's not empty 8faa90c2
* internal/lsp/analysis: add quickfix for "no new vars on left side" eabff7e0
* go/packages: add a workaround for different import stacks between go versions d190e260
* go/analysis/passes/unreachable: add suggested-fix to remove dead code c12078ef
* internal/lsp/analysis: add quickfix for "no result values expected" f4fcf867
* internal/lsp/source: remove unused parameters from functions afab6edf
* internal/lsp/cmd: add a flag to disable telemetry 17a19b5f
* internal/lsp/analysis: add quickfix for undeclared variable 8f81e2e6
* internal/lsp: add support for type error analyzers 42235f63
* internal/lsp: refactor references/rename/implementations eca45d48
* internal/lsp/hooks: enable staticcheck hooks 8db92c5f
* internal/lsp/analysis: add simplify-slice pass from "gofmt -s" 5d86d385
* internal/lsp/analysis: add simplify-composite-lit pass from "gofmt -s" e428a8ec
* internal/lsp/analysis: add pass for unused parameters 88b9c284
* internal/lsp/analysis: add simplify-range pass from "gofmt -s" 94fe02cb
* internal/lsp: add support for sourceFixAll analyzers e46a7b92
* tools/gopls: add cmd support for workspace_symbol d58d27dc
* go/analysis/analysistest: expand testing to handle suggested fixes b1df9901
* internal/lsp: change disabledAnalyses setting to be general 02a6ca6d
* internal/lsp: avoid possible nil pointer in references/rename 52ff224b
* internal/telemetry: render trace tags using typed keys c9942794
* internal/telemetry: convert attributes using the key type 1386b938
* internal/telemetry: make metrics take a strongly typed key 12492730
* internal/telemetry: normalize the event reciever names to all use ev 063d392f
* internal/telemetry: improve the telemetry benchmark 8f75b710
* lsp/source: create zero value ast.Exprs e2e2519b
* internal/lsp: remove command-line-arguments as a workspace package f53864d0
* gopls/integration/govim: improvements/fixes for run_local.sh 4c1ea055
* blog: use serial comma in long author lists 644a21fb
* internal/telemetry: hide event.Type a49f79bc
* internal/telemetry: remove the ProcessEvent function f207553f
* internal/telemetry: replace TagSet with TagMap and TagPointer 224c947c
* internal/telemetry: change Exporter to be a function type. 62abcc1d
* internal/lsp/regtest: remove redundant T and ctx params from regtest funcs 1fc30e1f
* go/packages: add test for golang/go#37971 cc38525d
* internal/lsp/fake: add regexp search and replace 4c83a7e0
* internal/lsp: print view-specific environment 6fc5d0bc
* internal/lsp: stop showing workspace misconfiguration message a5e5fedf
* internal/lsp: never reload command-line-arguments directly 6fb6f5a9
* internal/lsp: fix nil pointer in 'go mod why' logic bbbf714b
* internal/telemetry/export/ocagent: add traces to tutorial 5c746ccf
* internal/telemetry/export/ocagent: update metrics tutorial to use the event system dbf25ea2
* go/analysis/passes/printf: warn against using %v verb in Error() methods a576cf52
* internal/lsp/source: prefer unexported and non-func candidates ef1313dc
* internal/lsp: be more careful about showing workspace misconfig message 8849913b
* present: test Markdown & fix splitting of pre blocks e609210b
* present: add end-to-end rendering test e41bc026
* internal/lsp: fix nil pointer in renaming to "error" 18ea2c8f
* internal/telemetry: switch metrics to use the event system 8dcfad9e
* internal/telemetry: switch metrics to use only the public API 326edff2
* internal/telemetry: replace event.TagList with event.TagSet b378960d
* internal/lsp: remove completion commands 0d839f3c
* internal/telemetry/export/ocagent: update metric tutorial to use oragent 268ba720
* internal/jsonrpc2: remove unnecessary Log comment from Handler interface 2f9d11aa
* internal/lsp/cmd: fix definition test to run independently 521f4a0c
* gopls/doc: add documentation for "local" configuration c97a9db7
* internal/lsp: fix errors found by staticcheck 9a0fabac
* blog: use first OldURL to generate atom feed ID ba25ddc8
* internal/telemetry: add type safe tag keys 540150da
* internal/telemetry: delete the event.TagOf method d7fc2cf5
* internal/lsp: move the telemetry package 04208b9e
* internal/telemetry: change ocagent test to use the standard telemetry methods 9dec35b5
* internal/telemetry: allow ProcessEvent to modify the event cb106d26
* internal/lsp: move the operation key to the telemetry package 9fceb114
* internal/lsp/source: fix literal completions in variadic args 11a475a5
* internal/lsp/source: optimize enumeration of a type's fields 613a0345
* cmd/compilebench: report rss measurement dba9bee0
* present2md: fix depth count for blogs with sections 2944c61d
* present: fix Markdown bugs 4d864399
* present: add OldURL metadata and use for redirects in blog b304dfc3
* x/tools/gopls: 'go generate' should use $/progress if available cf1dd6fc
* internal/lsp: fix breadcrumbs when inside of a method d05f4d6e
* internal/lsp: fix code.ts to generate progress and *TextEdit 827390e9
myitcv added a commit to govim/govim that referenced this issue Apr 2, 2020
This also includes a skip in:

  cmd/govim/testdata/scenario_default/signs_unload_load_buffer.txt

whilst we await a fix for golang.org/issues/38136

* internal/lsp: add goreturns like functionality as quickfix 09944062
* internal/lsp: refactor and propagate errors from code actions 9d5940d4
* go.mod: upgrade goldmark dependency to fix js/wasm build ac2e9568
* gopls/integration/govim: revert back to using the latest govim a30bf2db
* internal/lsp: add a reg test to test "go mod init" e18c1c42
* internal/lsp: avoid logging context cancellation a7c0594f
* internal/telemetry: give Event a custom implementation of TagMap a42d6a35
* internal/telemetry: removing the IsEmpty method of TagMap 3b4a2bfd
* internal/telemetry: add a noop exporter benchmark 4edcf529
* internal/lsp: rewrite the stats using the newer telemetry features 80f63e2b
* internal/telemetry: add a synchronization to telemetry 657a6521
* internal/gocommand: fix environment on Windows f8bfb4ee
* internal/lsp/tests: remove ellipses from test names 31583a0d
* internal/lsp: fix view rebuilding when `go mod init` runs 9c79f685
* gopls/integration/govim: fix govim tests without a go.mod file 046453f0
* x/tools/present: point to instagram sted twitter for Renee French fa3cc9ee
* internal/telemetry: minor improvement to span events fd4102a8
* internal/telemetry: add fast non variadic event functions 36db5297
* internal/telemetry: use tags instead of special event fields. f61d083d
* internal/telemetry: change tag to use type specific storage f8bbb569
* internal/gocommand: don't delete command's environment 3db5fc6b
* internal/lsp/cache: validate workspace path case 82bb8936
* internal/gocommand: only set working dir if it's not empty 8faa90c2
* internal/lsp/analysis: add quickfix for "no new vars on left side" eabff7e0
* go/packages: add a workaround for different import stacks between go versions d190e260
* go/analysis/passes/unreachable: add suggested-fix to remove dead code c12078ef
* internal/lsp/analysis: add quickfix for "no result values expected" f4fcf867
* internal/lsp/source: remove unused parameters from functions afab6edf
* internal/lsp/cmd: add a flag to disable telemetry 17a19b5f
* internal/lsp/analysis: add quickfix for undeclared variable 8f81e2e6
* internal/lsp: add support for type error analyzers 42235f63
* internal/lsp: refactor references/rename/implementations eca45d48
* internal/lsp/hooks: enable staticcheck hooks 8db92c5f
* internal/lsp/analysis: add simplify-slice pass from "gofmt -s" 5d86d385
* internal/lsp/analysis: add simplify-composite-lit pass from "gofmt -s" e428a8ec
* internal/lsp/analysis: add pass for unused parameters 88b9c284
* internal/lsp/analysis: add simplify-range pass from "gofmt -s" 94fe02cb
* internal/lsp: add support for sourceFixAll analyzers e46a7b92
* tools/gopls: add cmd support for workspace_symbol d58d27dc
* go/analysis/analysistest: expand testing to handle suggested fixes b1df9901
* internal/lsp: change disabledAnalyses setting to be general 02a6ca6d
* internal/lsp: avoid possible nil pointer in references/rename 52ff224b
* internal/telemetry: render trace tags using typed keys c9942794
* internal/telemetry: convert attributes using the key type 1386b938
* internal/telemetry: make metrics take a strongly typed key 12492730
* internal/telemetry: normalize the event reciever names to all use ev 063d392f
* internal/telemetry: improve the telemetry benchmark 8f75b710
* lsp/source: create zero value ast.Exprs e2e2519b
* internal/lsp: remove command-line-arguments as a workspace package f53864d0
* gopls/integration/govim: improvements/fixes for run_local.sh 4c1ea055
* blog: use serial comma in long author lists 644a21fb
* internal/telemetry: hide event.Type a49f79bc
* internal/telemetry: remove the ProcessEvent function f207553f
* internal/telemetry: replace TagSet with TagMap and TagPointer 224c947c
* internal/telemetry: change Exporter to be a function type. 62abcc1d
* internal/lsp/regtest: remove redundant T and ctx params from regtest funcs 1fc30e1f
* go/packages: add test for golang/go#37971 cc38525d
* internal/lsp/fake: add regexp search and replace 4c83a7e0
* internal/lsp: print view-specific environment 6fc5d0bc
* internal/lsp: stop showing workspace misconfiguration message a5e5fedf
* internal/lsp: never reload command-line-arguments directly 6fb6f5a9
* internal/lsp: fix nil pointer in 'go mod why' logic bbbf714b
* internal/telemetry/export/ocagent: add traces to tutorial 5c746ccf
* internal/telemetry/export/ocagent: update metrics tutorial to use the event system dbf25ea2
* go/analysis/passes/printf: warn against using %v verb in Error() methods a576cf52
* internal/lsp/source: prefer unexported and non-func candidates ef1313dc
* internal/lsp: be more careful about showing workspace misconfig message 8849913b
* present: test Markdown & fix splitting of pre blocks e609210b
* present: add end-to-end rendering test e41bc026
* internal/lsp: fix nil pointer in renaming to "error" 18ea2c8f
* internal/telemetry: switch metrics to use the event system 8dcfad9e
* internal/telemetry: switch metrics to use only the public API 326edff2
* internal/telemetry: replace event.TagList with event.TagSet b378960d
* internal/lsp: remove completion commands 0d839f3c
* internal/telemetry/export/ocagent: update metric tutorial to use oragent 268ba720
* internal/jsonrpc2: remove unnecessary Log comment from Handler interface 2f9d11aa
* internal/lsp/cmd: fix definition test to run independently 521f4a0c
* gopls/doc: add documentation for "local" configuration c97a9db7
* internal/lsp: fix errors found by staticcheck 9a0fabac
* blog: use first OldURL to generate atom feed ID ba25ddc8
* internal/telemetry: add type safe tag keys 540150da
* internal/telemetry: delete the event.TagOf method d7fc2cf5
* internal/lsp: move the telemetry package 04208b9e
* internal/telemetry: change ocagent test to use the standard telemetry methods 9dec35b5
* internal/telemetry: allow ProcessEvent to modify the event cb106d26
* internal/lsp: move the operation key to the telemetry package 9fceb114
* internal/lsp/source: fix literal completions in variadic args 11a475a5
* internal/lsp/source: optimize enumeration of a type's fields 613a0345
* cmd/compilebench: report rss measurement dba9bee0
* present2md: fix depth count for blogs with sections 2944c61d
* present: fix Markdown bugs 4d864399
* present: add OldURL metadata and use for redirects in blog b304dfc3
* x/tools/gopls: 'go generate' should use $/progress if available cf1dd6fc
* internal/lsp: fix breadcrumbs when inside of a method d05f4d6e
* internal/lsp: fix code.ts to generate progress and *TextEdit 827390e9
myitcv added a commit to govim/govim that referenced this issue Apr 2, 2020
This also includes a skip in:

  cmd/govim/testdata/scenario_default/signs_unload_load_buffer.txt

whilst we await a fix for golang.org/issues/38136

* internal/lsp: add goreturns like functionality as quickfix 09944062
* internal/lsp: refactor and propagate errors from code actions 9d5940d4
* go.mod: upgrade goldmark dependency to fix js/wasm build ac2e9568
* gopls/integration/govim: revert back to using the latest govim a30bf2db
* internal/lsp: add a reg test to test "go mod init" e18c1c42
* internal/lsp: avoid logging context cancellation a7c0594f
* internal/telemetry: give Event a custom implementation of TagMap a42d6a35
* internal/telemetry: removing the IsEmpty method of TagMap 3b4a2bfd
* internal/telemetry: add a noop exporter benchmark 4edcf529
* internal/lsp: rewrite the stats using the newer telemetry features 80f63e2b
* internal/telemetry: add a synchronization to telemetry 657a6521
* internal/gocommand: fix environment on Windows f8bfb4ee
* internal/lsp/tests: remove ellipses from test names 31583a0d
* internal/lsp: fix view rebuilding when `go mod init` runs 9c79f685
* gopls/integration/govim: fix govim tests without a go.mod file 046453f0
* x/tools/present: point to instagram sted twitter for Renee French fa3cc9ee
* internal/telemetry: minor improvement to span events fd4102a8
* internal/telemetry: add fast non variadic event functions 36db5297
* internal/telemetry: use tags instead of special event fields. f61d083d
* internal/telemetry: change tag to use type specific storage f8bbb569
* internal/gocommand: don't delete command's environment 3db5fc6b
* internal/lsp/cache: validate workspace path case 82bb8936
* internal/gocommand: only set working dir if it's not empty 8faa90c2
* internal/lsp/analysis: add quickfix for "no new vars on left side" eabff7e0
* go/packages: add a workaround for different import stacks between go versions d190e260
* go/analysis/passes/unreachable: add suggested-fix to remove dead code c12078ef
* internal/lsp/analysis: add quickfix for "no result values expected" f4fcf867
* internal/lsp/source: remove unused parameters from functions afab6edf
* internal/lsp/cmd: add a flag to disable telemetry 17a19b5f
* internal/lsp/analysis: add quickfix for undeclared variable 8f81e2e6
* internal/lsp: add support for type error analyzers 42235f63
* internal/lsp: refactor references/rename/implementations eca45d48
* internal/lsp/hooks: enable staticcheck hooks 8db92c5f
* internal/lsp/analysis: add simplify-slice pass from "gofmt -s" 5d86d385
* internal/lsp/analysis: add simplify-composite-lit pass from "gofmt -s" e428a8ec
* internal/lsp/analysis: add pass for unused parameters 88b9c284
* internal/lsp/analysis: add simplify-range pass from "gofmt -s" 94fe02cb
* internal/lsp: add support for sourceFixAll analyzers e46a7b92
* tools/gopls: add cmd support for workspace_symbol d58d27dc
* go/analysis/analysistest: expand testing to handle suggested fixes b1df9901
* internal/lsp: change disabledAnalyses setting to be general 02a6ca6d
* internal/lsp: avoid possible nil pointer in references/rename 52ff224b
* internal/telemetry: render trace tags using typed keys c9942794
* internal/telemetry: convert attributes using the key type 1386b938
* internal/telemetry: make metrics take a strongly typed key 12492730
* internal/telemetry: normalize the event reciever names to all use ev 063d392f
* internal/telemetry: improve the telemetry benchmark 8f75b710
* lsp/source: create zero value ast.Exprs e2e2519b
* internal/lsp: remove command-line-arguments as a workspace package f53864d0
* gopls/integration/govim: improvements/fixes for run_local.sh 4c1ea055
* blog: use serial comma in long author lists 644a21fb
* internal/telemetry: hide event.Type a49f79bc
* internal/telemetry: remove the ProcessEvent function f207553f
* internal/telemetry: replace TagSet with TagMap and TagPointer 224c947c
* internal/telemetry: change Exporter to be a function type. 62abcc1d
* internal/lsp/regtest: remove redundant T and ctx params from regtest funcs 1fc30e1f
* go/packages: add test for golang/go#37971 cc38525d
* internal/lsp/fake: add regexp search and replace 4c83a7e0
* internal/lsp: print view-specific environment 6fc5d0bc
* internal/lsp: stop showing workspace misconfiguration message a5e5fedf
* internal/lsp: never reload command-line-arguments directly 6fb6f5a9
* internal/lsp: fix nil pointer in 'go mod why' logic bbbf714b
* internal/telemetry/export/ocagent: add traces to tutorial 5c746ccf
* internal/telemetry/export/ocagent: update metrics tutorial to use the event system dbf25ea2
* go/analysis/passes/printf: warn against using %v verb in Error() methods a576cf52
* internal/lsp/source: prefer unexported and non-func candidates ef1313dc
* internal/lsp: be more careful about showing workspace misconfig message 8849913b
* present: test Markdown & fix splitting of pre blocks e609210b
* present: add end-to-end rendering test e41bc026
* internal/lsp: fix nil pointer in renaming to "error" 18ea2c8f
* internal/telemetry: switch metrics to use the event system 8dcfad9e
* internal/telemetry: switch metrics to use only the public API 326edff2
* internal/telemetry: replace event.TagList with event.TagSet b378960d
* internal/lsp: remove completion commands 0d839f3c
* internal/telemetry/export/ocagent: update metric tutorial to use oragent 268ba720
* internal/jsonrpc2: remove unnecessary Log comment from Handler interface 2f9d11aa
* internal/lsp/cmd: fix definition test to run independently 521f4a0c
* gopls/doc: add documentation for "local" configuration c97a9db7
* internal/lsp: fix errors found by staticcheck 9a0fabac
* blog: use first OldURL to generate atom feed ID ba25ddc8
* internal/telemetry: add type safe tag keys 540150da
* internal/telemetry: delete the event.TagOf method d7fc2cf5
* internal/lsp: move the telemetry package 04208b9e
* internal/telemetry: change ocagent test to use the standard telemetry methods 9dec35b5
* internal/telemetry: allow ProcessEvent to modify the event cb106d26
* internal/lsp: move the operation key to the telemetry package 9fceb114
* internal/lsp/source: fix literal completions in variadic args 11a475a5
* internal/lsp/source: optimize enumeration of a type's fields 613a0345
* cmd/compilebench: report rss measurement dba9bee0
* present2md: fix depth count for blogs with sections 2944c61d
* present: fix Markdown bugs 4d864399
* present: add OldURL metadata and use for redirects in blog b304dfc3
* x/tools/gopls: 'go generate' should use $/progress if available cf1dd6fc
* internal/lsp: fix breadcrumbs when inside of a method d05f4d6e
* internal/lsp: fix code.ts to generate progress and *TextEdit 827390e9
flawedmatrix added a commit to cloudfoundry/diego-release that referenced this issue Sep 9, 2020
Submodule src/golang.org/x/crypto 69ecbb4d6..75b288015:
�[32m  > ssh: Make error message deterministic�[m
�[32m  > internal/wycheproof: add tests for hmac generation�[m
�[32m  > ssh: don't err out on channel request msgs to unknown channels�[m
�[32m  > Use boolean tag (0x01) for boolean type.�[m
�[32m  > poly1305: modify s390x assembly to implement MAC interface�[m
�[32m  > ssh: improve docs on Certificate.SignCert�[m
�[32m  > chacha20: don't panic encrypting the final blocks�[m
�[32m  > cryptobyte: handle AddASN1BigInt with -1�[m
�[32m  > poly1305: add (*MAC).Verify API and use it in chacha20poly1305�[m
�[32m  > chacha20: improve generic implementation performance�[m
�[32m  > Revert "chacha20: don't panic encrypting the final blocks"�[m
�[32m  > chacha20: don't panic encrypting the final blocks�[m
�[32m  > Update reference to CBC vulnerability in cipher.go�[m
�[32m  > chacha20poly1305: improve ExampleNewX�[m
�[32m  > ssh/terminal: handle ctrl+C, ctrl+F, ctrl+B�[m
�[32m  > ssh/agent: handle ed25519.PrivateKey by value in AddedKey�[m
�[32m  > blake2b,blake2s: clarify difference between blake2b and blake2s�[m
�[32m  > ssh: support aes256-cbc for passphrase-protected OpenSSH keys�[m
�[32m  > gitignore: remove obsolete reference to .hgignore in comment�[m
�[32m  > internal/wycheproof: update TestEcdsa to use ecdsa.VerifyASN1�[m
�[32m  > ssh: fix data race in dh group exchange sha256�[m
�[32m  > sha3: mark xorInUnaligned with go:nocheckptr�[m
�[32m  > acme: make WaitAuthorization return authorization errors consistently�[m
�[32m  > openpgp/packet: ensure that first partial packet is 512 bytes�[m
�[32m  > chacha20,poly1305,chacha20poly1305: set consistent build tags�[m
�[32m  > chacha20: add SetCounter method�[m
�[32m  > internal/wycheproof: add test for ChaCha20-Poly1305 AEAD encryption/decryption�[m
�[32m  > ssh: return an error for malformed ed25519 public keys rather than panic�[m
�[32m  > internal/wycheproof: add test for CBC decryption with PKCS#5 padding�[m
�[32m  > acme/autocert: remove unused listener struct field�[m
�[32m  > acme/autocert: fix TLS-ALPN identifier in tests�[m
�[32m  > acme: update TLS-ALPN identifier to the latest IANA assignment�[m
�[32m  > ssh/terminal: adjust ReadConsole rules on windows�[m
�[32m  > ssh: support ECDSA private keys in OpenSSH format�[m
�[32m  > internal/wycheproof: add test for hkdf key extraction�[m
�[32m  > ssh: support encrypted OpenSSH private keys�[m
Submodule src/golang.org/x/sys 915c9c3d4...bc7a7d42d:
�[32m  > internal/unsafeheader: fix typos in comments�[m
�[32m  > unix: replace blocked dup2 calls with dup3 on Android�[m
�[32m  > unix: use a type equivalent to reflect.SliceHeader to manipulate slices�[m
�[32m  > unix: add support for timerfd syscalls on Linux�[m
�[32m  > unix: switch to Ubuntu 20.04 in Dockerfile�[m
�[32m  > unix: on linux-arm64, prefer prlimit to {g,s}etrlimit�[m
�[32m  > unix: add SockaddrUnix tests on darwin and *bsd�[m
�[32m  > unix: add SockaddrUnix tests on linux�[m
�[32m  > Revert "unix: add openat2 for linux"�[m
�[32m  > unix: update Dockerfile to Go 1.14.2�[m
�[32m  > unix: fix name of generated zerrors_*.go in README�[m
�[32m  > unix: add nexthop types and consts�[m
�[32m  > unix: add openat2 for linux�[m
�[32m  > unix: update Dockerfile to Linux 5.6, and Go 1.13.9�[m
�[32m  > unix: add fs-verity consts and types�[m
�[32m  > unix: allocate signalNameMap with enough space�[m
�[32m  > unix: add readv/writev for illumos�[m
�[32m  > gitignore: remove obsolete reference to .hgignore in comment�[m
�[32m  > unix: regenerate all definitions on FreeBSD 12.1 on {386,amd64,arm64}�[m
�[32m  > unix: add disk ioctl constants for FreeBSD�[m
�[32m  > unix: only declare PtraceGetFsBase() on x86-based platforms�[m
�[32m  > unix: implement L2TPIP socket address on Linux�[m
�[32m  > unix: update BPF consts on linux�[m
�[32m  > cpu: add mips64x feature detection�[m
�[32m  > unix: merge duplicate code in ztypes_linux_*.go�[m
�[32m  > unix: merge duplicate code in zsyscall_linux_*.go�[m
�[32m  > unix: merge duplicate code in zerrors_linux_*.go�[m
�[32m  > unix: add tool for merging duplicate code�[m
�[32m  > unix: add adjtimex return constants�[m
�[32m  > unix: mark capget/capset as non-blocking�[m
�[32m  > unix: gofmt after CL 218799�[m
�[32m  > unix: add RTMGRP_* consts from rtnetlink.h�[m
�[32m  > unix: add InotifyInit for mips64�[m
�[32m  > unix: update Dockerfile to Linux 5.5, glibc 2.31, Go 1.13.7�[m
�[31m  < [release-branch.go1.14-std] cpu: restore doinit() in cpu_riscv64.go�[m
�[31m  < [release-branch.go1.14-std] cpu: add basic support for GOARCH=riscv64�[m
�[32m  > unix: use pipe2 syscall on OpenBSD�[m
�[32m  > unix: add new setfsuid/setfsgid wrappers�[m
�[32m  > unix: correct PtraceIoDesc and define PtraceIoDesc per GOARCH on freebsd�[m
�[32m  > unix: test (*FdSet).Clear in TestFdSet�[m
�[32m  > Revert "unix: fix Setfsuid and Setfsgid return values"�[m
�[32m  > unix: fix Setfsuid and Setfsgid return values�[m
�[32m  > cpu: don't read ARM64 registers on Android�[m
�[32m  > windows: add missing network-related constants�[m
�[32m  > unix: add missing chtmpdir in TestPpoll on openbsd�[m
�[32m  > unix: add SysctlClockinfo on dragonfly and freebsd�[m
�[32m  > unix: add Inet4Pktinfo type on solaris�[m
�[32m  > unix: test UtimesNanoAt on *bsd and solaris�[m
�[32m  > unix: don't zero out extra registers on riscv64 syscalls�[m
�[32m  > unix: add flags argument in //sys comments for Fstatvfs1 and Statvfs1 on netbsd�[m
�[32m  > unix: add Dup3 on netbsd and openbsd�[m
�[32m  > unix: correct build tag to define Getdirentries for darwin/arm with Go 1.11�[m
�[32m  > windows: added SO_RCVTIMEO and IPPROTO_ICMP constants�[m
�[32m  > unix: compare Stat_t members in TestFstatat�[m
�[32m  > unix: unify definition of func fcntl�[m
�[32m  > unix: use correct file name in comment�[m
�[32m  > unix: add Readv/Writev family of syscalls for linux�[m
�[32m  > windows: fix recvfrom and sendto data types�[m
�[32m  > unix: add PrctlRetInt, a Prctl variant that returns (int, error)�[m
�[32m  > unix: move functions Ptrace{Get|Set}RegSetArm64 to a separate file�[m
�[32m  > unix: replace readlink in mkall.sh with portable shell commands�[m
�[32m  > unix: add functions PtraceGetRegSetArm64 and PtraceSetRegSetArm64�[m
�[32m  > unix: add Statvfs and Fstatvfs on NetBSD�[m
�[32m  > cpu: support reading arm64 CPU feature registers�[m
�[32m  > windows: add Recvfrom and Sendto implementations�[m
�[32m  > unix: add new fscrypt declarations from Linux v5.4�[m
�[32m  > unix/linux: bump Linux and Go versions to latest stable releases�[m
�[32m  > unix: check number of ready file descriptors in TestPselect�[m
�[32m  > unix: don't fail TestSelect on EINTR from Select�[m
�[32m  > windows: add Get*PreferredUILanguages�[m
�[32m  > unix: use same TestSelect on all Unices�[m
�[32m  > unix: fix EINTR check in TestPselect�[m
�[32m  > unix: regenerate zerrors for AIX�[m
�[32m  > windows: revert security_windows.go change of CL 202177�[m
�[32m  > unix: don't fail TestPselect on EINTR from Pselect�[m
�[32m  > unix: fix EINTR check in TestClockNanosleep�[m
�[32m  > unix: don't fail TestClockNanosleep on EINTR from ClockNanosleep�[m
�[32m  > unix: fix EpollEvent padding on mips64{,le}�[m
�[32m  > unix: check correct CPU for being enabled in old mask in TestSchedSetaffinity�[m
�[32m  > cpu: don't redeclare doinit on ppc64le�[m
�[32m  > unix: accept time.Now()±1 as valid in TestTime�[m
�[32m  > cpu: add basic support for GOARCH=riscv64�[m
�[32m  > cpu: move empty doinit to own file�[m
�[32m  > unix: skip TestPselect on EINTR�[m
�[32m  > unix: test returned fd in TestEpoll�[m
�[32m  > windows: add empty.s to fix build with Go 1.11 and earlier�[m
�[32m  > unix: add TestEpoll on linux�[m
�[32m  > unix: add methods to manipulate *FdSet�[m
�[32m  > windows: add EnumProcesses function�[m
�[32m  > windows/registry: make '-gcflags=all=-d=checkptr' flag work�[m
�[32m  > unix: add devlink Linux generic netlink API constants�[m
�[32m  > unix: add missing HCI_CHANNEL_LOGGING constant�[m
�[32m  > windows/registry: remove TestWalkFullRegistry due to false assumptions�[m
�[32m  > unix: don't use non-existing uint128 type on freebsd/arm64�[m
�[32m  > windows/registry: allow for non-null terminated strings�[m
�[32m  > unix: make convertFromDirents11 checkptr safe�[m
�[32m  > unix: remove un-used ptrSize�[m
�[32m  > unix: regenerate darwin libc trampolines after CL 202837�[m
�[32m  > unix: __sysctl is sysctl on darwin�[m
�[32m  > unix: comply with -d=checkptr in Test_anyToSockaddr�[m
�[32m  > windows: respect permission bits on file opening�[m
�[32m  > unix: don't use 32-bit aligned access for cmsgAlignOf on dragonfly after ABI change�[m
�[32m  > windows, unix: fix wrong unsafe.Pointer alignment in syscall�[m
�[32m  > unix: avoid "just past the end" pointers in UnixRights�[m
�[32m  > windows: add GetDiskFreeSpaceEx function�[m
�[32m  > unix: update rtnetlink constants�[m
�[32m  > unix: add new func PtraceInterrupt on Linux�[m
�[32m  > windows: fix ShellExecute return condition�[m
�[32m  > windows: use go:linkname instead of assembly�[m
�[32m  > windows: add module handle functions�[m
�[32m  > unix: add new func PtraceSeize on Linux�[m
�[32m  > unix: add Klogset and related SYSLOG_ACTION_ constants�[m
�[32m  > windows/mkwinsyscall: import mksyscall_windows.go from go repo�[m
�[32m  > windows/svc: use CloseServiceHandle for service handles�[m
�[32m  > unix: avoid __getdirentries64 on darwin�[m
�[32m  > unix: update openbsd/{386,amd64.arm} MAP_* consts�[m
�[32m  > windows: add LockFileEx, UnlockFileEx system calls�[m
�[32m  > cpu: support ARM feature detection on Linux�[m
�[32m  > windows: revert breaking API changes from CL 196798, add new accessor funcs�[m
�[32m  > unix: add NFDBITS const on Linux, update TestSelect�[m
�[32m  > unix: fix Select to return number of ready fds on Solaris�[m
�[32m  > unix: re-generate Select on dragonfly�[m
�[32m  > windows: use pseudo handle constants to implement GetCurrentProcess�[m
�[32m  > unix: fix Select to return number of ready fds on Darwin and *BSD�[m
�[32m  > windows: make SID.String() conform to the String interface�[m
�[32m  > windows: do not return invalid error for psuedo-handle functions�[m
�[32m  > windows: use correct type for security attributes' descriptor member�[m
�[32m  > windows: support SECURITY_DESCRIPTOR and ACL for secured objects�[m
�[32m  > unix: add KEYCTL_RESTRICT_KEYRING capabilities�[m
�[32m  > windows: do not corrupt stack with larger boolean return value�[m
�[32m  > unix: redefine TIPC_WAIT_FOREVER as a uint32 value�[m
�[32m  > windows: add various functions for shutting down and logging out�[m
�[32m  > unix: update Dockerfile to Linux 5.3 and use ubuntu 19.04 base image�[m
�[32m  > unix: add IfaCacheinfo on linux�[m
�[32m  > unix: sort Linux-specific includes in linux/types.go and mkerrors.sh�[m
�[32m  > cpu: remove encoding/binary dependency�[m
�[32m  > unix: add Msghdr.SetIovlen for solaris/amd64�[m
�[32m  > unix: add Msghdr.SetIovlen�[m
�[32m  > unix: disable sysctl on iOS�[m
�[32m  > cpu: add a space before build tag comment�[m
�[32m  > unix: implement AF_TIPC sockets on Linux�[m
�[32m  > unix/linux: upgrade Docker build container to Go 1.13�[m
�[32m  > unix: add IoctlRetInt for Linux�[m
�[32m  > unix: fix coredump bit on aix/ppc64�[m
�[32m  > windows: open process tokens with duplicate access�[m
�[32m  > unix: unify Ioctl* functions�[m
�[32m  > windows: add mutex management functions�[m
�[32m  > unix: use bits.OnesCount64 instead of local copy�[m
�[32m  > windows: add Windows directory accessors�[m
�[32m  > windows: allow re-enabling priority boost�[m
�[32m  > windows: allow retrieving true version with RtlGetNtVersionNumbers�[m
�[32m  > unix/linux: update Dockerfile to glibc 2.30�[m
�[32m  > unix: disable ptrace on iOS�[m
�[32m  > unix: fix epoll_event padding on riscv64�[m
�[32m  > windows: add support for automatic delayed start in windows service�[m
�[32m  > unix: remove nacl build tag from dirent code�[m
�[32m  > unix: fix several staticcheck issues�[m
�[32m  > windows: add CTRL_CLOSE_EVENT, CTRL_LOGOFF_EVENT, and CTRL_SHUTDOWN_EVENT�[m
�[32m  > unix: add riscv64 tag to endian_little.go�[m
�[32m  > unix: add constants and types to work with Linux loop devices�[m
�[32m  > unix: update Dockerfile to Linux 5.2 and Go 1.13beta1�[m
�[32m  > unix: add missing dirent* helper functions on aix�[m
�[32m  > unix: don't use syscall.ParseDirent�[m
�[32m  > unix: add Getdents on dragonfly�[m
�[32m  > unix: use ParseDirent in testGetdirentries�[m
�[32m  > unix: fix nil pointer dereference in Getdirentries on 32-bit freebsd 12�[m
�[32m  > unix: add missing import in readdirent_getdirentries.go�[m
�[32m  > unix: fix Getdirentries emulation using Getdents on netbsd, openbsd�[m
�[32m  > unix: add test for Getdirentries�[m
�[32m  > unix: merge implementation for ReadDirent�[m
�[32m  > unix: add support to get/set Linux capabilities�[m
�[32m  > unix: correctly rename Val member in Sigset_t on freebsd�[m
�[32m  > unix: add ptrace support for FreeBSD�[m
�[32m  > unix: add AT_SYMLINK_FOLLOW const on openbsd�[m
�[32m  > unix: add AT_SYMLINK_FOLLOW const on netbsd�[m
�[32m  > windows: make CoTaskMemFree public�[m
�[32m  > unix: remove net dependency�[m
�[32m  > windows: allow determining real version number�[m
�[32m  > unix: fix Getdirentries emulation using Getdents on netbsd, openbsd�[m
�[32m  > unix: change the mksysnum master to point to stable/11 on freebsd�[m
�[32m  > windows: rename some arguments to follow MSDN�[m
�[32m  > windows: allow looking up well-known folder paths�[m
�[32m  > windows: add OpenThread function�[m
�[32m  > windows: add GetProcessId function�[m
�[32m  > unix: fix Getdirentries on 32-bit freebsd 12�[m
�[32m  > windows: expose GetCurrentProcessId function�[m
�[32m  > windows: allow determining if manager is locked�[m
�[32m  > windows: correct types and error values of internal GUID handling�[m
�[32m  > windows: add Thread32{First,Next} funcions�[m
�[32m  > windows: properly plumb sidtype into service creation�[m
�[32m  > windows: add GUID handling functions�[m
�[32m  > windows: add accessor for duration since boot�[m
�[32m  > windows: add constants for access rights�[m
�[32m  > windows: make it easier to iterate over groups and privileges�[m
�[32m  > windows: delete mkerrors.go�[m
�[32m  > unix: provide linux/riscv64 assembly for syscalls�[m
�[32m  > unix: fix TestFchmodat on illumos�[m
�[32m  > Revert "windows: make zsyscall_windows.go generatable on non-WSL env"�[m
�[32m  > windows: make zsyscall_windows.go generatable on non-WSL env�[m
�[32m  > windows: add GenerateConsoleCtrlEvent function�[m
�[32m  > plan9: modify mkall.sh to support zsyscall*.go files generation�[m
Submodule src/golang.org/x/text 4b67af870..afb9336c4:
�[32m  > number: fix typo�[m
�[32m  > unicode/bidi: fix typo in variable name�[m
�[32m  > unicode/norm: look for symbols in TestLinking�[m
�[32m  > message/pipeline: detect unknown keys�[m
�[32m  > message/pipeline: sort maps to generate predictable output�[m
�[32m  > message/pipeline: avoid writing to the testdata directory�[m
Submodule src/golang.org/x/tools c00d67ef2...c1934b75d:
�[32m  > go/analysis: improve error message for string(int) warning�[m
�[32m  > internal/lsp: un-export (*snapshot).Config to limit it to cache�[m
�[32m  > internal/gocommand: refactor API to always use *gocommand.Runner�[m
�[32m  > internal/lsp: plumb fillstruct through analysis�[m
�[32m  > internal/lsp/cache: don't skip x_tests�[m
�[32m  > internal/lsp/cache: hide diagnostics for ignored dirs�[m
�[32m  > internal/imports: continue past parse errors�[m
�[32m  > internal/lsp: port fill struct into analysis framework�[m
�[32m  > internal/lsp/debug: show per-package memory usage�[m
�[32m  > gopls/doc: fix composites analyzer name�[m
�[32m  > internal/lsp: await the initial workspace load in ModHandle�[m
�[32m  > internal/lsp: cancel the initial workspace load when view shuts down�[m
�[32m  > gopls/doc: update vscode-go GitHub link�[m
�[32m  > internal/lsp: fix the cache debug page�[m
�[32m  > internal/lsp: remove Ignore feature�[m
�[32m  > internal/lsp/cache: vendored packages are not workspace packages�[m
�[32m  > internal/lsp/cache: intermediate test variants aren't workspace packages�[m
�[32m  > internal/lsp: read files eagerly�[m
�[32m  > internal/lsp/regtest: fix context for shared server�[m
�[32m  > internal/jsonrpc2: try to suppress unnecessary errors on shutdown�[m
�[32m  > internal/lsp/regtest: print RPC logs when verbose output is enabled�[m
�[32m  > internal/lsp: bring lsp protocol stubs up to date�[m
�[32m  > internal/lsp/analysis/fillreturns: implement matching in fillreturns�[m
�[32m  > internal/lsp: decouple client and server debug�[m
�[32m  > internal/lsp/source: format fill_struct.go�[m
�[32m  > go/packages: move TypecheckCgo to packagesinternal�[m
�[32m  > go/packages: use go115UsesCgo instead of UsesCgo�[m
�[32m  > go/packages: add a mechanism for drivers to decline requests�[m
�[32m  > internal/testenv: add a NeedsGoBuild function�[m
�[32m  > Revert "cmd/goimports: return exit code 1 when -l finds files to change"�[m
�[32m  > internal/lsp/source: support labeled statements when highlighting loops�[m
�[32m  > go/analysis/internal/checker: don't filter facts of parameters�[m
�[32m  > internal/lsp: minor protocol cleanup�[m
�[32m  > internal/lsp: add a way for regtests to look at the diagnostics�[m
�[32m  > cmd/godoc: support automatic vendoring�[m
�[32m  > internal/lsp: remove debug line�[m
�[32m  > internal/lsp: fix update code lens and add a regression test�[m
�[32m  > internal/lsp: minor cleanup of the client and server debug�[m
�[32m  > internal/lsp: clean out the debug handling�[m
�[32m  > internal/lsp: now connection shutdown works, use it�[m
�[32m  > internal/lsp/analysis/fillreturns: broaden type equality�[m
�[32m  > go/analysis: suggest to users how to associate diagnostics with severities�[m
�[32m  > internal/lsp: support `go mod vendor` as a command�[m
�[32m  > internal/lsp: support code folding for composite literals�[m
�[32m  > internal/lsp: added a fill struct code action�[m
�[32m  > internal/lsp: change the hover test to use normal editor methods�[m
�[32m  > internal/jsonrpc2: change StreamServer to operate on Conn instead of Stream�[m
�[32m  > internal/jsonrpc2: change jsonrpc2.Conn to be an interface�[m
�[32m  > x/tools/internal/lsp/source: avoid panic in failing Highlight test�[m
�[32m  > internal/lsp/regtest: print completed work when a regtest fails�[m
�[32m  > internal/lsp: lift up workdone instrumentation to didModifyFiles�[m
�[32m  > internal/lsp: change exit handling�[m
�[32m  > internal/lsp: change logging stream to be a framer�[m
�[32m  > internal/jsonrpc2: switch to building streams on top of net.Conn�[m
�[32m  > internal/jsonrpc2: add the ability to close connections�[m
�[31m  < [release-branch.go1.14] go/analysis/passes/printf: allow %O in format strings�[m
�[32m  > internal/lsp/regtest: add a test that reproduces golang/go#38878�[m
�[32m  > internal/lsp: fix typo in code comment�[m
�[32m  > internal/lsp: fix a few staticcheck issues�[m
�[32m  > go/packages: handle x test overlays with no content�[m
�[32m  > internal/lsp: regtests for removing files outside the editor�[m
�[32m  > godoc/static: replace innerHTML with textContent�[m
�[32m  > all: remove version-specific test files�[m
�[32m  > all: run prettier on js and css�[m
�[32m  > all: add a section on JS/CSS formatting to README�[m
�[32m  > all: replace build tags in tests with testenv helper�[m
�[32m  > internal/lsp/source: sort cached package completions by relevance�[m
�[32m  > internal/lsp/source: fix cached package name matching�[m
�[32m  > internal/jsonrpc2: Add Close method to Stream.�[m
�[32m  > internal/fakenet: add a fake network connection�[m
�[32m  > internal/stack: add the leak test�[m
�[32m  > internal/stack: adding an internal stack dump parsing library�[m
�[32m  > go/analysis/passes/printf: allow %O in format strings�[m
�[32m  > internal/lsp: fix formatting edge cases (36824)�[m
�[32m  > Revert "go/internal/gcimporter: remove support for binary export data"�[m
�[32m  > cmd/cover: more clearly mark as deprecated�[m
�[32m  > internal/fastwalk: attempt Symlink tests on Windows�[m
�[32m  > internal/lsp/regtest: add a t.Skip for golang/go#36824 regtest�[m
�[32m  > internal/lsp/source: offer smart "append()" completions�[m
�[32m  > internal/lsp: fix new bug duplicating comments after includes�[m
�[32m  > cmd/goimports: return exit code 1 when -l finds files to change�[m
�[32m  > internal/lsp/cache: show update codelens in go.mod when -mod=vendor�[m
�[32m  > go/packages: add a Module field to the Package struct�[m
�[32m  > internal/lsp/fake: fix broken build due to conflicting changes�[m
�[32m  > internal/lsp: simplify and correct fixing imports for CodeAction�[m
�[32m  > gopls: update dependencies in the go.mod�[m
�[32m  > internal/lsp: fix docs on hover for var/const blocks�[m
�[32m  > internal/testenv: tolerate missing cgo as needed�[m
�[32m  > internal/lsp/regtest: Skip failing/flaky TestRegenerateCgo�[m
�[32m  > all: consolidate cgo requirement checks�[m
�[32m  > internal/lsp: add Regenerate Cgo code lens�[m
�[32m  > internal/imports: only check first segment for .�[m
�[32m  > internal/lsp/cmd: clean up remote flag descriptions�[m
�[32m  > internal/lsp/source: don't link to packages matching GOPRIVATE in hover�[m
�[32m  > internal/lsp/cache: pass UsesCgo to go/types�[m
�[32m  > go/packages: fix compatibility with gopackagesdriver�[m
�[32m  > go/packages: fix nocgo build�[m
�[32m  > internal/lsp: use TypecheckCgo when possible�[m
�[32m  > internal/lsp/regtest: don't build unix_test for Plan 9�[m
�[32m  > gopls/doc: update code lens documentation for the new `test` lens�[m
�[32m  > go/ssa/interp: avoid vet warning about string(int) conversion�[m
�[32m  > go/packages: enable UsesCgo in go/types�[m
�[32m  > internal/lsp: add `run test` code lens�[m
�[32m  > internal/lsp/regtest: add regression test for golang/go#36960�[m
�[32m  > internal/lsp/cmd: fix not displaying symbols result�[m
�[32m  > gopls/doc: remove company-lsp from emacs.md�[m
�[32m  > internal/lsp: rename workspace symbol test symbols to avoid clash�[m
�[32m  > internal/lsp/fake: define Symbol method on Editor�[m
�[32m  > internal/lsp: add config option for SymbolMatch�[m
�[32m  > internal/lsp/source: handle nil pointer in package name hover�[m
�[32m  > internal/lsp: change workspace symbols to use session config for matcher�[m
�[32m  > internal/lsp/cmd: use JSON output for the inspect subcommand�[m
�[32m  > internal/event: improve the logging of events�[m
�[32m  > internal/lsp: return in the default case in cloneExpr�[m
�[32m  > godoc/vfs/mapfs: panic on invalid New usage�[m
�[32m  > internal/lsp/source: fix cloneExpr for SelectorExprs�[m
�[32m  > gopls: add note to vscode doc about tags�[m
�[32m  > internal/lsp/source: return nothing for empty workspace symbol queries�[m
�[32m  > internal/testenv: check that external 'diff' tool is the GNU version�[m
�[32m  > internal/lsp/fake: fix some messiness around client hooks�[m
�[32m  > internal/lsp/source: use the setString method when setting options�[m
�[32m  > internal/lsp: support configurable codeLens�[m
�[32m  > internal/lsp: return early in completion where possible�[m
�[32m  > internal/lsp: fix caching issue with duplicate handles�[m
�[32m  > internal/lsp/cache: add an UnsavedFiles method to Session�[m
�[32m  > internal/testenv: make ExitIfSmallMachine apply to plan9-arm builders�[m
�[32m  > internal/lsp/protocol: send responses for cancelled requests�[m
�[32m  > internal/lsp/cache: avoid string(int) conversion�[m
�[32m  > internal/lsp/fake: check for file changes after running the Go command�[m
�[32m  > internal/lsp: make sure diagnostics only refer to existing files�[m
�[32m  > internal/lsp/regtest: add test for a GOPATH that's missing an element�[m
�[32m  > internal/lsp/fake: split up and rename the Workspace type�[m
�[32m  > go/types/objectpath: cache result of call to scope.Names�[m
�[32m  > internal/lsp/fake: skip TestWorkspace_CheckForFileChanges�[m
�[32m  > internal/lsp: fix incorrect format strings when calling event.Error�[m
�[32m  > internal/lsp/regtest: add support for testing generate commands�[m
�[32m  > internal/jsonrpc2: rename NewStream to NewRawStream�[m
�[32m  > internal/lsp: use %w in error wrappers�[m
�[32m  > internal/lsp: add comment completions for remaining exported symbols�[m
�[32m  > internal/lsp: avoid showing no-GOPATH-nor-module message so much�[m
�[32m  > internal/lsp/cmd: partially revert "add a flag to disable telemetry"�[m
�[32m  > internal/lsp: add a regtest for formatting one-line files�[m
�[32m  > internal/lsp: don't offer suggested fixes for generated files�[m
�[32m  > internal/event: fix the agent start time�[m
�[32m  > internal/lsp/source: improve unimported package member ranking�[m
�[32m  > Revert "internal/lsp: hide analysis diagnostics from generated files"�[m
�[32m  > internal/event: re-use ocagent exporters�[m
�[32m  > internal/jsonrpc2: move the lock into logCommon�[m
�[32m  > internal/lsp/regtest: rearrange runner.go for readability�[m
�[32m  > internal/lsp/regtest: cosmetic fixes�[m
�[32m  > internal/lsp: handle hover documentation for package declarations�[m
�[32m  > internal/lsp: hide analysis diagnostics from generated files�[m
�[32m  > internal/lsp/regtest: add a OnceMet combinator for Expectations�[m
�[32m  > internal/lsp/regtest: add expository package documentation�[m
�[32m  > internal/lsp/regtest: rename and document some symbols�[m
�[32m  > internal/lsp/regtest: extract Runner to a new file�[m
�[32m  > internal/lsp: instrument work done reporting to use in regtests�[m
�[32m  > internal/lsp: factor out progress reporting to a new WorkDone handle�[m
�[32m  > internal/lsp/cache: correctly split env vars�[m
�[32m  > internal/lsp: share common command line test functionality�[m
�[32m  > internal/lsp/fake: clean up Workspace.proxydir on close�[m
�[32m  > go/analysis/analysistest: support testing mutually exclusive suggested fixes�[m
�[32m  > go/internal/gcimporter: remove support for binary export data�[m
�[32m  > internal/lsp: handle different package names in signature help�[m
�[32m  > internal/lsp/cmd: fix the command line query for definition�[m
�[32m  > internal/lsp: fix docs on hover for ungrouped package variables�[m
�[32m  > internal/jsonrpc2: remove jsonrpc2.ErrDisconnected�[m
�[32m  > internal/event: remove the event.eventType type�[m
�[32m  > internal/event: don't print invalid labels�[m
�[32m  > internal/jsonrpc2: fix goroutine leak when listener is closed�[m
�[32m  > internal/lsp: fix panic when trying to log an event�[m
�[32m  > internal/lsp/source: fix false positive "..." in completions�[m
�[32m  > internal/lsp/source: add option for verbose work progress reporting�[m
�[32m  > internal/lsp: correctly handle type aliases when formatting�[m
�[32m  > internal/lsp/regtest: track outstanding work using the progress API�[m
�[32m  > go/packages/packagestest: dedupe based on note position�[m
�[32m  > cmd/goimports: set correct permissions on Windows�[m
�[32m  > internal/event: change event.At to be a private field�[m
�[32m  > internal/event: extract keys to their own package�[m
�[32m  > internal/event: move event/core.Tag to event/label.Label�[m
�[32m  > internal/event: renaming the main event API functions�[m
�[32m  > internal/telemetry: renaming to internal/event�[m
�[32m  > internal/lsp: refactor code for formatting signatures�[m
�[32m  > internal/gocommand: clean up docstring typos and staticcheck errors�[m
�[32m  > internal/lsp: add regtest for golang/go#37984�[m
�[32m  > internal/lsp/regtest: add regtest for golang/go#38207�[m
�[32m  > internal/lsp: add regtest for golang/go#38211�[m
�[32m  > internal/lsp/regtest: add regtest for golang/go#36951�[m
�[32m  > internal/lsp: fix broken lsp logs�[m
�[32m  > internal/telemetry/export: guard against NPE when merging tag maps�[m
�[32m  > internal/lsp: merge the in and out protocol logging functions�[m
�[32m  > internal/jsonrpc2: rewrite streams in terms of messages�[m
�[32m  > go/packages/packagestest: do not walk packages and their test variants�[m
�[32m  > internal/lsp/tests: provide SymbolInformation.Name in @symbol annotations�[m
�[32m  > internal/lsp: switch the protocol logger to use the new jsonrpc2 message types�[m
�[32m  > gopls: convert replay to use the new message types�[m
�[32m  > internal/jsonrpc2: add concrete types for Call, Notify and Response�[m
�[32m  > internal/jsonrpc2: clean up the tests�[m
�[32m  > internal/telemetry: add support for using telemetry in tests�[m
�[32m  > internal/imports: update stdlib index for 1.14�[m
�[32m  > internal/lsp/source: enable type error analyzers�[m
�[32m  > internal/lsp/regtest: enable test for golang/go#37195�[m
�[32m  > internal/lsp: fill in ServerInfo in the initialize response�[m
�[32m  > internal/lsp/regtest: generalize expectations beyond diagnostic messages�[m
�[32m  > internal/lsp/regtest: add support for custom test proxy data�[m
�[32m  > internal/lsp/fake: be more careful when closing the workspace�[m
�[32m  > go/packages: fix misbehavior when an overlay changes the package name�[m
�[32m  > internal/lsp: fix imports issue with duplicate package decl�[m
�[32m  > internal/telemetry: delete the unit package�[m
�[32m  > internal/telemetry: pack strings efficiently into tags�[m
�[32m  > internal/telemetry: add tag value formatting to the Key�[m
�[32m  > internal/telemetry: expose the TagOf* and Unpack* methods�[m
�[32m  > internal/lsp: fix erroneous documentation for struct fields�[m
�[32m  > go/analysis/analysistest: print unified diff for test failures�[m
�[32m  > internal/jsonrpc2: simplify request even futher�[m
�[32m  > internal/jsonrpc2: remove the OnReply callbacks�[m
�[32m  > internal/lsp/fake: don't lock while calling formatting�[m
�[32m  > internal/lsp/fake: correctly configure the fake editor�[m
�[32m  > internal/lsp/regtest: put testing.T back in the test func signature�[m
�[32m  > all: Fix spelling of Marshaling.�[m
�[32m  > gopls/internal/hooks: don't run staticcheck's SA5011�[m
�[32m  > internal/lsp/diff/difftest: ignore for GOOS=illumos�[m
�[32m  > go/analysis/analysistest: give up if we can't find golden file�[m
�[32m  > internal/proxydir: add an internal package for file-based proxies�[m
�[32m  > go/loader: remove check on ioutil.TestTempFile in TestStdlib�[m
�[32m  > internal/jsonrpc2: split reply from request�[m
�[32m  > internal/jsonrpc2: make the wire structures private�[m
�[32m  > internal/jsonrpc2: replace NewErrorf with fmt.Errorf�[m
�[32m  > internal/lsp: add an extra bounds check to avoid nil pointers�[m
�[32m  > go/ast/inspector: impose maximum capacity�[m
�[32m  > internal/lsp: remove the CallCanceller�[m
�[32m  > internal/lsp: improve ID formatting�[m
�[32m  > internal/lsp/cache: hide type errors if we fix up the AST�[m
�[32m  > internal/lsp: linkify IP addresses in textDocument/documentLink�[m
�[32m  > internal/lsp/regtest: add test for issue 32149 (wrong package)�[m
�[32m  > internal/lsp/regtest: output gopls logs on test failure�[m
�[32m  > internal/lsp/protocol: make loggingStream log writes concurrency-safe�[m
�[32m  > go/packages: replace darwin with netbsd in TestSizes�[m
�[32m  > internal/jsonrpc2: remove Direction�[m
�[32m  > internal/telemetry: a faster logging exporter�[m
�[32m  > internal/lsp: make tag iteration allocation-free�[m
�[32m  > internal/lsp/cache: add concurrency error check for go cmds�[m
�[32m  > internal/lsp: add type error fixes to existing diagnostics�[m
�[32m  > gopls/docs: adding nvim-lsp option in gopls README file�[m
�[32m  > internal/lsp: disable unimported completions for snippet tests�[m
�[32m  > internal/telemetry/event: fix error/value key type tag formatting�[m
�[32m  > internal/lsp: make sure that `gofmt -s` analyses don't modify AST�[m
�[32m  > internal/lsp: make event directly implement TagMap�[m
�[32m  > internal/telemetry: add an example of using the logging behaviour�[m
�[32m  > internal/lsp: use one context throughout completion�[m
�[32m  > internal/lsp: rewrite the rpc debug page�[m
�[32m  > internal/jsonrpc2: dont add any handlers by default�[m
�[32m  > internal/jsonrpc2: remove the legacy interface�[m
�[32m  > internal/jsonrpc2: break Run up into composable handlers�[m
�[32m  > internal/jsonrpc2: remove request state�[m
�[32m  > internal/jsonrpc2: make it an error to fail to call Reply�[m
�[32m  > internal/jsonrpc2: cleanup reply handling�[m
�[32m  > internal/jsonrpc2: change handler to a function type�[m
�[32m  > internal/lsp, go/packages: don't log context cancellation errors�[m
�[32m  > go/packages: only list current module's directory in determineRootDirs�[m
�[32m  > internal/lsp: use context with timeout in all RunProcessEnvFuncs�[m
�[32m  > internal/lsp/regtest: clean up module names and include github issues�[m
�[32m  > internal/lsp: fix references for transitive dependencies�[m
�[32m  > internal/lsp: handle non-file:// URIs gracefully�[m
�[32m  > internal/lsp/regtest: add functions to make diagnostic assertions easier�[m
�[32m  > internal/lsp: fix panic in builtin completions�[m
�[32m  > internal/lsp/source: propose loaded unimported package names first�[m
�[32m  > internal/lsp: temporarily disable type error analyzers by default�[m
�[32m  > internal/lsp: add a mutex around the view's options�[m
�[32m  > internal/lsp/source: add a replacement for experimentalDisabledAnalyses�[m
�[32m  > internal/lsp: add goreturns like functionality as quickfix�[m
�[32m  > internal/lsp: refactor and propagate errors from code actions�[m
�[32m  > go.mod: upgrade goldmark dependency to fix js/wasm build�[m
�[32m  > gopls/integration/govim: revert back to using the latest govim�[m
�[32m  > internal/lsp: add a reg test to test "go mod init"�[m
�[32m  > internal/lsp: avoid logging context cancellation�[m
�[32m  > internal/telemetry: give Event a custom implementation of TagMap�[m
�[32m  > internal/telemetry: removing the IsEmpty method of TagMap�[m
�[32m  > internal/telemetry: add a noop exporter benchmark�[m
�[32m  > internal/lsp: rewrite the stats using the newer telemetry features�[m
�[32m  > internal/telemetry: add a synchronization to telemetry�[m
�[32m  > internal/gocommand: fix environment on Windows�[m
�[32m  > internal/lsp/tests: remove ellipses from test names�[m
�[32m  > internal/lsp: fix view rebuilding when `go mod init` runs�[m
�[32m  > gopls/integration/govim: fix govim tests without a go.mod file�[m
�[32m  > x/tools/present: point to instagram sted twitter for Renee French�[m
�[32m  > internal/telemetry: minor improvement to span events�[m
�[32m  > internal/telemetry: add fast non variadic event functions�[m
�[32m  > internal/telemetry: use tags instead of special event fields.�[m
�[32m  > internal/telemetry: change tag to use type specific storage�[m
�[32m  > internal/gocommand: don't delete command's environment�[m
�[32m  > internal/lsp/cache: validate workspace path case�[m
�[32m  > internal/gocommand: only set working dir if it's not empty�[m
�[32m  > internal/lsp/analysis: add quickfix for "no new vars on left side"�[m
�[32m  > go/packages: add a workaround for different import stacks between go versions�[m
�[32m  > go/analysis/passes/unreachable: add suggested-fix to remove dead code�[m
�[32m  > internal/lsp/analysis: add quickfix for "no result values expected"�[m
�[32m  > internal/lsp/source: remove unused parameters from functions�[m
�[32m  > internal/lsp/cmd: add a flag to disable telemetry�[m
�[32m  > internal/lsp/analysis: add quickfix for undeclared variable�[m
�[32m  > internal/lsp: add support for type error analyzers�[m
�[32m  > internal/lsp: refactor references/rename/implementations�[m
�[32m  > internal/lsp/hooks: enable staticcheck hooks�[m
�[32m  > internal/lsp/analysis: add simplify-slice pass from "gofmt -s"�[m
�[32m  > internal/lsp/analysis: add simplify-composite-lit pass from "gofmt -s"�[m
�[32m  > internal/lsp/analysis: add pass for unused parameters�[m
�[32m  > internal/lsp/analysis: add simplify-range pass from "gofmt -s"�[m
�[32m  > internal/lsp: add support for sourceFixAll analyzers�[m
�[32m  > tools/gopls: add cmd support for workspace_symbol�[m
�[32m  > go/analysis/analysistest: expand testing to handle suggested fixes�[m
�[32m  > internal/lsp: change disabledAnalyses setting to be general�[m
�[32m  > internal/lsp: avoid possible nil pointer in references/rename�[m
�[32m  > internal/telemetry: render trace tags using typed keys�[m
�[32m  > internal/telemetry: convert attributes using the key type�[m
�[32m  > internal/telemetry: make metrics take a strongly typed key�[m
�[32m  > internal/telemetry: normalize the event reciever names to all use ev�[m
�[32m  > internal/telemetry: improve the telemetry benchmark�[m
�[32m  > lsp/source: create zero value ast.Exprs�[m
�[32m  > internal/lsp: remove command-line-arguments as a workspace package�[m
�[32m  > gopls/integration/govim: improvements/fixes for run_local.sh�[m
�[32m  > blog: use serial comma in long author lists�[m
�[32m  > internal/telemetry: hide event.Type�[m
�[32m  > internal/telemetry: remove the ProcessEvent function�[m
�[32m  > internal/telemetry: replace TagSet with TagMap and TagPointer�[m
�[32m  > internal/telemetry: change Exporter to be a function type.�[m
�[32m  > internal/lsp/regtest: remove redundant T and ctx params from regtest funcs�[m
�[32m  > go/packages: add test for golang/go#37971�[m
�[32m  > internal/lsp/fake: add regexp search and replace�[m
�[32m  > internal/lsp: print view-specific environment�[m
�[32m  > internal/lsp: stop showing workspace misconfiguration message�[m
�[32m  > internal/lsp: never reload command-line-arguments directly�[m
�[32m  > internal/lsp: fix nil pointer in 'go mod why' logic�[m
�[32m  > internal/telemetry/export/ocagent: add traces to tutorial�[m
�[32m  > internal/telemetry/export/ocagent: update metrics tutorial to use the event system�[m
�[32m  > go/analysis/passes/printf: warn against using %v verb in Error() methods�[m
�[32m  > internal/lsp/source: prefer unexported and non-func candidates�[m
�[32m  > internal/lsp: be more careful about showing workspace misconfig message�[m
�[32m  > present: test Markdown & fix splitting of pre blocks�[m
�[32m  > present: add end-to-end rendering test�[m
�[32m  > internal/lsp: fix nil pointer in renaming to "error"�[m
�[32m  > internal/telemetry: switch metrics to use the event system�[m
�[32m  > internal/telemetry: switch metrics to use only the public API�[m
�[32m  > internal/telemetry: replace event.TagList with event.TagSet�[m
�[32m  > internal/lsp: remove completion commands�[m
�[32m  > internal/telemetry/export/ocagent: update metric tutorial to use oragent�[m
�[32m  > internal/jsonrpc2: remove unnecessary Log comment from Handler interface�[m
�[32m  > internal/lsp/cmd: fix definition test to run independently�[m
�[32m  > gopls/doc: add documentation for "local" configuration�[m
�[32m  > internal/lsp: fix errors found by staticcheck�[m
�[32m  > blog: use first OldURL to generate atom feed ID�[m
�[32m  > internal/telemetry: add type safe tag keys�[m
�[32m  > internal/telemetry: delete the event.TagOf method�[m
�[32m  > internal/lsp: move the telemetry package�[m
�[32m  > internal/telemetry: change ocagent test to use the standard telemetry methods�[m
�[32m  > internal/telemetry: allow ProcessEvent to modify the event�[m
�[32m  > internal/lsp: move the operation key to the telemetry package�[m
�[32m  > internal/lsp/source: fix literal completions in variadic args�[m
�[32m  > internal/lsp/source: optimize enumeration of a type's fields�[m
�[32m  > cmd/compilebench: report rss measurement�[m
�[32m  > present2md: fix depth count for blogs with sections�[m
�[32m  > present: fix Markdown bugs�[m
�[32m  > present: add OldURL metadata and use for redirects in blog�[m
�[32m  > x/tools/gopls: 'go generate' should use $/progress if available�[m
�[32m  > internal/lsp: fix breadcrumbs when inside of a method�[m
�[32m  > internal/lsp: fix code.ts to generate progress and *TextEdit�[m
�[32m  > x/tools/gopls: run go generate through CodeLens�[m
�[32m  > internal/telemetry: split the ocagent tests from the support functions�[m
�[32m  > x/tools/gopls: add support for $/progress functionality�[m
�[32m  > gopls: update github.com/sergi/go-diff to v1.1.0�[m
�[32m  > internal/lsp/cache: fix typo�[m
�[32m  > cmd/present2md: add command to convert legacy present to Markdown-enabled present�[m
�[32m  > present: accept Markdown in present files�[m
�[32m  > present: record info in AST for reproducing present inputs�[m
�[32m  > present: improve error for bad author block�[m
�[32m  > present: allow line-wrapping of bullet list items�[m
�[32m  > gopls/doc: update daemon.md and remove 'experimental' caveats�[m
�[32m  > internal/lsp: clean up on Shutdown even if not initialized�[m
�[32m  > internal/lsp/lsprpc: expose configuration for auto-started daemon�[m
�[32m  > go/analysis/singlechecker: append a newline after "Flags:"�[m
�[32m  > internal/lsp/cmd: add an inspect verb�[m
�[32m  > godoc/static: update jquery.treeview to 1.4.2�[m
�[32m  > internal/lsp/source: offer loop keyword completions in range stmt�[m
�[32m  > internal/telemetry: convert key from string to struct�[m
�[32m  > internal/telemetry: use keys properly for benchmarks�[m
�[32m  > internal/telemetry: remove all the event aliases�[m
�[32m  > internal/lsp: migrate telemetry to using the event package�[m
�[32m  > internal/telemetry: unify the event handling to an event package�[m
�[32m  > internal/lsp/cache: remove parseGo semaphore�[m
�[32m  > all: run go generate�[m
�[32m  > internal/lsp/tests: fix WorkspaceSymbols tests�[m
�[32m  > go/analysis/passes/printf: give leeway for fmt.Formatter satisfaction�[m
�[32m  > internal/lsp/source: suppress keyword completions in "case" statement�[m
�[32m  > internal/lsp/source: fix completion in empty switch statements�[m
�[32m  > internal/telemetry: change detach to be an event�[m
�[32m  > internal/telemetry: add a stats benchmark�[m
�[32m  > go/packages: drop pruned packages in tests of import graph�[m
�[32m  > internal/lsp/source: avoid type checking in AllImportsFixes�[m
�[32m  > internal/lsp: change the type of CompletionItem.TextEdit back�[m
�[32m  > internal/lsp: suggest filing an issue if a warning is incorrect�[m
�[32m  > internal/lsp/source: offer completion "if err != nil { return err }"�[m
�[32m  > internal/lsp: bring generated protocol code up to date; stop corrupting logs�[m
�[32m  > internal/lsp/source: suppress completions in ellipsis�[m
�[32m  > internal/lsp/lsprpc: don't connect to sockets owned by different users�[m
�[32m  > gopls/integration/govim: update to go1.14 images�[m
�[32m  > internal/lsp/source: return location(s) for imported packages�[m
�[32m  > internal/lsp/source: support completing "range" keyword�[m
�[32m  > internal/lsp/source: complete keywords as types�[m
�[32m  > internal/lsp/cache/mod: return errors only within ModHandle and ModTidyHandle�[m
�[32m  > internal/lsp: support when hierarchicalDocumentSymbolSupport is false�[m
�[32m  > internal/telemetry: refactor the benchmark framework�[m
�[32m  > internal/lsp/debug: guard rpc stats with a Mutex�[m
�[32m  > internal/lsp/cmd: improve flexibility of suggested fixes�[m
�[32m  > internal/lsp: support textDocument/formatting for .mod extension�[m
�[32m  > internal/lsp/protocol: unmarshal to pointers when dispatching requests�[m
�[32m  > internal/lsp/lsprpc: use Setsid on POSIX GOOSes, to avoid SIGTERMs�[m
�[32m  > internal/lsp/cache: include session IDs in some cache keys�[m
�[32m  > internal/lsp/cache: fix NPE in fileWasSaved�[m
�[32m  > internal/tool: avoid editorialization�[m
�[32m  > internal/lsp: use standardised events for tagging�[m
�[32m  > internal/lsp/source: use logical filenames for workspace symbols�[m
�[32m  > internal/lsp/cache: attach ModTidyHandle to snapshot instance�[m
�[32m  > internal/telemetry: change tracing to be event based�[m
�[32m  > internal/telemetry: add simple tracing benchmarks�[m
�[32m  > internal/telemetry: move the benchmarks to the main package�[m
�[32m  > internal/telemetry: moving towards a unified event based exporter�[m
�[32m  > internal/telemetry: remove the concept of a Tagger�[m
�[32m  > internal/telemetry: use atomics to get the exporter�[m
�[32m  > internal/lsp: move the debug.Instance onto the Context�[m
�[32m  > internal/imports: don't set a logger unless the user has provided it�[m
�[32m  > all: upgrade outdated dependencies�[m
�[32m  > internal/lsp: fix active param in signature help�[m
�[32m  > internal/lsp: fix concurrent map read/write for missingmodules�[m
�[32m  > go/analysis/passes/errorsas: clarify message�[m
�[32m  > internal: rationalize debug logging�[m
�[32m  > internal/lsp/regtest: add a test for diagnostics on first file�[m
�[32m  > internal/lsp: add an upgrade all dependencies codelens�[m
�[32m  > internal/lsp/source: fix completion crash with untyped assignee�[m
�[32m  > internal/lsp/source: support inverse "implementations"�[m
�[32m  > internal/lsp/regtest: implement formatting and organizeImports�[m
�[32m  > internal/lsp/regtest: consolidate Env wrappers�[m
�[32m  > go/analysis/passes/nilness: detecting panic with provably nil values�[m
�[32m  > internal/lsp/debug: add nil checks in debug page�[m
�[32m  > internal/lsp/lsprpc: use localhost for remote gopls debug interface�[m
�[32m  > internal/telemetry: remove Flush method from exporter�[m
�[32m  > go/packages: drop imports of reflect in tests of import graph�[m
�[32m  > gopls/doc: update godoc.org to pkg.go.dev�[m
�[32m  > gopls/doc: add documentation for running gopls as a daemon�[m
�[32m  > internal/fastwalk: fix checkptr failure on Darwin�[m
�[32m  > internal/lsp/regtest: remove calls to t.Parallel()�[m
�[32m  > internal/lsp: mitigate possiibility of a slow code action�[m
�[32m  > internal/telemetry: removing the concept of exporter lists�[m
�[32m  > internal/lsp: remove unknown dependency from highlight tests�[m
�[32m  > internal/lsp/source: fix typo: identifer → identifier�[m
�[32m  > internal/lsp: replace mistaken "break" with "continue"�[m
�[32m  > internal/lsp: support textDocument/hover for .mod extension�[m
�[32m  > internal/lsp: support textDocument/documentLink for .mod extension�[m
�[32m  > internal/lsp: invalidate package IDs along with metadata�[m
�[32m  > internal/lsp/source: limit WorkspaceSymbols results�[m
�[32m  > internal/gocommand: kill gracefully�[m
�[32m  > all: consolidate invokeGo implementations�[m
�[32m  > go/ssa/interp: remove unused import�[m
�[32m  > go/ssa: disable recover2 testcase�[m
�[32m  > internal/lsp/regtest: clean-up and more error handling�[m
�[32m  > gopls: update staticcheck to 2020.1.3�[m
�[32m  > internal/imports: filepath.Clean module Dirs�[m
�[32m  > internal/lsp/lsprpc: wait for the handshake before running clientConn�[m
�[32m  > internal/lsp: add a test for internal imports handling�[m
�[32m  > internal/telemetry: add a benchmark with a null writer for comparison�[m
�[32m  > internal/lsp/lsprpc: add a 1m timeout to auto-started gopls�[m
�[32m  > internal/lsp/lsprpc: clean up client session on disconnection�[m
�[32m  > gopls/doc: Clear out fixed issues�[m
�[32m  > internal/jsonrpc2: add an idle timeout for stream serving�[m
�[32m  > internal/lsp/lsprpc: automatically resolve and start the remote gopls�[m
�[32m  > internal/lsp/lsprpc: add a handshake between forwarder and remote�[m
�[32m  > internal/lsp/debug: move all debug state onto the Instance�[m
�[32m  > internal/lsp/source: untangle completion type comparison�[m
�[32m  > Revert "Revert "go/analysis: add pass to check for impossible interface-to-interface type assertions""�[m
�[32m  > gopls: update Staticcheck to 2020.1.2�[m
�[32m  > internal/lsp: create more descriptive temp go.mod name�[m
�[32m  > internal/lsp/regtest: skip flaky TestGoToStdlibDefinition�[m
�[32m  > internal/lsp/source: improve completions at file scope�[m
�[32m  > internal/lsp/regtest: increase test timeout to 60s�[m
�[32m  > go/internal/gcimporter: update TestImportedTypes for BImportData removal�[m
�[32m  > internal/lsp/tests: fix regexp for removing links that contain versions�[m
�[32m  > go/analysis: add pass to check string(int) conversions�[m
�[32m  > internal/lsp: report use of disallowed internal packages�[m
�[32m  > internal/lsp: clear diagnostics for deleted files�[m
�[32m  > internal/lsp: add module versions from "go list" to pkg.go.dev links�[m
�[32m  > internal/lsp/cache: return concrete types where possible�[m
�[32m  > internal/lsp: limit diagnostics concurrency�[m
�[32m  > internal/jsonrpc2,internal/lsp/regtest: clean up some leaked tempfiles�[m
�[32m  > internal/jsonrpc2: support serving over unix domain sockets�[m
�[32m  > internal/lsp/lsprpc: add a forwarder handler�[m
�[32m  > internal/lsp/tests: fix reset of golden files�[m
�[32m  > internal/lsp/cache: kill unused func fixAccidentalDecl�[m
�[32m  > internal/span: handle URI escaping better�[m
�[32m  > internal/lsp/debug: drop memory debug threshold to 1GiB�[m
�[32m  > internal/lsp: add scheme checks to CodeLens�[m
�[32m  > internal/jsonrpc2/servertest: support both TCP and pipe connection�[m
�[32m  > internal/lsp: check for file URIs on LSP requests�[m
�[32m  > internal/span,lsp: disambiguate URIs, DocumentURIs, and paths�[m
�[32m  > internal/lsp/cache: parse go.mod file before running go mod tidy�[m
�[32m  > internal/lsp: fix error handling when getting go.mod codelens�[m
�[32m  > go/ssa: add DebugRef.Object�[m
�[32m  > internal/lsp/source: handle completing into variadic params�[m
�[32m  > internal/lsp/cache: fix crash fixing curlies near EOF�[m
�[32m  > internal/jsonrpc2: fix races in cancellation�[m
�[32m  > internal/lsp/lsprpc: add an LSP forwarder and regtest environment�[m
�[32m  > internal/lsp: add codelens for go.mod dependency upgrades�[m
�[32m  > internal/lsp/cache: improve completion after dangling selector�[m
�[32m  > internal/lsp/source: make matchers selectable in WorkspaceSymbols�[m
�[32m  > internal/lsp: fix diagnostics not clearing when creating new files�[m
�[32m  > internal/lsp: two trivial cleanups from CL 219077�[m
�[32m  > internal/lsp:  change return type of PrepareRename to *Range�[m
�[32m  > internal/lsp/cache: improve completion in init statements�[m
�[32m  > internal/lsp/cache: improve completion when missing opening curly�[m
�[32m  > internal/lsp: turn tempModfile flag on by default�[m
�[32m  > go/packages/packagestest: fix grouping to account for module versions�[m
�[32m  > internal/lsp/cache: add file contents to ParseGoHandle�[m
�[32m  > internal/lsp/source: fix completion crash in append()�[m
�[32m  > internal/lsp: remove nilness analyzer�[m
�[32m  > internal/lsp: ignore irrelevant on-disk changes�[m
�[32m  > internal/lsp/source: filter candidates when type name required�[m
�[32m  > Revert "go/analysis: add pass to check for impossible interface-to-interface type assertions"�[m
�[32m  > internal/lsp: disable nilness analyzer, unless staticcheck enabled�[m
�[32m  > internal/lsp: propagate file invalidations to all views�[m
�[32m  > internal/lsp/debug: fix early closure of logfile�[m
�[32m  > go/analysis: add pass to check for impossible interface-to-interface type assertions�[m
�[32m  > internal/lsp: support multi-dereferencing completion candidates�[m
�[32m  > internal/lsp/source: fix type modifier detection in composite literals�[m
�[32m  > internal/lsp/tests: fix missing period�[m
�[32m  > internal/lsp/source: limit to 5 unimported package name candidates�[m
�[32m  > internal/lsp/debug: write debug info for large goplses�[m
�[32m  > internal/imports: import packages from x/mod instead of internal copy�[m
�[32m  > internal/imports: change processEnv to use buildflags�[m
�[32m  > internal/lsp: move all debugging support to the debug package�[m
�[32m  > cmd/benchcmp: add deprecation notice�[m
�[32m  > internal/lsp/source: fix unimported member completion ranking�[m
�[32m  > internal/lsp/lsprpc: add test for definition outside of workspace�[m
�[32m  > internal/lsp/lsprpc: add test for empty diagnostics in deleted files�[m
�[32m  > internal/lsp/fake: add fakes for testing editor interaction�[m
�[32m  > internal/lsp: fix crash completing recursive pointer types�[m
�[32m  > internal/lsp/cache: refactor functions that return PackageHandles�[m
�[32m  > internal/lsp/source: export FindFileInpackage�[m
�[32m  > internal/lsp/source: default to full documentation for hover�[m
�[32m  > internal/lsp/tests: move workspace symbol test helpers functions into util.go�[m
�[32m  > internal/lsp/cache: hardcode parse modes instead of guessing them�[m
�[32m  > internal/lsp/source: eliminate setKind�[m
�[32m  > internal/lsp: don't use overlays from the session in the snapshot�[m
�[32m  > internal/lsp: build overlays through the snapshot�[m
�[32m  > internal/lsp/cache: don't type check types.Unsafe�[m
�[32m  > internal/lsp/cache: improve ModTidyHandle cache key�[m
�[32m  > fix(readme): expected comma�[m
�[32m  > internal/lsp: change debug instance to a struct�[m
�[32m  > internal/lsp: add quickfixes for missing dependencies in go.mod�[m
�[32m  > internal/lsp: refactor LSP server instantiation�[m
�[32m  > internal/lsp: move all of the test helpers functions into one file�[m
�[32m  > internal/lsp: export DiffSymbols to avoid duplication�[m
�[32m  > internal/lsp: don't return references for builtins�[m
�[32m  > internal/lsp: remove unnecessary source.SignatureInformation type�[m
�[32m  > go/packages/packagestest: do not overwrite existing go.mod file�[m
�[32m  > internal/lsp/tests: standardize testdata folder format�[m
�[32m  > internal/lsp: filter keyword completions in tests�[m
�[32m  > internal/lsp/source: improve completion after accidental keywords�[m
�[32m  > internal/lsp/source: improve completion involving multiple return values�[m
�[32m  > gopls/doc: update VS Code settings to correspond with current defaults�[m
�[32m  > internal/lsp: stop returning metadata from (*snapshot).load�[m
�[32m  > internal/imports: prevent self-imports in the stdlib�[m
�[32m  > internal/jsonrpc2: fix invalid invocations of Fatalf in goroutines�[m
�[32m  > internal/lsp: add support for workspace symbol�[m
�[32m  > internal/lsp: continue diagnostics if diagnosing go.mod fails�[m
�[32m  > gopls/integration/govim: switch to latest, and improve artifacts�[m
�[32m  > internal/lsp: determine parse mode based on workspace packages�[m
�[32m  > internal/lsp/tests: add severity parameter to @diag markers�[m
�[32m  > tools/gopls: add cmd support for prepare_rename�[m
�[32m  > internal/lsp/cache: use snapshot ID and view folder in ModTidyHandle key�[m
�[32m  > internal/imports: stop leaking listeners�[m
�[32m  > internal/span, internal/lsp: fix URI escaping�[m
�[32m  > gopls: add the link to the gopls/README.md�[m
�[32m  > internal/lsp/debug: serve cache entry counts�[m
�[32m  > internal/lsp: don't show links in hover for test functions�[m
�[32m  > internal/lsp: aggregate diagnostics before publishing them�[m
�[32m  > internal/lsp: skip packages load for auxilary go.mod changes�[m
�[32m  > internal/lsp: add diagnostics in .go files for missing deps in go.mod�[m
�[32m  > internal/lsp: return error if there is no builtin package�[m
�[32m  > go/expect: account for the offset from the file.base for modfiles�[m
�[32m  > internal/lsp: remove useless check�[m
�[32m  > internal/lsp/cache: refactor a few small things�[m
�[32m  > internal/lsp/source: improve completion for "make()" args�[m
�[31m  < [release-branch.go1.14] go/analysis/passes/asmdecl: add support for riscv64�[m
�[32m  > internal/lsp/debug: support dropping sessions and views�[m
�[32m  > internal/lsp/cache: add Env to debugView�[m
�[32m  > internal/lsp: change to helper.go to output a formatted file�[m
�[32m  > internal/lsp/cache: add context cancellation check inside importerFunc�[m
�[32m  > go/expect: add marker support for go.mod files�[m
�[32m  > internal/lsp/source: don't allow mutating DefaultOptions�[m
�[32m  > internal/lsp: fix typo�[m
�[32m  > internal/lsp: use span.URI constructor everywhere�[m
�[32m  > go/packages: fix non-determinism on package list order�[m
�[32m  > internal/span: always uppercase the drive letter for Windows�[m
�[32m  > go/packages: make TestOverlayDeps deterministic�[m
�[32m  > go/packages: work around pkg-config errors in go list�[m
�[32m  > go/packages: add a workaround for golang/go#36188�[m
�[32m  > all: revert uses of types.NewInterfaceType�[m
�[32m  > internal/lsp: set workspace packages during (*snapshot).load�[m
�[32m  > internal/lsp/mod: fix test that checks for unchanged go.mod�[m
�[32m  > internal/lsp/cache: move shouldLoad function to snapshot.go�[m
�[32m  > internal/lsp/cache: use telemetry logging for imports refresh�[m
�[32m  > internal/lsp/source: check cancellation before analysis�[m
�[32m  > internal/lsp/cache: delete a few unused functions�[m
�[32m  > all: fix some staticcheck errors�[m
�[32m  > go/packages: remove code that handled ordering in overlays�[m
�[32m  > internal/lsp/cache: handle invalid analysis Pos�[m
�[32m  > go/packages: fix flaky failure creating non-test package from overlay�[m
�[32m  > internal/lsp: recover from a view initialization failure�[m
�[32m  > internal/lsp: provide arguments deterministically to packages.Load�[m
�[32m  > internal/lsp/cache: handle go.mod conflicts in go list�[m
�[32m  > internal/lsp: surface missing dependencies for imports not in go.mod�[m
�[32m  > internal/lsp: only reload orphaned files that belong to the workspace�[m
�[32m  > internal/lsp: remove shadow analysis from default suite�[m
�[32m  > internal/lsp/cmd: fix `gopls check`�[m
�[32m  > internal/lsp: don't show list errors unless necessary�[m
�[32m  > internal/lsp: handle metadata reloads for ad-hoc packages�[m
�[32m  > internal/lsp: fix active parameter for incomplete parentheses�[m
�[32m  > internal/lsp: log snapshot IDs, don't log context cancellation�[m
�[32m  > internal/lsp/source: add more go/analysis/passes analyzers to LSP's suite�[m
�[32m  > internal/lsp: permit renaming symbols declared in other packages�[m
�[32m  > internal/lsp: return context cancellation from LookupBuiltin�[m
�[32m  > go/packages: only run TestCgoNoSyntax when cgo is available�[m
�[32m  > internal/lsp: upgrade to current version of LSP�[m
�[32m  > gopls/doc: document updating to an unstable version�[m
�[32m  > internal/lsp/protocol: actually handle cancellation delivery�[m
�[32m  > internal/lsp: remove the checkErrors command in internal/lsp/source�[m
�[32m  > internal/lsp: push more build-specific logic into the view�[m
�[32m  > internal/lsp: reload metadata for orphaned files�[m
�[32m  > internal/lsp: disable literal completion candidates for some clients�[m
�[32m  > internal/lsp: small change to helper.go to use ast.IsExported�[m
�[32m  > go/analysis/passes/asmdecl: add support for riscv64�[m
�[32m  > internal/lsp/cache: move mod-related functions and file�[m
�[32m  > internal/lsp: generate boilerplate stubs for type Server�[m
�[32m  > internal/lsp: stop returning errors when we can't find a snapshot�[m
�[32m  > internal/lsp/cache: check go.mod even if tempModFile is false�[m
�[32m  > internal/lsp/cache: fix GOPATH vendoring�[m
�[32m  > go/packages: fix GOPATH vendoring with overlays�[m
�[32m  > internal/lsp: eliminate redundant view.ModFile function�[m
�[32m  > internal/lsp: recreate the view when needed�[m
�[32m  > internal/lsp: check that a file handle is unmodified before read�[m
�[32m  > internal/lsp: batch file changes in didChangeWatchedFiles�[m
�[32m  > internal/lsp: support batched on-disk changes in source.DidModifyFiles�[m
�[32m  > internal/lsp: support multiple URIs in (*view).invalidateContent�[m
�[32m  > internal/lsp: use x/mod to get edits for go.mod quick fixes�[m
�[32m  > internal/imports: add buildflags to ProcessEnv�[m
�[32m  > go/packages: fix doc for NeedExportsFile�[m
�[32m  > go/packages: handle an overlay edge case with test variants�[m
�[32m  > internal/lsp: add tests for references includeDeclaration setting�[m
�[32m  > internal/lsp: refactor (*snapshot).clone to handle multiple URIs�[m
�[32m  > go/packages: refactor list driver�[m
�[32m  > cmd/stress: use an ellipsis when truncating output�[m
�[32m  > internal/lsp/cmd: add a test for client logging�[m
�[32m  > internal/lsp/source: support dereferencing for completion�[m
�[32m  > go/packages: remove named query�[m
�[32m  > gopls/integration/govim: update to latest govim�[m
�[32m  > go/ssa: replace DefaultType with go/types.Default�[m
�[32m  > go/ast/inspector: fix misnomer in callback signature�[m
�[32m  > analysis/passes: consolidate imports helper�[m
�[32m  > internal/lsp: remove the Context argument from NewSession�[m
�[32m  > internal/telemetry/log: correct the docstring for Error�[m
�[32m  > internal/lsp/protocol: handle cancellation delivery�[m
�[32m  > internal/lsp: eliminate getFileLocked function�[m
�[32m  > internal/lsp/source: rename "typeInference" to "candidateInference"�[m
�[32m  > internal/imports: pass dummy source for completion functions�[m
�[32m  > internal/lsp: use correct file identities when computing diagnostics�[m
�[32m  > internal/lsp/cache: create infra for caching go.mod diagnostics�[m
�[32m  > internal/lsp/cache: fix mod file change check�[m
�[32m  > internal/lsp/protocol: remove unused DocumentUri type�[m
�[32m  > internal/lsp/source: fix typeIsValid() inf recursion�[m
�[32m  > go/ssa: remove workaround for lack of vendoring in go/loader�[m
�[32m  > go/ssa/interp: fix goroutines and channels leaks�[m
�[32m  > internal/lsp/source: enable unimported completions by default�[m
�[32m  > internal/lsp/source: fix ranking of untyped completions�[m
�[32m  > internal/lsp: do not invoke the Go command when checking common errors�[m
�[32m  > internal/lsp/cache: let gopls track go.mod files�[m
�[32m  > internal/lsp: add recency check to avoid sending old diagnostics�[m
�[32m  > internal/lsp: invalidate directories if we have no direct IDs�[m
�[32m  > internal/lsp/source: trim file very carefully�[m
�[32m  > internal/lsp: consolidate completion sorting�[m
�[32m  > internal/lsp/cache: invalidate metadata for x_tests and test variants�[m
�[32m  > internal/lsp: add highlighting for import statement�[m
�[32m  > go/ast/astutil: fix DeleteImport SEGV when Rparen is invalid�[m
�[32m  > gopls/internal/hooks: ignore a duplicate analysis from staticcheck�[m
�[32m  > internal/lsp/source: score in-memory unimported candidates�[m
�[32m  > go/packages: fix incorrect needtypes and needsrcs logic�[m
�[32m  > go/packages: internally expose ForTests in go/packages�[m
�[32m  > internal/lsp/cache: refresh imports cache in the background�[m
�[32m  > internal/lsp: don't log context.Cancelation in diagnostics�[m
�[32m  > internal/lsp/source: return obj decl first in find-references�[m
�[32m  > internal/lsp/source: improve completion for "range" and "<-"�[m
�[32m  > internal/lsp: refactor find-references and rename�[m
�[32m  > internal/lsp/source: always look up mapper when building ranges�[m
�[32m  > internal/lsp/source: improve completion in type assertions�[m
�[32m  > internal/lsp/cache: initialize view before LookupBuiltin�[m
�[32m  > internal/lsp: diagnose the snapshot on every text synchronization event�[m
�[32m  > internal/lsp: remove boolean for publishEmpty in diagnostics�[m
�[32m  > cover: error on negative numbers in profiles�[m
�[32m  > internal/lsp/cache: refactor initialization for builtins�[m
�[32m  > gopls/doc: improve troubleshooting docs with specifics�[m
�[32m  > internal/lsp/cache: construct package handles as part of IWL�[m
�[32m  > internal/lsp: add and use nonstandard gopls/diagnoseFiles�[m
�[32m  > internal/lsp: show dependency quick fixes for go.mod diagnostics�[m
�[32m  > gopls/doc: fix it's/its typo�[m
�[32m  > internal/lsp: add server instance to debug info�[m
�[32m  > gopls/integration/govim: update build steps to capture artifacts�[m
�[32m  > internal/lsp/tests: correct typo 'CompletionCaseSensitve'�[m
�[32m  > internal/lsp,internal/telemetry: correct stale docstrings�[m
�[32m  > internal/lsp: push initialization tasks into one function�[m
�[32m  > internal/lsp: finish renaming CheckPackageHandle to PackageHandle�[m
�[32m  > internal/imports: load test exports of package under test�[m
�[32m  > gopls/doc: minor fixes in design.md and implementation.md�[m
�[32m  > internal/lsp: make sure diagnostics with analyses are not overwritten�[m
�[32m  > internal/lsp: add mapper for go.mod files�[m
�[32m  > internal/lsp/protocol: support nonstandard requests�[m
�[32m  > internal/lsp: fix flaking internal/lsp/cmd tests�[m
�[32m  > internal/lsp: use URIs instead of FileIdentity in errors�[m
�[32m  > internal/lsp/source: improve completion support for args to builtins�[m
�[32m  > cmd/stringer: remove redundant check in generated code�[m
�[32m  > internal/lsp: fix context cancellation�[m
�[32m  > internal/lsp: use latest file versions in diagnostics�[m
�[32m  > internal/lsp: allow subdirectories of module roots when checking errors�[m
�[32m  > internal/lsp: change go1.14 check to be more lenient�[m
�[32m  > go/analysis: remove stale documentation citing vet�[m
�[32m  > gopls/doc: fix 'Report the issue' bad link�[m
�[32m  > internal/lsp: reload workspace package metadata on demand�[m
�[32m  > internal/lsp: merge completion options into source.Options�[m
�[32m  > internal/lsp: don't require type-checking for formatting�[m
�[32m  > internal/lsp: fix support for watching changed files�[m
�[32m  > internal/lsp: remove view.FindPosInPackage and view.FindMapperInPackage�[m
�[32m  > …
@golang golang locked and limited conversation to collaborators Mar 24, 2021
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
FrozenDueToAge NeedsInvestigation Someone must examine and confirm this is a valid issue and not a duplicate of an existing one.
Projects
None yet
Development

No branches or pull requests

5 participants