Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
bb61c70
refactor(native): extract generic walk_tree to eliminate walk_node_de…
carlos-alm Mar 30, 2026
c43fb65
feat: add C, C++, Kotlin, Swift, Scala, Bash language support (#7.2)
carlos-alm Mar 30, 2026
d193e20
fix: resolve merge conflicts with main
carlos-alm Mar 30, 2026
b6a61eb
fix(native): remove local AST config shadowing in all new extractors …
carlos-alm Mar 30, 2026
54c8f88
fix(kotlin): align object_declaration kind to 'class' across engines …
carlos-alm Mar 30, 2026
b5a3bc6
fix(swift): distinguish extends vs implements in inheritance (#708)
carlos-alm Mar 30, 2026
3ba1519
fix(scala,swift): use correct kind for top-level val/var/property (#708)
carlos-alm Mar 30, 2026
9ce6657
fix(complexity): support multiple logical_node_types for Kotlin || (#…
carlos-alm Mar 30, 2026
a00650b
fix: apply biome formatting and import sort fixes (#708)
carlos-alm Mar 30, 2026
1ad60cb
fix(native): use language() for tree-sitter-kotlin 0.3 API (#708)
carlos-alm Mar 30, 2026
49cbeba
fix(ci): add .npmrc with legacy-peer-deps for tree-sitter conflicts (…
carlos-alm Mar 30, 2026
b5141d6
fix(native): bridge tree-sitter-kotlin 0.3 to tree-sitter 0.24 API (#…
carlos-alm Mar 30, 2026
730e52a
fix: resolve CI failures — SymbolKind types and Kotlin cross-platform…
carlos-alm Mar 30, 2026
02d4951
fix(ci): replace tree-sitter-kotlin with tree-sitter-kotlin-sg to fix…
carlos-alm Mar 30, 2026
e96ed95
Merge branch 'main' into feat/phase7-languages
carlos-alm Mar 30, 2026
22c8e02
fix(parity): align Scala TS extractor kinds and inheritance with Rust…
carlos-alm Mar 30, 2026
c5529b6
fix(ci): increase embedding regression test timeout to 240s (#708)
carlos-alm Mar 30, 2026
07a1d6f
fix(ci): fallback to full rebuild when cached codegraph DB is malform…
carlos-alm Mar 30, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/codegraph-impact.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ jobs:
path: .codegraph/
key: codegraph-${{ hashFiles('src/**', 'package.json') }}
restore-keys: codegraph-
- run: npx codegraph build
- name: Build codegraph
run: npx codegraph build || (rm -rf .codegraph && npx codegraph build --no-incremental)
- name: Run impact analysis
run: |
npx codegraph diff-impact --ref origin/${{ github.base_ref }} --json -T > impact.json || echo '{"affectedFiles":[],"summary":null}' > impact.json
Expand Down
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
legacy-peer-deps=true
Loading
Loading