chore(release): bump version to 0.5.7 - #1592
Merged
Merged
Conversation
Ten PRs since 0.5.6 — mostly parser correctness, all with regression tests. Parsers - Ruby nested classes no longer delete their parent; method parameters extracted at all (#1523, #1527, #1581) - C/C++ functions returning a pointer or reference are extracted, and registered in pre_scan so they resolve as call targets (#1524, #1582) - C# fields and locals parsed, restoring receiver-type inference for `var x = new T(); x.M();` (#1525, #1584) - JavaScript destructured, array and rest parameters extracted, recording the binding names rather than a placeholder (#1527, #1591) Queries and analysis - Five defects that returned wrong answers without erroring: inflated repository stats, misattributed callers, discarded graph_name, count(*) after OPTIONAL MATCH, an ignored tool argument (#1577) - Dead-code detection made correct and self-consistent, including the JS module-level false positive (#600, #1559, #1578) Indexing - add_package_to_graph on a flat module no longer indexes the whole virtualenv (#1528, #1586) - SCIP job progress no longer exceeds 100% (#1535, #1583) Docs and tests - Database Options table columns realigned (#1590) - MCP tool definition contract validation (#1580) Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Contributor
|
Hi! 👋 Join our CodeGraphContext Discord channel to collaborate: https://discord.gg/dR4QY32uYQ |
Contributor
🔍 PR Code Graph Analysischore(release): bump version to 0.5.7 (#1592) 📊 Interactive VisualizationView the blast radius graph: PR Reviewer Dashboard 📦 ArtifactsThe graph JSON has been uploaded as a build artifact: Generated by CodeGraphContext using FalkorDB Lite |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Ten PRs since 0.5.6, mostly parser correctness. Every fix ships regression tests, and each was verified to fail without the change.
Parsers
class Clientwrappingclass TimeoutErrorproduced one class — the outer vanishedHAS_PARAMETERedge ever createdchar* f()never extracted, and missing frompre_scanso unresolvable as a call targetvariableswas hardcoded[]; broke receiver-type inference forvar x = new T(); x.M();function Button({label})yielded nothing; now records the binding namesQueries and analysis
#1577 — five defects that returned plausible wrong answers rather than erroring: repository stats counting
CONTAINSpaths (2202 reported vs 1551 real),find_callersmisattributing across same-named functions,graph_namediscarded so queries hit the wrong repository,count(*)afterOPTIONAL MATCH, and a tool argument advertised then ignored.#1578 — dead-code detection made correct and self-consistent. Includes #600, open since March: module-level JS calls are File-sourced edges, and the query counted only
Functioncallers.Indexing
add_package_to_graph("six")resolved to the wholesite-packagesdirectory and would index every installed dependency.Docs and tests
Full suite green at each merge; final verification 1153 passed, 7 skipped.
🤖 Generated with Claude Code