pumuki 6.3.271 → 6.3.273
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,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [6.3.273] - 2026-05-18
|
|
4
|
+
|
|
5
|
+
- Fix `PUMUKI-INC-142` residual hook communication: when PRE_WRITE cannot issue a lease because real gate findings exist, PRE_COMMIT/PRE_PUSH keep failing closed but prioritize the real blocking finding before the lease symptom.
|
|
6
|
+
|
|
7
|
+
## [6.3.272] - 2026-05-18
|
|
8
|
+
|
|
9
|
+
- Fix lifecycle PRE_WRITE validated-diff lease materialization: `pumuki sdd validate --stage=PRE_WRITE` refreshes evidence with PRE_WRITE semantics instead of self-blocking through PRE_COMMIT/PRE_PUSH before the lease exists.
|
|
10
|
+
|
|
3
11
|
## [6.3.271] - 2026-05-18
|
|
4
12
|
|
|
5
13
|
- Lifecycle: PRE_WRITE can now materialize a `validated-diff` lease after SDD and AI Gate allow an already staged slice; PRE_COMMIT/PRE_PUSH accept it only while the current code paths match the validated diff, fixing RuralGo `PUMUKI-INC-142` without opening a bypass.
|
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
v6.3.
|
|
1
|
+
v6.3.272
|
|
@@ -4,9 +4,13 @@ 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-18 (v6.3.272)
|
|
8
|
+
|
|
9
|
+
- `PUMUKI-INC-142`: `sdd validate --stage=PRE_WRITE` refreshes evidence with PRE_WRITE semantics before writing the validated-diff lease, avoiding the PRE_COMMIT/PRE_PUSH bootstrap loop that still produced `ENFORCEMENT_GAP_PRE_WRITE_LEASE_MISSING` in real RuralGo commits.
|
|
10
|
+
|
|
7
11
|
### 2026-05-18 (v6.3.271)
|
|
8
12
|
|
|
9
|
-
- Published `pumuki.3.271` with `PUMUKI-INC-142` lease parity: PRE_WRITE validated staged slices now create a `validated-diff` lease consumed by PRE_COMMIT/PRE_PUSH when the diff is unchanged, while changed slices still fail closed.
|
|
13
|
+
- Published `pumuki@6.3.271` with `PUMUKI-INC-142` lease parity: PRE_WRITE validated staged slices now create a `validated-diff` lease consumed by PRE_COMMIT/PRE_PUSH when the diff is unchanged, while changed slices still fail closed.
|
|
10
14
|
|
|
11
15
|
## 2026-04 (CLI stability and macOS notifications)
|
|
12
16
|
|
|
@@ -1284,7 +1284,6 @@ export async function runPlatformGate(params: {
|
|
|
1284
1284
|
...(contextBlockingFinding ? [contextBlockingFinding] : []),
|
|
1285
1285
|
sddBlockingFinding,
|
|
1286
1286
|
...(degradedModeFinding ? [degradedModeFinding] : []),
|
|
1287
|
-
...(preWriteLeaseFinding ? [preWriteLeaseFinding] : []),
|
|
1288
1287
|
...(policyAsCodeBlockingFinding ? [policyAsCodeBlockingFinding] : []),
|
|
1289
1288
|
...(effectiveUnsupportedSkillsMappingFinding ? [effectiveUnsupportedSkillsMappingFinding] : []),
|
|
1290
1289
|
...(effectivePlatformSkillsCoverageFinding ? [effectivePlatformSkillsCoverageFinding] : []),
|
|
@@ -1298,6 +1297,7 @@ export async function runPlatformGate(params: {
|
|
|
1298
1297
|
...brownfieldHotspotFindings,
|
|
1299
1298
|
...tddBddEvaluation.findings,
|
|
1300
1299
|
...findings,
|
|
1300
|
+
...(preWriteLeaseFinding ? [preWriteLeaseFinding] : []),
|
|
1301
1301
|
]
|
|
1302
1302
|
: effectiveUnsupportedSkillsMappingFinding
|
|
1303
1303
|
|| effectivePlatformSkillsCoverageFinding
|
|
@@ -1317,7 +1317,6 @@ export async function runPlatformGate(params: {
|
|
|
1317
1317
|
? [
|
|
1318
1318
|
...(contextBlockingFinding ? [contextBlockingFinding] : []),
|
|
1319
1319
|
...(degradedModeFinding ? [degradedModeFinding] : []),
|
|
1320
|
-
...(preWriteLeaseFinding ? [preWriteLeaseFinding] : []),
|
|
1321
1320
|
...(policyAsCodeBlockingFinding ? [policyAsCodeBlockingFinding] : []),
|
|
1322
1321
|
...(effectiveUnsupportedSkillsMappingFinding ? [effectiveUnsupportedSkillsMappingFinding] : []),
|
|
1323
1322
|
...(effectivePlatformSkillsCoverageFinding ? [effectivePlatformSkillsCoverageFinding] : []),
|
|
@@ -1331,6 +1330,7 @@ export async function runPlatformGate(params: {
|
|
|
1331
1330
|
...brownfieldHotspotFindings,
|
|
1332
1331
|
...tddBddEvaluation.findings,
|
|
1333
1332
|
...findings,
|
|
1333
|
+
...(preWriteLeaseFinding ? [preWriteLeaseFinding] : []),
|
|
1334
1334
|
]
|
|
1335
1335
|
: brownfieldHotspotFindings.length > 0
|
|
1336
1336
|
? [...brownfieldHotspotFindings, ...findings]
|
|
@@ -119,7 +119,7 @@ export const buildPreWriteAutomationTrace = async (params: {
|
|
|
119
119
|
try {
|
|
120
120
|
const gateExitCode = await params.runPlatformGate({
|
|
121
121
|
policy: {
|
|
122
|
-
stage: '
|
|
122
|
+
stage: 'PRE_WRITE',
|
|
123
123
|
blockOnOrAbove: 'INFO',
|
|
124
124
|
warnOnOrAbove: 'INFO',
|
|
125
125
|
},
|
|
@@ -134,7 +134,7 @@ export const buildPreWriteAutomationTrace = async (params: {
|
|
|
134
134
|
trace.actions.push({
|
|
135
135
|
action: 'refresh_evidence',
|
|
136
136
|
status: 'OK',
|
|
137
|
-
details: `stage=
|
|
137
|
+
details: `stage=PRE_WRITE runPlatformGate exit_code=${gateExitCode}`,
|
|
138
138
|
});
|
|
139
139
|
aiGate = activeDependencies.runEnterpriseAiGateCheck({
|
|
140
140
|
repoRoot: params.repoRoot,
|
|
@@ -155,7 +155,7 @@ export const buildPreWriteAutomationTrace = async (params: {
|
|
|
155
155
|
try {
|
|
156
156
|
const gateExitCode = await params.runPlatformGate({
|
|
157
157
|
policy: {
|
|
158
|
-
stage: '
|
|
158
|
+
stage: 'PRE_WRITE',
|
|
159
159
|
blockOnOrAbove: 'ERROR',
|
|
160
160
|
warnOnOrAbove: 'WARN',
|
|
161
161
|
},
|
|
@@ -170,7 +170,7 @@ export const buildPreWriteAutomationTrace = async (params: {
|
|
|
170
170
|
trace.actions.push({
|
|
171
171
|
action: 'refresh_evidence',
|
|
172
172
|
status: 'OK',
|
|
173
|
-
details: `stage=
|
|
173
|
+
details: `stage=PRE_WRITE runPlatformGate exit_code=${gateExitCode}`,
|
|
174
174
|
});
|
|
175
175
|
aiGate = activeDependencies.runEnterpriseAiGateCheck({
|
|
176
176
|
repoRoot: params.repoRoot,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pumuki",
|
|
3
|
-
"version": "6.3.
|
|
3
|
+
"version": "6.3.273",
|
|
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": {
|