Skip to content

Commit 1034512

Browse files
committed
[release] CHANGELOG.md: v0.26.0 change log & mention dlv-dap in README.md
Updates #1557 Change-Id: If33b602a7afb69dfa45999568200919769c91483 Reviewed-on: https://go-review.googlesource.com/c/vscode-go/+/328674 Trust: Hyang-Ah Hana Kim <[email protected]> Run-TryBot: Hyang-Ah Hana Kim <[email protected]> TryBot-Result: kokoro <[email protected]> Reviewed-by: Suzy Mueller <[email protected]> (cherry picked from commit 689bf6f) Reviewed-on: https://go-review.googlesource.com/c/vscode-go/+/328829 Reviewed-by: Ian Cottrell <[email protected]>
1 parent 7369e65 commit 1034512

File tree

2 files changed

+28
-3
lines changed

2 files changed

+28
-3
lines changed

CHANGELOG.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,29 @@
1+
## V0.26.0 - 17 Jun, 2021
2+
3+
📣 [`Delve`'s native DAP implementation](https://github.com/golang/vscode-go/blob/master/docs/dlv-dap.md) is now available for use. In order to use this new debug adapter (`dlv-dap`) when debugging Go programs, add the following settings in your `settings.json`:
4+
5+
```json5
6+
"go.delveConfig": {
7+
"debugAdapter": "dlv-dap",
8+
},
9+
```
10+
11+
Please learn more about [the new adapter's features and configuration parameters](https://github.com/golang/vscode-go/blob/master/docs/dlv-dap.md), and share your feedback and report the issues in our issue tracker.
12+
13+
A list of all issues and changes can be found in the [v0.26.0 milestone](https://github.com/golang/vscode-go/milestone/30?closed=1) and [commit history](https://github.com/golang/vscode-go/compare/v0.25.1...v0.26.0).
14+
15+
### Enhancements
16+
- `dlv-dap` is ready for use in local debugging.
17+
- Added the new `"Go: Test Function At Cursor or Test Previous"` command. ([PR 1509](https://github.com/golang/vscode-go/pull/1509))
18+
- `"Go: Add Imports"` command uses `gopls` instead of `gopkg`. This requires `[email protected]` or newer. ([Go Issue 43351](https://github.com/golang/go/issues/43351))
19+
20+
### Fixes
21+
- Fixed `"Go: Lint Workspace"` that failed no editor is active. ([Issue 1520](https://github.com/golang/vscode-go/issues/1520))
22+
- Fixed `gopls` crash caused by Untitled files. ([Issue 1559](https://github.com/golang/vscode-go/issues/1559))
23+
24+
### Thanks
25+
Thanks for your contributions, @mislav, @marwan-at-work, @findleyr, @lggomez, @fflewddur, @suzmue, @hyangah!
26+
127
## v0.25.1 - 24 May, 2021
228

329
A list of all issues and changes can be found in the [v0.25.1 milestone](https://github.com/golang/vscode-go/issues?q=is%3Aissue+milestone%3Av0.25.1+is%3Aclosed).

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,8 @@
88
provides rich language support for the
99
[Go programming language](https://golang.org/).
1010

11-
> 📣 Gopls, the official Go language server, is now enabled in VS Code by default.
12-
> Gopls replaces several legacy tools to provide IDE features while editing Go code.
13-
> See [issue 1037](https://github.com/golang/vscode-go/issues/1037) for more information.
11+
> 📣 Debugging using [`Delve`'s native DAP implementation](https://github.com/golang/vscode-go/blob/master/docs/dlv-dap.md) is now available for use.<br>
12+
> Please test it by following [the instruction to enable this new feature](https://github.com/golang/vscode-go/blob/master/docs/dlv-dap.md#getting-started) and share your feedback!
1413
1514
## Quick Start
1615

0 commit comments

Comments
 (0)