pumuki 6.3.271 → 6.3.272
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,9 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [6.3.272] - 2026-05-18
|
|
4
|
+
|
|
5
|
+
- 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.
|
|
6
|
+
|
|
3
7
|
## [6.3.271] - 2026-05-18
|
|
4
8
|
|
|
5
9
|
- 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
|
|
|
@@ -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.272",
|
|
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": {
|