Sourced from golang.org/x/tools's releases.
gopls/v0.3.0
Note:
goplsnow loads your entire workspace, where “workspace” is directory you opened in your editor.In module mode, you must open your module root (directory containing the
go.modfile) or a subdirectory.In
GOPATHmode, you must open yourGOPATH/srcor a directory within it. If you have a largeGOPATHand you open yourGOPATHas your workspace root,goplsmay be very slow to load. Please see #36899 for further information.
- Autocompletion from unimported packages is on by default. You will get completions for something like
fmt.Printfeven if“fmt”isn’t imported yet. (@heschik)- Workspace-scoped references, rename, and go to implementation. These features use your workspace root as the search scope, so behavior will vary based on the directory you open in your editor. This may result in unexpected behavior. (
@muirdm,@matloob)- Workspace-wide diagnostics. You will now see errors in your entire workspace, rather than just in your currently open files. Analysis errors will only be shown for packages with currently open files.
- Watch file changes on disk. This allows users to switch branches without reloading their editors. Also, changing configurations no longer requires an editor reload.
- GOPATH vendoring is fully supported. Previously, some features would ignore vendor directories, causing errors if packages weren't in GOPATH. (
@heschik)- New autocompletion suggestions for type conversions. Improved completions for literal candidates and variadic functions. Better rankings, including rankings for builtin functions and keywords. (
@muirdm)- Highlighting improvements: Highlighting now applies not only to variables, but also to fields, methods, types, and imports. Additional highlighting helps visualize control flow in loops and functions. Highlighting of single character variables has better support. (
@ridersofrohan)- Documentation on hover includes links to pkg.go.dev for exported symbols. (
@Southclaws)- Improved support for cgo dependencies. All features now work for packages that have cgo dependencies. Authoring cgo packages is still not supported, but improvements are scheduled for Go 1.15 (see #35721). (
@heschik)- Deep completions are now on by default. This feature of completion will search the fields and methods of all available candidates to see if there are any more candidates with the expected type. As an example, say you have imported the
contextpackage and are calling a function that takes acontext.Contextas a parameter. In the case that you don’t have a variable of that type in scope, deep completions will suggestcontext.Background()andcontext.TODO(). (@muirdm)Opt-in:
- staticcheck analyses remain opt-in and can be enabled by setting
"staticcheck": truein yourgoplssettings.- Go 1.14 will support running the go command without modifying the user’s
go.modfile. This new feature is used ingoplsto show diagnostics and suggest edits in a user’sgo.modfile rather than change the file without the user noticing. Currently,goplswill suggest removing unused dependencies and warn the user if there is a parse error in thego.modfile. Enable this behavior by using the go1.14 beta and setting"tempModfile": truein yourgoplssettings. (@ridersofrohan)gopls/v0.2.2
- Fix concurrent map read and write when a file is created (CL 210199).
- Fix issue that caused errors to show up when a new file was created (CL 209978).
gopls/v0.2.1
- Fix for parse errors showing up as errors on the whole package (CL 206597).
502c634 go.mod: update golang.org/x dependenciesbd04e32 internal/jsonrpc2_v2: eliminate a potential Accept/Dial race in TestIdleTimeoutd41a43b internal/jsonrpc2_v2: fix a potential deadlock when (*Conn).Close is invoked ...3057465 gopls/doc: Add plugin for Lapce to gopls documentationba92ae1 internal/persistent: avoid incorrect map validation due to multiple keys9474ca3 gopls/doc: clarify go work use003fde1 internal/gcimporter: use nondeprecated go/packages mode bits5050657 gopls/fake: add semantic token modifiers to fake editor88a3548 gopls/coverage: repair coverage.go8e0240a internal/regtest/workspace: permanently skip TestDeleteModule_Interdependent