1
- ## v0.17.0 - 17th Sep, 2020
1
+ ## v0.17.0 - 18th Sep, 2020
2
2
3
3
Go code debugging and code coverage support is getting better.
4
4
5
5
The extension will help you stay updated with the new Go releases.
6
6
7
7
### New Features
8
8
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 ) .
11
13
([ Issue 100] ( https://github.com/golang/vscode-go/issues/100 ) )
12
14
- The extension checks the go official download site and notifies users of
13
15
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
68
70
recommended with recent versions of Go.
69
71
([ Issue 568] ( https://github.com/golang/vscode-go/issues/568 ) )
70
72
- 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 ) ,
72
74
[ CL 254959] ( https://go-review.googlesource.com/c/vscode-go/+/254959 ) )
73
75
74
76
### Documentation
@@ -88,18 +90,12 @@ to help debugging.
88
90
### Experimental Features
89
91
90
92
- 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:
92
94
```
93
95
"go.useLanguageServer": true,
94
96
"gopls": {
95
97
"codelens": { "test": true }
96
98
}
97
- "go.overwriteGoplsMiddleware": {
98
- "codelens": {
99
- "test": true,
100
- "bench": true
101
- }
102
- }
103
99
```
104
100
105
101
### Thanks
0 commit comments