You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: extensions/ql-vscode/CHANGELOG.md
+11-1Lines changed: 11 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,15 @@
1
1
# CodeQL for Visual Studio Code: Changelog
2
2
3
+
## 1.0.2 - 13 December 2019
4
+
5
+
- Fix rendering of negative numbers in results.
6
+
- Allow customization of query history labels from settings and from
7
+
query history view context menu.
8
+
- Show number of results in results view.
9
+
- Add commands `CodeQL: Show Next Step on Path` and `CodeQL: Show
10
+
Previous Step on Path` for navigating the steps on the currently
11
+
shown path result.
12
+
3
13
## 1.0.1 - 21 November 2019
4
14
5
15
- Change `codeQL.cli.executablePath` to a per-machine setting, so it can no longer be set at the user or workspace level. This helps prevent arbitrary code execution when using a VS Code workspace from an untrusted source.
Copy file name to clipboardExpand all lines: extensions/ql-vscode/package.json
+18Lines changed: 18 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -122,6 +122,11 @@
122
122
"default": false,
123
123
"description": "Enable debug logging and tuple counting when running CodeQL queries. This information is useful for debugging query performance."
124
124
},
125
+
"codeQL.queryHistory.format": {
126
+
"type": "string",
127
+
"default": "[%t] %q on %d - %s",
128
+
"description": "Default string for how to label query history items. %t is the time of the query, %q is the query name, %d is the database name, and %s is a status string."
0 commit comments