go-language-server v0.6.64 Release Notes

Release Date: 2017-09-05 // over 6 years ago
    • Dan Mace (@ironcladlou), Vincent Chinedu Okonkwo (@codmajik) & Dima (@hummerd)
    • Craig-Stone (@Craig-Stone)
      • Normalize program path in Windows which otherwise prevented breakpoints from being set correctly when remote debugging. PR 1131
    • Marwan Sulaiman (@marwan-at-work)
      • Refactor the code behind Go: Browse Packages to make browsing selected package faster. PR 1136
    • Thomas Darimont (@thomasdarimont)
      • A new snippet called helloweb that generates a web app with an http endpoint returning a greeting and current time. PR 1113
    • Nuruddin Ashr (@uudashr)
      • Refactor the way test output is shown to show output of log.Println. Fixes Issue #1120 with PR 1124
    • Ramya Rao (@ramya-rao-a)
      • Test Improvements
        • Show test coverage after the command Go: Test Package is run. You can disable this by setting go.coverOnTestPackage to false.
        • Show test coverage even if files are outside of GOPATH. Fixes Issue #1122
        • Decouple running test coverage on save from running build/lint/test on save. Fixes the issue where the problems view was not getting updated until go.coverOnSave was disabled.
      • Debugging Improvements
        • No need to set GOPATH in debug configuration in the launch.json file anymore. When no GOPATH is provided this way, the debug adapter will now infer the GOPATH based on the path of the file/package being debugged. This fixes Issue #840.
        • The debug code lens will now honor the go.buildFlags, go.buildTags and go.testFlags settings. Fixes Issue #1117
        • Fix issue with stepping over standard library code when remote debugging in Windows. Fixes Issue #1178
      • Other Bug Fixes