Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: CodeGraphContext/CodeGraphContext
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main
Choose a base ref
...
head repository: CodeGraphContext/CodeGraphContext
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: fix/1516-bundle-languages
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 1 commit
  • 4 files changed
  • 2 contributors

Commits on Aug 13, 2026

  1. fix(graph): populate bundle metadata languages

    Two defects meant every exported bundle advertised no languages.
    
    1. Bundle export reads f.language on File nodes, but no writer ever set it
       and the Kuzu File table had no such column. The `if record["language"]`
       guard then filtered every row out. The per-file language is already known
       at write time as file_data['lang'], so persist it -- plus the schema
       column, a migration for existing databases, and the SCHEMA_MAP allow-list
       entry, without which Kuzu drops the property silently.
    
    2. The language block sat inside `if repo_path and repo_path.exists()`, so a
       whole-graph export never set the key at all, even with the property
       present. Moved out and given an unscoped query branch.
    
    Fixes #1516.
    
    Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
    Shashankss1205 and claude committed Aug 13, 2026
    Configuration menu
    Copy the full SHA
    4695c68 View commit details
    Browse the repository at this point in the history
Loading