Skip to content

Tags: 0xeb/bnsql

Tags

v0.0.11

Toggle v0.0.11's commit message
bnsql v0.0.11

v0.0.10

Toggle v0.0.10's commit message
BNSQL v0.0.10

v0.0.9

Toggle v0.0.9's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
v0.0.9: explicit-save model, type intelligence, remove AI agent (#9)

Features:
- Explicit save model: save() must be called to persist changes
- Decompiler cache invalidation on write operations
- Type intelligence: types, type_members, type_fields tables
- runtime_settings table for query timeout/queue configuration
- persistence module for save/reload workflows

Removed:
- AI agent support (libagents dependency)
- Promoted fastmcpp to direct submodule for MCP server

Improvements:
- Simplified MCP server (sql_query tool only)
- Cleaner CLI (removed --agent, --prompt, --config flags)
- Updated README and CI workflow

v0.0.8

Toggle v0.0.8's commit message
chore: updates

v0.0.7

Toggle v0.0.7's commit message
fix: save() for raw binaries, enable copilot agent

v0.0.6

Toggle v0.0.6's commit message
fix: correct Windows plugin path (bin not lib)

v0.0.3

Toggle v0.0.3's commit message
v0.0.3

- Improved query performance for strings table
- Added internal indexing for faster JOIN operations

- Updated agent prompt with additional query examples

v0.0.2

Toggle v0.0.2's commit message
perf(xrefs): add pre-computed from_func column for fast call graph qu…

…eries

- Add from_func column to xrefs table (computed at load time)
- Update callers/callees/string_refs views to use from_func instead of
  expensive range joins (O(n*m) → O(n))
- Update agent prompt with optimized query patterns:
  - Document from_func column
  - Add call tree depth analysis example
  - Update slow vs fast patterns table

Before: callees view with range join → >60 seconds (timeout)
After: xrefs with from_func → <1 second

v0.0.1

Toggle v0.0.1's commit message
pre alpha release (win)