Skip to content

Commit 6cfc7d5

Browse files
authored
Remove support for CodeQL CLI versions older than 2.9.4 (#2610)
1 parent 7ea6cd8 commit 6cfc7d5

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

extensions/ql-vscode/CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,14 @@
22

33
## [UNRELEASED]
44

5+
- Remove support for CodeQL CLI versions older than 2.9.4. [#2610](https://github.com/github/vscode-codeql/pull/2610)
56
- Implement syntax highlighting for the `additional` and `default` keywords. [#2609](https://github.com/github/vscode-codeql/pull/2609)
67

78
## 1.8.7 - 29 June 2023
89

910
- Show a run button on the file tab for query files, that will start a local query. This button will only show when a local database is selected in the extension. [#2544](https://github.com/github/vscode-codeql/pull/2544)
1011
- Add `CodeQL: Quick Evaluation Count` command to generate the count summary statistics of the results set
11-
without speding the time to compute locations and strings.
12+
without spending the time to compute locations and strings.
1213

1314
## 1.8.6 - 14 June 2023
1415

extensions/ql-vscode/src/codeql-cli/cli.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1790,7 +1790,7 @@ export function shouldDebugCliServer() {
17901790
export class CliVersionConstraint {
17911791
// The oldest version of the CLI that we support. This is used to determine
17921792
// whether to show a warning about the CLI being too old on startup.
1793-
public static OLDEST_SUPPORTED_CLI_VERSION = new SemVer("2.7.6");
1793+
public static OLDEST_SUPPORTED_CLI_VERSION = new SemVer("2.9.4");
17941794

17951795
/**
17961796
* CLI version where building QLX packs for remote queries is supported.

extensions/ql-vscode/supported_cli_versions.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33
"v2.13.5",
44
"v2.12.7",
55
"v2.11.6",
6-
"v2.7.6",
7-
"v2.8.5",
86
"v2.9.4",
97
"v2.10.5",
108
"nightly"

0 commit comments

Comments
 (0)