[0.7.10] - 2026-05-19
Fixes
- CodeGraph tools now reliably appear in your client on slow filesystems (Docker Desktop VirtioFS on macOS, WSL2), where the startup handshake could previously time out and leave the process running with no tools visible (#172). Thanks @sashanclrp and @sgrimm.
- On Windows PowerShell and cmd.exe, terminal output during
codegraph indexandcodegraph syncno longer turns into garbled characters; CodeGraph now uses plain ASCII glyphs by default on Windows, withCODEGRAPH_UNICODE=1to opt back into the Unicode glyphs orCODEGRAPH_ASCII=1to force ASCII on any platform (#168). Thanks @starkleek and @Bortlesboat. - Module-qualified symbol lookups now resolve in the codegraph tools, so you can pass names like
module::symbol(Rust, C++, Ruby),Module.symbol(TypeScript, JavaScript, Python), ormodule/symbol, including multi-level paths and Rust prefixes likecrate,super, andself(#173). Thanks @joselhurtado.