Skip to content

Commit

Permalink
[release] release: fix CHANGELOG.md
Browse files Browse the repository at this point in the history
Mention limitations of delve's call feature.
Remove non-matching ().
Remove the mention of go.overwriteGoplsMiddleware flag
because that's really temporary.

Change-Id: Ifdeaac195dcc7362de52760e7067f37146a75c9d
Reviewed-on: https://go-review.googlesource.com/c/vscode-go/+/255857
Trust: Hyang-Ah Hana Kim <hyangah@gmail.com>
Run-TryBot: Hyang-Ah Hana Kim <hyangah@gmail.com>
TryBot-Result: kokoro <noreply+kokoro@google.com>
Reviewed-by: Robert Findley <rfindley@google.com>
  • Loading branch information
hyangah committed Sep 18, 2020
1 parent 8439353 commit 8b166d9
Showing 1 changed file with 7 additions and 11 deletions.
18 changes: 7 additions & 11 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
## v0.17.0 - 17th Sep, 2020
## v0.17.0 - 18th Sep, 2020

Go code debugging and code coverage support is getting better.

The extension will help you stay updated with the new Go releases.

### New Features

- Delve's function call feature is now accessible. To use this feature,
explicitly specify the `call` command. E.g. `call myAwesomeFunc()`.
- Delve's [call](https://github.com/go-delve/delve/tree/master/Documentation/cli#call) feature is now accessible.
To use this feature, explicitly specify the `call` command. E.g. `call myAwesomeFunc()`.
It is an experimental feature in Delve.
Please see [the current limitations](https://github.com/go-delve/delve/tree/master/Documentation/cli#call).
([Issue 100](https://github.com/golang/vscode-go/issues/100))
- The extension checks the go official download site and notifies users of
newly available Go versions. When a newer version is available,
Expand Down Expand Up @@ -68,7 +70,7 @@ enabled, the extension runs `go` commands with `-i`, which is no longer
recommended with recent versions of Go.
([Issue 568](https://github.com/golang/vscode-go/issues/568))
- Fixed a bug where we are not sending back 'configuration done' response.
(([Issue eclipse-theia/theia#8455](https://github.com/eclipse-theia/theia/issues/8455),
([Issue eclipse-theia/theia#8455](https://github.com/eclipse-theia/theia/issues/8455),
[CL 254959](https://go-review.googlesource.com/c/vscode-go/+/254959))

### Documentation
Expand All @@ -88,18 +90,12 @@ to help debugging.
### Experimental Features

- We plan to delegate computation of various `run test` CodeLenses to `gopls`.
The feature can be enabled with the following setting:
This experimental feature can be enabled with the following setting:
```
"go.useLanguageServer": true,
"gopls": {
"codelens": { "test": true }
}
"go.overwriteGoplsMiddleware": {
"codelens": {
"test": true,
"bench": true
}
}
```

### Thanks
Expand Down

0 comments on commit 8b166d9

Please sign in to comment.