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: README.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,8 @@ This project is an extension for Visual Studio Code that adds rich language supp
4
4
5
5
The extension is released. You can download it from the [Visual Studio Marketplace](https://marketplace.visualstudio.com/items?itemName=github.vscode-codeql).
6
6
7
+
To see what has changed in the last few versions of the extension, see the [Changelog](https://github.com/github/vscode-codeql/blob/master/extensions/ql-vscode/CHANGELOG.md).
8
+
7
9

- 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.
6
+
- Improve the highlighting of the selected query result within the source code.
7
+
- Improve the performance of switching between result tables in the CodeQL Query Results view.
8
+
- Fix the automatic upgrading of CodeQL databases when using upgrade scripts from the workspace.
9
+
- Allow removal of items from the CodeQL Query History view.
Copy file name to clipboardExpand all lines: extensions/ql-vscode/README.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,8 @@ This project is an extension for Visual Studio Code that adds rich language supp
7
7
* Provides an easy way to run queries from the large, open source repository of [CodeQL security queries](https://github.com/Semmle/ql).
8
8
* Adds IntelliSense to support you writing and editing your own CodeQL query and library files.
9
9
10
+
To see what has changed in the last few versions of the extension, see the [Changelog](https://github.com/github/vscode-codeql/blob/master/extensions/ql-vscode/CHANGELOG.md).
11
+
10
12
## Quick start overview
11
13
12
14
The information in this `README` file describes the quickest way to start using CodeQL.
Copy file name to clipboardExpand all lines: extensions/ql-vscode/package.json
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@
4
4
"description": "CodeQL for Visual Studio Code",
5
5
"author": "GitHub",
6
6
"private": true,
7
-
"version": "1.0.1",
7
+
"version": "1.0.2",
8
8
"publisher": "GitHub",
9
9
"license": "MIT",
10
10
"icon": "media/VS-marketplace-CodeQL-icon.png",
@@ -86,7 +86,7 @@
86
86
"title": "CodeQL",
87
87
"properties": {
88
88
"codeQL.cli.executablePath": {
89
-
"scope": "window",
89
+
"scope": "machine",
90
90
"type": "string",
91
91
"default": "",
92
92
"description": "Path to the CodeQL executable that should be used by the CodeQL extension. The executable is named `codeql` on Linux/Mac and `codeql.cmd` on Windows. This overrides all other CodeQL CLI settings."
0 commit comments