Skip to content

Commit c9b0bea

Browse files
Merge pull request #4159 from github/robertbrignull/deprecate_2.20.7
Remove support for CodeQL CLI versions older than 2.20.7
2 parents 5f1b1fa + 318d4a1 commit c9b0bea

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.20.7. [#4159](https://github.com/github/vscode-codeql/pull/4159)
6+
57
## 1.17.5 - 02 October 2025
68

79
- Add new command "CodeQL: Trim Overlay Base Cache" that returns a database to the state prior to overlay evaluation, leaving only base predicates and types that may later be referenced during overlay evaluation. [#4082](https://github.com/github/vscode-codeql/pull/4082)

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1902,7 +1902,7 @@ function shouldDebugCliServer() {
19021902
export class CliVersionConstraint {
19031903
// The oldest version of the CLI that we support. This is used to determine
19041904
// whether to show a warning about the CLI being too old on startup.
1905-
public static OLDEST_SUPPORTED_CLI_VERSION = new SemVer("2.19.4");
1905+
public static OLDEST_SUPPORTED_CLI_VERSION = new SemVer("2.20.7");
19061906

19071907
constructor(private readonly cli: CodeQLCliServer) {
19081908
/**/

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.22.4",
44
"v2.21.4",
55
"v2.20.7",
6-
"v2.19.4",
76
"nightly"
87
]

0 commit comments

Comments
 (0)