@sdsrs/code-graph 0.122.1 → 0.123.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.
|
@@ -324,6 +324,13 @@ function runMain() {
|
|
|
324
324
|
...(pattern ? { pattern } : {}),
|
|
325
325
|
fallthrough: answer.status,
|
|
326
326
|
reason: answer.status,
|
|
327
|
+
// Attribute the skip to the mode that burned the attempt — the LAST mode
|
|
328
|
+
// tried, so a callgraph miss that fell through to grep is charged to grep,
|
|
329
|
+
// matching the fallback order above. Without this the aggregator files
|
|
330
|
+
// every skip under one '?' bucket and you can see THAT injects fail but
|
|
331
|
+
// not WHICH mode is failing (D#147). The Rust side keeps this out of
|
|
332
|
+
// `inject_by_mode` (delivered-only) — see src/cli/usage.rs.
|
|
333
|
+
mode: answeredMode,
|
|
327
334
|
});
|
|
328
335
|
return;
|
|
329
336
|
}
|
|
@@ -35,7 +35,7 @@ jobs:
|
|
|
35
35
|
node-version: '20'
|
|
36
36
|
- name: Build snapshot
|
|
37
37
|
run: |
|
|
38
|
-
npx -y -p @sdsrs/code-graph@0.
|
|
38
|
+
npx -y -p @sdsrs/code-graph@0.123.0 code-graph-mcp snapshot create --out snapshot.db
|
|
39
39
|
zstd -9 snapshot.db -o snapshot.db.zst
|
|
40
40
|
mv snapshot.db.zst "code-graph-snapshot-${GITHUB_SHA:0:7}.db.zst"
|
|
41
41
|
- name: Upload to release
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sdsrs/code-graph",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.123.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": {
|
|
@@ -35,10 +35,10 @@
|
|
|
35
35
|
"node": ">=16"
|
|
36
36
|
},
|
|
37
37
|
"optionalDependencies": {
|
|
38
|
-
"@sdsrs/code-graph-linux-x64": "0.
|
|
39
|
-
"@sdsrs/code-graph-linux-arm64": "0.
|
|
40
|
-
"@sdsrs/code-graph-darwin-x64": "0.
|
|
41
|
-
"@sdsrs/code-graph-darwin-arm64": "0.
|
|
42
|
-
"@sdsrs/code-graph-win32-x64": "0.
|
|
38
|
+
"@sdsrs/code-graph-linux-x64": "0.123.0",
|
|
39
|
+
"@sdsrs/code-graph-linux-arm64": "0.123.0",
|
|
40
|
+
"@sdsrs/code-graph-darwin-x64": "0.123.0",
|
|
41
|
+
"@sdsrs/code-graph-darwin-arm64": "0.123.0",
|
|
42
|
+
"@sdsrs/code-graph-win32-x64": "0.123.0"
|
|
43
43
|
}
|
|
44
44
|
}
|