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
1 change: 1 addition & 0 deletions extensions/ql-vscode/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## [UNRELEASED]

- 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)
- Remove support for CodeQL CLI versions older than 2.19.4. [#4108](https://github.com/github/vscode-codeql/pull/4108)

## 1.17.4 - 10 July 2025

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 @@ -1902,7 +1902,7 @@ function shouldDebugCliServer() {
export class CliVersionConstraint {
// 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.
public static OLDEST_SUPPORTED_CLI_VERSION = new SemVer("2.18.4");
public static OLDEST_SUPPORTED_CLI_VERSION = new SemVer("2.19.4");

constructor(private readonly cli: CodeQLCliServer) {
/**/
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.21.4",
"v2.20.7",
"v2.19.4",
"v2.18.4",
"nightly"
]
Original file line number Diff line number Diff line change
Expand Up @@ -157,12 +157,6 @@ describeWithCodeQL()("Debugger", () => {

it("should run a quick evaluation with a bigint-valued result column", async () => {
await withDebugController(appCommands, async (controller) => {
const semver = await cli.getVersion();
if (semver.compare("2.18.4") < 0) {
// Skip this test if the CLI version is too old to support BigInt
return;
}

await selectForQuickEval(quickEvalBigIntQueryPath, 4, 23, 4, 37);

// Don't specify a query path, so we'll default to the active document ("QuickEvalBigIntQuery.ql")
Expand Down
Loading