pumuki 6.3.149 → 6.3.150
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.
|
@@ -4,6 +4,12 @@ This file tracks the active deterministic framework line used in this repository
|
|
|
4
4
|
Canonical release chronology lives in `CHANGELOG.md`.
|
|
5
5
|
This file keeps only the operational highlights and rollout notes that matter while running the framework.
|
|
6
6
|
|
|
7
|
+
### 2026-05-05 (v6.3.150)
|
|
8
|
+
|
|
9
|
+
- **RuralGo PUMUKI-INC-061:** las notificaciones de bloqueo ya recomiendan `policy reconcile --strict --apply --json` cuando la remediación real requiere converger policy-as-code.
|
|
10
|
+
- **UX sin loop falso:** `EVIDENCE_GATE_BLOCKED` y gaps de skills/policy dejan de mostrar un comando dry-run que no puede desbloquear el repo por sí solo.
|
|
11
|
+
- **Rollout:** publicar `pumuki@6.3.150`, repinear primero RuralGo y revalidar un bloqueo de governance verificando el comando visible.
|
|
12
|
+
|
|
7
13
|
### 2026-05-05 (v6.3.145)
|
|
8
14
|
|
|
9
15
|
- **RuralGo PUMUKI-INC-124:** `skills.ios.critical-test-quality` deja de bloquear tests XCTest de UI automation/performance cuando usan `XCUIApplication`, `XCTMetric` o `measure`.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pumuki",
|
|
3
|
-
"version": "6.3.
|
|
3
|
+
"version": "6.3.150",
|
|
4
4
|
"description": "Enterprise-grade AST Intelligence System with multi-platform support (iOS, Android, Backend, Frontend) and Feature-First + DDD + Clean Architecture enforcement. Includes dynamic violations API for intelligent querying.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|
|
@@ -64,7 +64,7 @@ export const resolveBlockedCommand = (params: {
|
|
|
64
64
|
case 'EVIDENCE_CROSS_PLATFORM_CRITICAL_ENFORCEMENT_INCOMPLETE':
|
|
65
65
|
return `${buildPinnedPumukiCommand({
|
|
66
66
|
repoRoot: params.repoRoot,
|
|
67
|
-
executableAndArgs: 'pumuki policy reconcile --strict --json',
|
|
67
|
+
executableAndArgs: 'pumuki policy reconcile --strict --apply --json',
|
|
68
68
|
})} && ${buildPinnedPumukiCommand({
|
|
69
69
|
repoRoot: params.repoRoot,
|
|
70
70
|
executableAndArgs: `pumuki sdd validate --stage=${params.event.stage} --json`,
|
|
@@ -79,7 +79,7 @@ export const resolveBlockedCommand = (params: {
|
|
|
79
79
|
case 'EVIDENCE_GATE_BLOCKED':
|
|
80
80
|
return `${buildPinnedPumukiCommand({
|
|
81
81
|
repoRoot: params.repoRoot,
|
|
82
|
-
executableAndArgs: 'pumuki policy reconcile --strict --json',
|
|
82
|
+
executableAndArgs: 'pumuki policy reconcile --strict --apply --json',
|
|
83
83
|
})} && ${buildPinnedPumukiCommand({
|
|
84
84
|
repoRoot: params.repoRoot,
|
|
85
85
|
executableAndArgs: `pumuki sdd validate --stage=${params.event.stage} --json`,
|
|
@@ -41,7 +41,7 @@ const BLOCKED_REMEDIATION_BY_CODE: Readonly<Record<string, string>> = {
|
|
|
41
41
|
TRACKING_CANONICAL_IN_PROGRESS_INVALID: TRACKING_BLOCKED_REMEDIATION,
|
|
42
42
|
TRACKING_CANONICAL_SOURCE_CONFLICT: TRACKING_BLOCKED_REMEDIATION,
|
|
43
43
|
ACTIVE_RULE_IDS_EMPTY_FOR_CODE_CHANGES_HIGH:
|
|
44
|
-
'Ejecuta `pumuki policy reconcile --strict --json` y revalida antes de continuar.',
|
|
44
|
+
'Ejecuta `pumuki policy reconcile --strict --apply --json` y revalida antes de continuar.',
|
|
45
45
|
};
|
|
46
46
|
|
|
47
47
|
const BLOCKED_REMEDIATION_MAX_LENGTH_BY_VARIANT: Readonly<Record<BlockedRemediationVariant, number>> = {
|