sigmap 2.0.0-beta.4 → 2.0.0-beta.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 +11 -0
- package/gen-context.js +13 -2
- package/package.json +1 -1
- package/src/mcp/server.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,17 @@ Format: [Semantic Versioning](https://semver.org/)
|
|
|
6
6
|
|
|
7
7
|
---
|
|
8
8
|
|
|
9
|
+
## [2.0.0-beta.5] — 2026-04-03
|
|
10
|
+
|
|
11
|
+
### Changed
|
|
12
|
+
- Prerelease version bumped from `2.0.0-beta.4` to `2.0.0-beta.5` across CLI, MCP server info, root package metadata, and VS Code extension metadata.
|
|
13
|
+
|
|
14
|
+
### Validation gate
|
|
15
|
+
- 21/21 extractor tests passed
|
|
16
|
+
- 17/17 integration suites passed (including v2plus 3/3)
|
|
17
|
+
|
|
18
|
+
---
|
|
19
|
+
|
|
9
20
|
## [2.0.0-beta.4] — 2026-04-03
|
|
10
21
|
|
|
11
22
|
### Changed
|
package/gen-context.js
CHANGED
|
@@ -3520,7 +3520,7 @@ const path = require('path');
|
|
|
3520
3520
|
const os = require('os');
|
|
3521
3521
|
const { execSync } = require('child_process');
|
|
3522
3522
|
|
|
3523
|
-
const VERSION = '2.0.0-beta.
|
|
3523
|
+
const VERSION = '2.0.0-beta.5';
|
|
3524
3524
|
const MARKER = '\n\n## Auto-generated signatures\n<!-- Updated by gen-context.js -->\n';
|
|
3525
3525
|
|
|
3526
3526
|
function requireSourceOrBundled(key) {
|
|
@@ -3880,7 +3880,18 @@ function buildChangesSection(cwd, config, fileEntries) {
|
|
|
3880
3880
|
cwd, encoding: 'utf8', stdio: ['pipe', 'pipe', 'pipe'],
|
|
3881
3881
|
});
|
|
3882
3882
|
} catch (_) {
|
|
3883
|
-
|
|
3883
|
+
// HEAD~n doesn't exist (shallow repo) — clamp to deepest valid ancestor
|
|
3884
|
+
let best = 1;
|
|
3885
|
+
for (let k = n - 1; k >= 2; k--) {
|
|
3886
|
+
try {
|
|
3887
|
+
execSync(`git rev-parse --verify HEAD~${k} 2>/dev/null`, {
|
|
3888
|
+
cwd, encoding: 'utf8', stdio: ['pipe', 'pipe', 'pipe'],
|
|
3889
|
+
});
|
|
3890
|
+
best = k;
|
|
3891
|
+
break;
|
|
3892
|
+
} catch (_) {}
|
|
3893
|
+
}
|
|
3894
|
+
range = `HEAD~${best}..HEAD`;
|
|
3884
3895
|
}
|
|
3885
3896
|
|
|
3886
3897
|
const namesOnly = execSync(`git diff ${range} --name-only 2>/dev/null`, {
|
package/package.json
CHANGED
package/src/mcp/server.js
CHANGED