Skip to content

Commit 49839a1

Browse files
authored
Remove support for CodeQL CLI versions older than v2.18.4 (#3895)
* Remove support for CodeQL CLI versions older than v2.18.4 * Update CHANGELOG
1 parent bda74b8 commit 49839a1

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

extensions/ql-vscode/CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## [UNRELEASED]
44

5+
- Remove support for CodeQL CLI versions older than 2.18.4. [#3895](https://github.com/github/vscode-codeql/pull/3895)
6+
57
## 1.7.0 - 20 December 2024
68

79
- Add a palette command that allows importing all databases directly inside of a parent folder. [#3797](https://github.com/github/vscode-codeql/pull/3797)

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1904,7 +1904,7 @@ function shouldDebugCliServer() {
19041904
export class CliVersionConstraint {
19051905
// The oldest version of the CLI that we support. This is used to determine
19061906
// whether to show a warning about the CLI being too old on startup.
1907-
public static OLDEST_SUPPORTED_CLI_VERSION = new SemVer("2.16.6");
1907+
public static OLDEST_SUPPORTED_CLI_VERSION = new SemVer("2.18.4");
19081908

19091909
constructor(private readonly cli: CodeQLCliServer) {
19101910
/**/

extensions/ql-vscode/supported_cli_versions.json

-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,5 @@
33
"v2.19.4",
44
"v2.19.3",
55
"v2.18.4",
6-
"v2.17.6",
7-
"v2.16.6",
86
"nightly"
97
]

0 commit comments

Comments
 (0)