Open
Conversation
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Co-authored-by: greptile-apps[bot] <165735046+greptile-apps[bot]@users.noreply.github.com>
fix(cpp): attach CALLS edges to Method nodes instead of Module
fix(cli): make --clean work independently of --update-graph and delete hash cache
Bumps the uv group with 1 update in the / directory: [authlib](https://github.com/authlib/authlib). Updates `authlib` from 1.6.7 to 1.6.9 - [Release notes](https://github.com/authlib/authlib/releases) - [Changelog](https://github.com/authlib/authlib/blob/main/docs/changelog.rst) - [Commits](authlib/authlib@v1.6.7...v1.6.9) --- updated-dependencies: - dependency-name: authlib dependency-version: 1.6.9 dependency-type: indirect dependency-group: uv ... Signed-off-by: dependabot[bot] <[email protected]>
chore(deps): bump authlib from 1.6.7 to 1.6.9 in the uv group across 1 directory
feat: add --project-name flag to override qualified-name prefix
feat: add absolute_path property to all file-based graph nodes
…ful message (closes #274)
…ed health timeout
fix: integrate LiteLLM provider and update all dependencies
fix: add lexicographic tie-breaking for deterministic call resolution
feat: add Python 3.14 support
…sorted os.walk
The Java stdlib extractor spawned javac/java subprocesses to check if a
fully qualified name belongs to the standard library. This was
non-deterministic (JVM timing), slow (~200ms per call), and required a
JDK installation.
Replace with a static prefix check against known Java stdlib top-level
packages (java.*, javax.*, jdk.*, com.sun.*, sun.*, org.w3c.*,
org.xml.*, org.ietf.*, org.omg.*, netscape.*). This is the same
approach used by IntelliJ and Eclipse for stdlib detection.
Also replace rglob("*") with sorted os.walk in _collect_eligible_files
for deterministic file processing order across different filesystem
layouts.
…rectories in os.walk
…_collect_eligible_files
…esolution fix: replace Java stdlib subprocess with static prefix check and sorted os.walk
…output QueryCursor.captures() in py-tree-sitter v0.25 returns capture lists in non-deterministic order across process invocations. This caused method overload resolution to pick different overloads between runs, producing non-reproducible CALLS relationships for Java repos with overloaded methods (e.g., gson: 3054-3062 rels across runs). Add sorted_captures() wrapper that sorts each capture list by start_byte and replace all 17 captures() call sites across the codebase to use it.
…ring fix: sort tree-sitter captures by start_byte for deterministic graph output
ci: add pr-split score check on pull requests
ci: use published marketplace tag v1.0.0 for pr-split
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.
sync from remote upstream