@sdsrs/code-graph 0.15.1 → 0.16.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -7,7 +7,7 @@ A high-performance code knowledge graph server implementing the [Model Context P
7
7
  - **Multi-language parsing** — Tree-sitter AST extraction for 16 languages: TypeScript, JavaScript, Go, Python, Rust, Java, C, C++, C#, Kotlin, Ruby, PHP, Swift, Dart, HTML, CSS
8
8
  - **Semantic code search** — Hybrid BM25 full-text + vector semantic search with Reciprocal Rank Fusion (RRF), powered by sqlite-vec
9
9
  - **Call graph traversal** — Recursive CTE queries to trace callers/callees with cycle detection
10
- - **HTTP route tracing** — Map route paths to backend handler functions (Express, Flask/FastAPI, Go, ASP.NET, Rails, Laravel, Vapor)
10
+ - **HTTP route tracing** — Map route paths to backend handler functions (Express, Flask/FastAPI, Go `net/http`)
11
11
  - **Dead code detection** — Find unreferenced symbols with smart Orphan/Exported-Unused classification
12
12
  - **Impact analysis** — Determine the blast radius of code changes by tracing all dependents
13
13
  - **Incremental indexing** — Merkle tree change detection with file system watcher for real-time updates. Smart event filtering skips metadata-only changes (chmod, xattr)
@@ -4,7 +4,7 @@
4
4
  "author": {
5
5
  "name": "sdsrs"
6
6
  },
7
- "version": "0.15.1",
7
+ "version": "0.16.0",
8
8
  "keywords": [
9
9
  "code-graph",
10
10
  "ast",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sdsrs/code-graph",
3
- "version": "0.15.1",
3
+ "version": "0.16.0",
4
4
  "description": "MCP server that indexes codebases into an AST knowledge graph with semantic search, call graph traversal, and HTTP route tracing",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -34,10 +34,10 @@
34
34
  "node": ">=16"
35
35
  },
36
36
  "optionalDependencies": {
37
- "@sdsrs/code-graph-linux-x64": "0.15.1",
38
- "@sdsrs/code-graph-linux-arm64": "0.15.1",
39
- "@sdsrs/code-graph-darwin-x64": "0.15.1",
40
- "@sdsrs/code-graph-darwin-arm64": "0.15.1",
41
- "@sdsrs/code-graph-win32-x64": "0.15.1"
37
+ "@sdsrs/code-graph-linux-x64": "0.16.0",
38
+ "@sdsrs/code-graph-linux-arm64": "0.16.0",
39
+ "@sdsrs/code-graph-darwin-x64": "0.16.0",
40
+ "@sdsrs/code-graph-darwin-arm64": "0.16.0",
41
+ "@sdsrs/code-graph-win32-x64": "0.16.0"
42
42
  }
43
43
  }