sigmap 6.10.4 → 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,14 @@ 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
+
13
21
  ## [6.10.4] — 2026-05-11
14
22
 
15
23
  ### Fixed
package/gen-context.js CHANGED
@@ -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.4',
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.4';
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.4",
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.4",
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.4",
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.4',
21
+ version: '6.10.5',
22
22
  description: 'SigMap MCP server — code signatures on demand',
23
23
  };
24
24