Skip to content

Commit 15aae38

Browse files
authored
Merge pull request #4285 from github/nickrolfe/rm-old-version
Remove support for CodeQL CLI versions older than 2.21.4
2 parents db8290b + 50e97aa commit 15aae38

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

extensions/ql-vscode/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
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.21.4. [#4285](https://github.com/github/vscode-codeql/pull/4285)
6+
57
## 1.17.7 - 5 December 2025
68

79
- Rename command "CodeQL: Trim Overlay Base Cache" to "CodeQL: Trim Cache to Overlay-Base" for consistency with "CodeQL: Warm Overlay-Base Cache for [...]" commands. [#4204](https://github.com/github/vscode-codeql/pull/4204)

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ import type { LanguageClient } from "vscode-languageclient/node";
4545
* The oldest version of the CLI that we support. This is used to determine
4646
* whether to show a warning about the CLI being too old on startup.
4747
*/
48-
export const OLDEST_SUPPORTED_CLI_VERSION = new SemVer("2.20.7");
48+
export const OLDEST_SUPPORTED_CLI_VERSION = new SemVer("2.21.4");
4949

5050
/**
5151
* The version of the SARIF format that we are using.

extensions/ql-vscode/supported_cli_versions.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,5 @@
33
"v2.23.9",
44
"v2.22.4",
55
"v2.21.4",
6-
"v2.20.7",
76
"nightly"
87
]

0 commit comments

Comments
 (0)