Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions extensions/ql-vscode/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## [UNRELEASED]

- Remove support for CodeQL CLI versions older than 2.21.4. [#4285](https://github.com/github/vscode-codeql/pull/4285)

## 1.17.7 - 5 December 2025

- 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)
Expand Down
2 changes: 1 addition & 1 deletion extensions/ql-vscode/src/codeql-cli/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ import type { LanguageClient } from "vscode-languageclient/node";
* The oldest version of the CLI that we support. This is used to determine
* whether to show a warning about the CLI being too old on startup.
*/
export const OLDEST_SUPPORTED_CLI_VERSION = new SemVer("2.20.7");
export const OLDEST_SUPPORTED_CLI_VERSION = new SemVer("2.21.4");

/**
* The version of the SARIF format that we are using.
Expand Down
1 change: 0 additions & 1 deletion extensions/ql-vscode/supported_cli_versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,5 @@
"v2.23.9",
"v2.22.4",
"v2.21.4",
"v2.20.7",
"nightly"
]