@planu/cli 4.10.8 → 4.10.9

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
@@ -1,3 +1,14 @@
1
+ ## [4.10.9] - 2026-07-07
2
+
3
+ ### Bug Fixes
4
+ - fix: promote SPEC-1115 validation scorer evidence
5
+ - fix: merge SPEC-1115 validation scorer evidence
6
+ - fix(SPEC-1115): require complete traceability evidence
7
+
8
+ ### Chores
9
+ - chore: refresh native dependency lock metadata
10
+
11
+
1
12
  ## [4.10.8] - 2026-07-07
2
13
 
3
14
  ### Refactoring
@@ -22,14 +22,16 @@ function normalizeCriterionForEvidence(value) {
22
22
  .toLowerCase();
23
23
  }
24
24
  function rowHasValidationEvidence(row) {
25
- const hasEvidence = [
25
+ const hasImplementationEvidence = [
26
+ row.scenario?.trim(),
26
27
  row.testEvidence?.length,
27
28
  row.contractEvidence?.length,
28
29
  row.manualEvidence?.trim(),
29
- row.validationEvidence?.trim(),
30
- row.reviewerEvidence?.trim(),
31
30
  ].some((value) => Boolean(value));
32
- return row.changedFiles.length > 0 && hasEvidence;
31
+ return (row.changedFiles.length > 0 &&
32
+ hasImplementationEvidence &&
33
+ Boolean(row.validationEvidence?.trim()) &&
34
+ Boolean(row.reviewerEvidence?.trim()));
33
35
  }
34
36
  async function readTraceabilityEvidence(spec, projectPath) {
35
37
  try {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@planu/cli",
3
- "version": "4.10.8",
3
+ "version": "4.10.9",
4
4
  "description": "Planu — MCP Server for Spec Driven Development with native Rust acceleration for hot paths. Cross-platform (Linux/macOS/Windows, x64/arm64, glibc/musl).",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -34,14 +34,14 @@
34
34
  "packageName": "@planu/core"
35
35
  },
36
36
  "optionalDependencies": {
37
- "@planu/core-darwin-arm64": "4.10.8",
38
- "@planu/core-darwin-x64": "4.10.8",
39
- "@planu/core-linux-arm64-gnu": "4.10.8",
40
- "@planu/core-linux-arm64-musl": "4.10.8",
41
- "@planu/core-linux-x64-gnu": "4.10.8",
42
- "@planu/core-linux-x64-musl": "4.10.8",
43
- "@planu/core-win32-arm64-msvc": "4.10.8",
44
- "@planu/core-win32-x64-msvc": "4.10.8"
37
+ "@planu/core-darwin-arm64": "4.10.9",
38
+ "@planu/core-darwin-x64": "4.10.9",
39
+ "@planu/core-linux-arm64-gnu": "4.10.9",
40
+ "@planu/core-linux-arm64-musl": "4.10.9",
41
+ "@planu/core-linux-x64-gnu": "4.10.9",
42
+ "@planu/core-linux-x64-musl": "4.10.9",
43
+ "@planu/core-win32-arm64-msvc": "4.10.9",
44
+ "@planu/core-win32-x64-msvc": "4.10.9"
45
45
  },
46
46
  "engines": {
47
47
  "node": ">=24.0.0"
package/planu-native.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "dev.planu.native",
3
3
  "displayName": "Planu Native Lightweight Surface",
4
- "version": "4.10.8",
4
+ "version": "4.10.9",
5
5
  "packageName": "@planu/cli",
6
6
  "modes": {
7
7
  "lightweight": {
package/planu-plugin.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "dev.planu.cli",
3
3
  "displayName": "Planu — Spec Driven Development",
4
4
  "description": "Manage software specs, estimations, and autonomous SDD workflows. Language-agnostic MCP server for Claude Code.",
5
- "version": "4.10.8",
5
+ "version": "4.10.9",
6
6
  "icon": "assets/plugin/icon.svg",
7
7
  "command": [
8
8
  "npx",