Skip to content

Commit 8b166d9

Browse files
committed
[release] release: fix CHANGELOG.md
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 <[email protected]> Run-TryBot: Hyang-Ah Hana Kim <[email protected]> TryBot-Result: kokoro <[email protected]> Reviewed-by: Robert Findley <[email protected]>
1 parent 8439353 commit 8b166d9

File tree

1 file changed

+7
-11
lines changed

1 file changed

+7
-11
lines changed

CHANGELOG.md

Lines changed: 7 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
1-
## v0.17.0 - 17th Sep, 2020
1+
## v0.17.0 - 18th Sep, 2020
22

33
Go code debugging and code coverage support is getting better.
44

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

77
### New Features
88

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

7476
### Documentation
@@ -88,18 +90,12 @@ to help debugging.
8890
### Experimental Features
8991

9092
- We plan to delegate computation of various `run test` CodeLenses to `gopls`.
91-
The feature can be enabled with the following setting:
93+
This experimental feature can be enabled with the following setting:
9294
```
9395
"go.useLanguageServer": true,
9496
"gopls": {
9597
"codelens": { "test": true }
9698
}
97-
"go.overwriteGoplsMiddleware": {
98-
"codelens": {
99-
"test": true,
100-
"bench": true
101-
}
102-
}
10399
```
104100

105101
### Thanks

0 commit comments

Comments
 (0)