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
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,8 @@
2
2
3
3
## [UNRELEASED]
4
4
5
+
- Add settings `codeQL.variantAnalysis.defaultResultsFilter` and `codeQL.variantAnalysis.defaultResultsSort` for configuring how variant analysis results are filtered and sorted in the results view. The default is to show all repositories, and to sort by the number of results. [#2392](https://github.com/github/vscode-codeql/pull/2392)
6
+
5
7
## 1.8.4 - 3 May 2023
6
8
7
9
- Avoid repeated error messages when unable to monitor a variant analysis. [#2396](https://github.com/github/vscode-codeql/pull/2396)
Copy file name to clipboardExpand all lines: extensions/ql-vscode/package.json
+30Lines changed: 30 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -329,6 +329,36 @@
329
329
"patternErrorMessage": "Please enter a valid GitHub repository",
330
330
"markdownDescription": "[For internal use only] The name of the GitHub repository in which the GitHub Actions workflow is run when using the \"Run Variant Analysis\" command. The repository should be of the form `<owner>/<repo>`)."
331
331
},
332
+
"codeQL.variantAnalysis.defaultResultsFilter": {
333
+
"type": "string",
334
+
"default": "all",
335
+
"enum": [
336
+
"all",
337
+
"withResults"
338
+
],
339
+
"enumDescriptions": [
340
+
"Show all repositories in the results view.",
341
+
"Show only repositories with results in the results view."
342
+
],
343
+
"description": "The default filter to apply to the variant analysis results view."
344
+
},
345
+
"codeQL.variantAnalysis.defaultResultsSort": {
346
+
"type": "string",
347
+
"default": "numberOfResults",
348
+
"enum": [
349
+
"alphabetically",
350
+
"popularity",
351
+
"mostRecentCommit",
352
+
"numberOfResults"
353
+
],
354
+
"enumDescriptions": [
355
+
"Sort repositories alphabetically in the results view.",
356
+
"Sort repositories by popularity in the results view.",
357
+
"Sort repositories by most recent commit in the results view.",
358
+
"Sort repositories by number of results in the results view."
359
+
],
360
+
"description": "The default sorting order for repositories in the variant analysis results view."
0 commit comments