Skip to content

Commit 886b3f8

Browse files
Copilotdata-douser
andauthored
Fix CHANGELOG version reference and use explicit null check for findingId
- CHANGELOG: correct 'v2.25.1-next.1' → 'v2.25.1-next.2' evaluation ref - audit-tools: use explicit `!= null` check for findingId clarity Agent-Logs-Url: https://github.com/advanced-security/codeql-development-mcp-server/sessions/6ff74bab-c637-4e18-a5dc-92e3065583f4 Co-authored-by: data-douser <70299490+data-douser@users.noreply.github.com>
1 parent 1f75bdc commit 886b3f8

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ _Changes on `main` since the latest tagged release that have not yet been includ
2020

2121
- **Persistent MRVA workflow state and caching** — Introduced a new `SqliteStore` backend plus opt-in annotation, audit, and query result cache tools to support the next phase of MCP-assisted CodeQL development and `seclab-taskflow-agent` integration. ([#169](https://github.com/advanced-security/codeql-development-mcp-server/pull/169))
2222
- **Rust language support** — Added first-class Rust support with `PrintAST`, `PrintCFG`, `CallGraphFrom`, `CallGraphTo`, and `CallGraphFromTo` queries, bringing the total supported languages to 10. ([#195](https://github.com/advanced-security/codeql-development-mcp-server/pull/195))
23-
- **Bug fixes and design improvements from v2.25.1-next.1 evaluation** — Fixed 5 bugs across `bqrs_interpret`, `bqrs_info`, `annotation_search`, `audit_add_notes`, and `query_results_cache_compare`; added `database_analyze` auto-caching and per-database mutex serialization; auto-enabled annotation tools in VS Code extension. ([#199](https://github.com/advanced-security/codeql-development-mcp-server/pull/199))
23+
- **Bug fixes and design improvements from v2.25.1-next.2 evaluation** — Fixed 5 bugs across `bqrs_interpret`, `bqrs_info`, `annotation_search`, `audit_add_notes`, and `query_results_cache_compare`; added `database_analyze` auto-caching and per-database mutex serialization; auto-enabled annotation tools in VS Code extension. ([#199](https://github.com/advanced-security/codeql-development-mcp-server/pull/199))
2424

2525
### Added
2626

server/dist/codeql-development-mcp-server.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193812,7 +193812,7 @@ function registerAuditAddNotesTool(server) {
193812193812
},
193813193813
async ({ findingId, owner, repo, sourceLocation, line, notes }) => {
193814193814
const store = sessionDataManager.getStore();
193815-
if (findingId) {
193815+
if (findingId != null) {
193816193816
const annotation2 = store.getAnnotation(findingId);
193817193817
if (!annotation2 || annotation2.category !== AUDIT_CATEGORY) {
193818193818
return {

0 commit comments

Comments
 (0)