Skip to content

Commit d0d95ab

Browse files
hyangahgopherbot
authored andcommitted
extension/CHANGELOG.md: add a note for v0.41.3
For #3348 Change-Id: I4c08f6418963e5e3904f85b1df185d279813ae5d Reviewed-on: https://go-review.googlesource.com/c/vscode-go/+/580017 Commit-Queue: Hyang-Ah Hana Kim <[email protected]> Auto-Submit: Hyang-Ah Hana Kim <[email protected]> kokoro-CI: kokoro <[email protected]> Reviewed-by: Robert Findley <[email protected]>
1 parent b501de3 commit d0d95ab

File tree

1 file changed

+38
-0
lines changed

1 file changed

+38
-0
lines changed

extension/CHANGELOG.md

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,41 @@
1+
## v0.41.3 - 22 Apr, 2024
2+
3+
This point release temporarily reverts the default remote debugging behavior to
4+
use the legacy debug adapter due to existing feature gaps.
5+
Once these gaps are addressed as outlined in
6+
[Issue 3096](https://github.com/golang/vscode-go/issues/3096),
7+
we plan to switch the default back to use Delve DAP for remote deubgging.
8+
9+
If you want to continue using [Delve DAP for remote debugging](https://github.com/golang/vscode-go/wiki/debugging#connect-to-headless-delve-with-target-specified-at-server-start-up), use the following
10+
settings in your `launch.json`.
11+
12+
```json
13+
{
14+
"name": "Debug Remote",
15+
"type": "go",
16+
"request": "attach",
17+
"mode": "remote",
18+
"debugAdapter": "dlv-dap", // Use Delve DAP
19+
...
20+
}
21+
```
22+
23+
See the full
24+
[commit history](https://github.com/golang/vscode-go/compare/v0.41.2...v0.41.3)
25+
for detailed changes.
26+
27+
### Fixes
28+
- Fixed to substitute variables used in `go.alternateTools` setting's
29+
`customFormatter` entry ([Issue 2582](https://github.com/golang/vscode-go/issues/2582)).
30+
- Corrected handling of `go.showWelcome` setting
31+
([Issue 3319](https://github.com/golang/vscode-go/issues/3319)).
32+
- Addressed Go telemetry prompt issue in the latest Visual Studio Code
33+
([Issue 3312](https://github.com/golang/vscode-go/issues/3312)).
34+
35+
### Thanks
36+
37+
Thanks for your contributions, @uniquefine, @monitor1379, @suzmue, @hyangah!
38+
139
## v0.41.2 - 14 Mar, 2024
240

341
This release is a point release to increase the prompt rate of Go telemetry

0 commit comments

Comments
 (0)