@@ -667,11 +667,11 @@ export class CodeQLCliServer implements Disposable {
667667
668668 /**
669669 * Generate a summary of an evaluation log.
670- * @param endSummaryPath The path to write only the end of query part of the human-readable summary to.
670+ * @param endSummaryPath The path to write only the end of query part of the human-readable summary to.
671671 * @param inputPath The path of an evaluation event log.
672672 * @param outputPath The path to write a human-readable summary of it to.
673673 */
674- async generateLogSummary (
674+ async generateLogSummary (
675675 inputPath : string ,
676676 outputPath : string ,
677677 endSummaryPath : string ,
@@ -1255,7 +1255,7 @@ export class CliVersionConstraint {
12551255 public static CLI_VERSION_WITH_NO_PRECOMPILE = new SemVer ( '2.7.1' ) ;
12561256
12571257 /**
1258- * CLI version where remote queries are supported.
1258+ * CLI version where remote queries (variant analysis) are supported.
12591259 */
12601260 public static CLI_VERSION_REMOTE_QUERIES = new SemVer ( '2.6.3' ) ;
12611261
@@ -1280,16 +1280,16 @@ export class CliVersionConstraint {
12801280 */
12811281 public static CLI_VERSION_WITH_STRUCTURED_EVAL_LOG = new SemVer ( '2.8.2' ) ;
12821282
1283- /**
1284- * CLI version that supports rotating structured logs to produce one per query.
1285- *
1286- * Note that 2.8.4 supports generating the evaluation logs and summaries,
1287- * but 2.9.0 includes a new option to produce the end-of-query summary logs to
1288- * the query server console. For simplicity we gate all features behind 2.9.0,
1289- * but if a user is tied to the 2.8 release, we can enable evaluator logs
1290- * and summaries for them.
1291- */
1292- public static CLI_VERSION_WITH_PER_QUERY_EVAL_LOG = new SemVer ( '2.9.0' ) ;
1283+ /**
1284+ * CLI version that supports rotating structured logs to produce one per query.
1285+ *
1286+ * Note that 2.8.4 supports generating the evaluation logs and summaries,
1287+ * but 2.9.0 includes a new option to produce the end-of-query summary logs to
1288+ * the query server console. For simplicity we gate all features behind 2.9.0,
1289+ * but if a user is tied to the 2.8 release, we can enable evaluator logs
1290+ * and summaries for them.
1291+ */
1292+ public static CLI_VERSION_WITH_PER_QUERY_EVAL_LOG = new SemVer ( '2.9.0' ) ;
12931293
12941294 constructor ( private readonly cli : CodeQLCliServer ) {
12951295 /**/
0 commit comments