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 @@ -4,6 +4,7 @@

- 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)
- Fix a bug where quick evaluation within a `.ql` file could cause spurious errors about processing query metadata. [#4141](https://github.com/github/vscode-codeql/pull/4141)

## 1.17.4 - 10 July 2025

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ export class LocalQueryRun {
result.outputBaseName,
this.dbItem.databaseUri.fsPath,
await this.dbItem.hasMetadataFile(),
undefined,
this.queryInfo.initialInfo.quickEvalPosition,
metadata,
);

Expand Down
Loading