Skip to content

Commit 8a1b82a

Browse files
authored
Prepare release 0.7.0 (#290)
1 parent 5844681 commit 8a1b82a

File tree

2 files changed

+30
-1
lines changed

2 files changed

+30
-1
lines changed

CHANGELOG.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,34 @@
11
# Change Log
22

3+
## Version 0.7.0 (December 6, 2022)
4+
5+
### New Features
6+
7+
- Add bazel.commandLine.queryExpression configuration setting (@maximMalofeev)
8+
9+
A [query language expression](https://bazel.build/query/language) which determines the packages displayed in the workspace tree and quick picker. The default inspects the entire workspace, but you could narrow it. For example: `//part/you/want/...:*`
10+
11+
- Make executable and buildifierExecutable settings `machine-overridable` (@jfirebaugh)
12+
13+
This allows them to be set in workspace or folder settings.
14+
15+
- Starlark syntax highlighting now applies to any file with a `.bazel` extension (@dierksen)
16+
17+
### Bug Fixes
18+
19+
- Fix and document providing flags to `getTargetOutput` (@jfirebaugh)
20+
21+
Additional Bazel flags can be provided to the `bazel.getTargetOutput` command:
22+
23+
"inputs": [
24+
{
25+
"id": "debugOutputLocation",
26+
"type": "command",
27+
"command": "bazel.getTargetOutput",
28+
"args": ["//my/binary:target", ["--compilation_mode", "dbg"]],
29+
}
30+
]
31+
332
## Version 0.6.0 (September 14, 2022)
433

534
### New Features

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "vscode-bazel",
33
"displayName": "Bazel",
44
"description": "Bazel BUILD integration",
5-
"version": "0.6.0",
5+
"version": "0.7.0",
66
"publisher": "BazelBuild",
77
"license": "Apache-2.0",
88
"repository": {

0 commit comments

Comments
 (0)