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
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,11 @@
2
2
3
3
## [UNRELEASED]
4
4
5
+
## 1.8.3 - 26 April 2023
6
+
7
+
- Added ability to filter repositories for a variant analysis to only those that have results [#2343](https://github.com/github/vscode-codeql/pull/2343)
5
8
- Add new configuration option to allow downloading databases from http, non-secure servers. [#2332](https://github.com/github/vscode-codeql/pull/2332)
9
+
- Remove title actions from the query history panel that depended on history items being selected. [#2350](https://github.com/github/vscode-codeql/pull/2350)
Copy file name to clipboardExpand all lines: extensions/ql-vscode/package.json
+8-35Lines changed: 8 additions & 35 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.8.3",
7
+
"version": "1.8.4",
8
8
"publisher": "GitHub",
9
9
"license": "MIT",
10
10
"icon": "media/VS-marketplace-CodeQL-icon.png",
@@ -340,6 +340,12 @@
340
340
"type": "boolean",
341
341
"default": false,
342
342
"description": "Allow database to be downloaded via HTTP. Warning: enabling this option will allow downloading from insecure servers."
343
+
},
344
+
"codeQL.createQuery.folder": {
345
+
"type": "string",
346
+
"default": "",
347
+
"patternErrorMessage": "Please enter a valid folder",
348
+
"markdownDescription": "The name of the folder where we want to create queries and query packs via the \"CodeQL: Create Query\" command. The folder should exist."
0 commit comments