pumuki 6.3.136 → 6.3.137
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
|
@@ -6,6 +6,12 @@ This project follows [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [6.3.137] - 2026-05-05
|
|
10
|
+
|
|
11
|
+
### Fixed
|
|
12
|
+
|
|
13
|
+
- **PUMUKI-INC-061 evidence/atomicity:** el guard de atomicidad ignora `.ai_evidence.json` / `.AI_EVIDENCE.json` gestionados por Pumuki al contar ficheros y scopes staged, evitando que un auto-restage de evidencia bloquee repins atómicos de consumers.
|
|
14
|
+
|
|
9
15
|
## [6.3.136] - 2026-05-05
|
|
10
16
|
|
|
11
17
|
### Fixed
|
|
@@ -4,6 +4,11 @@ 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.137)
|
|
8
|
+
|
|
9
|
+
- **Atomicidad compatible con evidencia gestionada:** `.ai_evidence.json` / `.AI_EVIDENCE.json` ya no cuentan como scope o fichero funcional en `git-atomicity`, de modo que un commit de repin no queda bloqueado solo porque el hook refresque evidencia trackeada.
|
|
10
|
+
- **RuralGo follow-up:** corrige el bloqueo observado al intentar commitear el repin `package.json` + `package-lock.json`, donde Pumuki auto-restageaba evidencia y elevaba el commit a 3 scopes.
|
|
11
|
+
|
|
7
12
|
### 2026-05-05 (v6.3.136)
|
|
8
13
|
|
|
9
14
|
- **All-severities blocking para consumers:** `PRE_WRITE`, `PRE_COMMIT`, `PRE_PUSH` y `CI` bloquean por cualquier violación de skills/reglas AST Intelligence, sin permitir rebajas por `skills.policy`, hard-mode `critical-high` ni `PRE_WRITE=advisory`.
|
|
@@ -31,6 +31,7 @@ type GitAtomicityConfig = {
|
|
|
31
31
|
const ATOMICITY_CONFIG_FILE = '.pumuki/git-atomicity.json';
|
|
32
32
|
const DEFAULT_COMMIT_PATTERN =
|
|
33
33
|
'^(feat|fix|chore|refactor|docs|test|perf|build|ci|revert)(\\([^)]+\\))?:\\s.+$';
|
|
34
|
+
const MANAGED_EVIDENCE_PATHS = new Set(['.ai_evidence.json', '.AI_EVIDENCE.json']);
|
|
34
35
|
|
|
35
36
|
const defaultConfig: GitAtomicityConfig = {
|
|
36
37
|
enabled: true,
|
|
@@ -139,6 +140,9 @@ const parseLines = (value: string): ReadonlyArray<string> =>
|
|
|
139
140
|
.map((line) => line.trim())
|
|
140
141
|
.filter((line) => line.length > 0);
|
|
141
142
|
|
|
143
|
+
const isManagedEvidencePath = (path: string): boolean =>
|
|
144
|
+
MANAGED_EVIDENCE_PATHS.has(path.replace(/\\/g, '/').trim());
|
|
145
|
+
|
|
142
146
|
const toErrorMessage = (error: unknown): string => {
|
|
143
147
|
if (error instanceof Error) {
|
|
144
148
|
return error.message;
|
|
@@ -288,7 +292,7 @@ export const evaluateGitAtomicity = (params: {
|
|
|
288
292
|
stage: params.stage,
|
|
289
293
|
fromRef: params.fromRef,
|
|
290
294
|
toRef: params.toRef,
|
|
291
|
-
});
|
|
295
|
+
}).filter((path) => !isManagedEvidencePath(path));
|
|
292
296
|
const atomicSlicesRemediation = buildAtomicSlicesRemediation({
|
|
293
297
|
git,
|
|
294
298
|
repoRoot,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pumuki",
|
|
3
|
-
"version": "6.3.
|
|
3
|
+
"version": "6.3.137",
|
|
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": {
|