sigmap 6.10.3 → 6.10.5

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 CHANGED
@@ -10,6 +10,22 @@ Format: [Semantic Versioning](https://semver.org/)
10
10
 
11
11
  ---
12
12
 
13
+ ## [6.10.5] — 2026-05-11
14
+
15
+ ### Added
16
+
17
+ - **Branching strategy tests** — Added regression tests verifying the develop-first branching workflow to ensure all PRs target develop before release merges to main.
18
+
19
+ ---
20
+
21
+ ## [6.10.4] — 2026-05-11
22
+
23
+ ### Fixed
24
+
25
+ - **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.
26
+
27
+ ---
28
+
13
29
  ## [6.10.3] — 2026-05-11
14
30
 
15
31
  ### 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.3',
5610
+ version: '6.10.5',
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.3';
8237
+ const VERSION = '6.10.5';
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sigmap",
3
- "version": "6.10.3",
3
+ "version": "6.10.5",
4
4
  "description": "Zero-dependency AI context engine — 97% token reduction. No npm install. Runs on Node 18+.",
5
5
  "main": "gen-context.js",
6
6
  "exports": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sigmap-cli",
3
- "version": "6.10.3",
3
+ "version": "6.10.5",
4
4
  "description": "SigMap CLI wrapper — thin adapter for programmatic CLI invocation",
5
5
  "main": "index.js",
6
6
  "keywords": [
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sigmap-core",
3
- "version": "6.10.3",
3
+ "version": "6.10.5",
4
4
  "description": "SigMap core library — zero-dependency code signature extraction, retrieval, and security scanning",
5
5
  "main": "index.js",
6
6
  "keywords": [
package/src/mcp/server.js CHANGED
@@ -18,7 +18,7 @@ const { readContext, searchSignatures, getMap, createCheckpoint, getRouting, exp
18
18
 
19
19
  const SERVER_INFO = {
20
20
  name: 'sigmap',
21
- version: '6.10.3',
21
+ version: '6.10.5',
22
22
  description: 'SigMap MCP server — code signatures on demand',
23
23
  };
24
24