sigmap 6.10.3 → 6.10.4
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/CHANGELOG.md +8 -0
- package/gen-context.js +5 -5
- package/package.json +1 -1
- package/packages/cli/package.json +1 -1
- package/packages/core/package.json +1 -1
- package/src/mcp/server.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -10,6 +10,14 @@ Format: [Semantic Versioning](https://semver.org/)
|
|
|
10
10
|
|
|
11
11
|
---
|
|
12
12
|
|
|
13
|
+
## [6.10.4] — 2026-05-11
|
|
14
|
+
|
|
15
|
+
### Fixed
|
|
16
|
+
|
|
17
|
+
- **Bundled MCP tools extractImports export** — Fixed `extractImports` function not being exported from the import-graph factory in bundled gen-context.js, which caused `explain_file` (imports/callers) and `get_impact` MCP tools to fail with "extractImports is not a function" when running via `--mcp` server. Added comprehensive tests to prevent regression.
|
|
18
|
+
|
|
19
|
+
---
|
|
20
|
+
|
|
13
21
|
## [6.10.3] — 2026-05-11
|
|
14
22
|
|
|
15
23
|
### Fixed
|
package/gen-context.js
CHANGED
|
@@ -4610,9 +4610,9 @@ __factories["./src/map/import-graph"] = function(module, exports) {
|
|
|
4610
4610
|
|
|
4611
4611
|
return lines.join('\n');
|
|
4612
4612
|
}
|
|
4613
|
-
|
|
4614
|
-
module.exports = { analyze };
|
|
4615
|
-
|
|
4613
|
+
|
|
4614
|
+
module.exports = { analyze, extractImports };
|
|
4615
|
+
|
|
4616
4616
|
};
|
|
4617
4617
|
|
|
4618
4618
|
// ── ./src/map/route-table ──
|
|
@@ -5607,7 +5607,7 @@ __factories["./src/mcp/server"] = function(module, exports) {
|
|
|
5607
5607
|
|
|
5608
5608
|
const SERVER_INFO = {
|
|
5609
5609
|
name: 'sigmap',
|
|
5610
|
-
version: '6.10.
|
|
5610
|
+
version: '6.10.4',
|
|
5611
5611
|
description: 'SigMap MCP server — code signatures on demand',
|
|
5612
5612
|
};
|
|
5613
5613
|
|
|
@@ -8234,7 +8234,7 @@ const path = require('path');
|
|
|
8234
8234
|
const os = require('os');
|
|
8235
8235
|
const { execSync } = require('child_process');
|
|
8236
8236
|
|
|
8237
|
-
const VERSION = '6.10.
|
|
8237
|
+
const VERSION = '6.10.4';
|
|
8238
8238
|
const MARKER = '\n\n## Auto-generated signatures\n<!-- Updated by gen-context.js -->\n';
|
|
8239
8239
|
|
|
8240
8240
|
function requireSourceOrBundled(key) {
|
package/package.json
CHANGED
package/src/mcp/server.js
CHANGED