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 +8 -0
- package/gen-context.js +2 -2
- 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.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.
|
|
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.
|
|
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
package/src/mcp/server.js
CHANGED