File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1515- Add warning when using unsupported CodeQL CLI version. [ #2428 ] ( https://github.com/github/vscode-codeql/pull/2428 )
1616- Retry variant analysis results download if connection times out. [ #2440 ] ( https://github.com/github/vscode-codeql/pull/2440 )
1717- Add ` CodeQL: Quick Evaluation Count ` command to generate the count of the selected item without having to compute locations or strings.
18+ - Add ` CodeQL: Quick Evaluation Count ` command to generate the count summary statistics of the results set
19+ without speding the time to compute locations and strings.
1820
1921## 1.8.4 - 3 May 2023
2022
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ import {
3636import { CompletedLocalQueryInfo , LocalQueryInfo } from "../query-results" ;
3737import { WebviewReveal } from "./webview" ;
3838import { asError , getErrorMessage } from "../pure/helpers-pure" ;
39- import { CodeQLCliServer } from "../codeql-cli/cli" ;
39+ import { CliVersionConstraint , CodeQLCliServer } from "../codeql-cli/cli" ;
4040import { LocalQueryCommands } from "../common/commands" ;
4141import { App } from "../common/app" ;
4242import { DisposableObject } from "../pure/disposable-object" ;
@@ -237,7 +237,7 @@ export class LocalQueries extends DisposableObject {
237237 async ( progress , token ) => {
238238 if ( ! ( await this . cliServer . cliConstraints . supportsQuickEvalCount ( ) ) ) {
239239 throw new Error (
240- " Quick evaluation counts is not supported by this version of CodeQL CLI." ,
240+ ` Quick evaluation count is only supported by CodeQL CLI v ${ CliVersionConstraint . CLI_VERSION_WITH_QUICK_EVAL_COUNT } or later.` ,
241241 ) ;
242242 }
243243 await this . compileAndRunQuery (
You can’t perform that action at this time.
0 commit comments