Skip to content

Release v0.41.3

Compare
Choose a tag to compare
@gopherbot gopherbot released this 22 Apr 14:30

v0.41.3 - 22 Apr, 2024

Full Changelog: v0.41.2...v0.41.3

This point release temporarily reverts the default remote debugging behavior to use the legacy debug adapter due to existing feature gaps. Once these gaps are addressed as outlined in Issue 3096, we plan to switch the default back to use Delve DAP for remote deubgging.

If you want to continue using Delve DAP for remote debugging, use the following settings in your launch.json.

{
    "name": "Debug Remote",
    "type": "go",
    "request": "attach",
    "mode": "remote",
    "debugAdapter": "dlv-dap", // Use Delve DAP
    ...
}

See the full commit history for detailed changes.

Fixes

  • Fixed to substitute variables used in go.alternateTools setting's customFormatter entry (Issue 2582).
  • Corrected handling of go.showWelcome setting (Issue 3319).
  • Addressed Go telemetry prompt issue in the latest Visual Studio Code (Issue 3312).

Thanks

Thanks for your contributions, @uniquefine, @monitor1379, @suzmue, @hyangah!