pumuki 6.3.83 → 6.3.84
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/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
v6.3.
|
|
1
|
+
v6.3.84
|
|
@@ -6,6 +6,11 @@ This file keeps only the operational highlights and rollout notes that matter wh
|
|
|
6
6
|
|
|
7
7
|
## 2026-04 (CLI stability and macOS notifications)
|
|
8
8
|
|
|
9
|
+
### 2026-04-20 (v6.3.84)
|
|
10
|
+
|
|
11
|
+
- **Tracking en español**: `TRACKING_CANONICAL_SOURCE_CONFLICT` y `TRACKING_CANONICAL_IN_PROGRESS_INVALID` ya renderizan una causa 100% en español en el banner y en el modal macOS.
|
|
12
|
+
- **Rollout recomendado**: publicar `pumuki@6.3.84`, repin inmediato en los consumers donde el bloqueo de tracking sigue vivo y verificar que la notificación visible deja de mezclar inglés y español.
|
|
13
|
+
|
|
9
14
|
### 2026-04-20 (v6.3.83)
|
|
10
15
|
|
|
11
16
|
- **Copy 100% en español**: `gate.blocked` ya no filtra `causeMessage` ni `remediation` en inglés cuando el código no está mapeado; el fallback visible para usuario final queda íntegramente en español.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pumuki",
|
|
3
|
-
"version": "6.3.
|
|
3
|
+
"version": "6.3.84",
|
|
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": {
|
|
@@ -21,6 +21,10 @@ const BLOCKED_CAUSE_SUMMARY_BY_CODE: Readonly<Record<string, string>> = {
|
|
|
21
21
|
BACKEND_AVOID_EXPLICIT_ANY: 'Se detectó uso de "any" explícito en backend.',
|
|
22
22
|
GIT_ATOMICITY_TOO_MANY_SCOPES: 'Se han cambiado demasiados scopes en el mismo commit.',
|
|
23
23
|
SOLID_HEURISTIC: 'Se detectó una violación estructural en el cambio actual.',
|
|
24
|
+
TRACKING_CANONICAL_SOURCE_CONFLICT:
|
|
25
|
+
'Hay varias fuentes canónicas de seguimiento declaradas.',
|
|
26
|
+
TRACKING_CANONICAL_IN_PROGRESS_INVALID:
|
|
27
|
+
'El archivo canónico de seguimiento debe tener exactamente una tarea en construcción.',
|
|
24
28
|
};
|
|
25
29
|
|
|
26
30
|
const ENGLISH_CAUSE_HINTS = [
|