pumuki 6.3.251 β 6.3.252
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.252] - 2026-05-14
|
|
10
|
+
|
|
11
|
+
### Fixed
|
|
12
|
+
|
|
13
|
+
- **SDD tracking parser precision:** active tracking resolution now ignores operational bullets such as `- π§ Siguiente`, `- π§ next` or `- π§ delegable`; only real task identifiers are considered when realigning `pumuki sdd session --refresh`.
|
|
14
|
+
|
|
9
15
|
## [6.3.251] - 2026-05-14
|
|
10
16
|
|
|
11
17
|
### Fixed
|
|
@@ -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-05-14 (v6.3.252)
|
|
10
|
+
|
|
11
|
+
- **Parser de tracking estricto:** el refresh SDD ya no interpreta bullets operativos (`Siguiente`, `next`, `delegable`) como IDs de task activa.
|
|
12
|
+
- **Rollout recomendado:** sustituir `6.3.251` por `6.3.252` en RuralGo y repetir `pumuki sdd session --refresh --ttl-minutes=90`.
|
|
13
|
+
|
|
9
14
|
### 2026-05-14 (v6.3.251)
|
|
10
15
|
|
|
11
16
|
- **Refresh SDD alineado con tracking activo:** `pumuki sdd session --refresh` deja de reutilizar silenciosamente una sesiΓ³n antigua cuando `docs/RURALGO_SEGUIMIENTO.md` ya marca otra task activa.
|
|
@@ -53,7 +53,7 @@ const collectActiveTrackingChangeIds = (markdown: string): ReadonlyArray<string>
|
|
|
53
53
|
changeIds.push(normalizeChangeId(tableMatch[1]));
|
|
54
54
|
continue;
|
|
55
55
|
}
|
|
56
|
-
const bulletMatch = line.match(/^- π§ (`?[A-Z0-9][0-
|
|
56
|
+
const bulletMatch = line.match(/^- π§ (`?(?:P[A-Z0-9.-]*|RGO-\d[0-9.-]*)`?)/u);
|
|
57
57
|
if (bulletMatch?.[1]) {
|
|
58
58
|
changeIds.push(normalizeChangeId(bulletMatch[1].replace(/`/gu, '')));
|
|
59
59
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pumuki",
|
|
3
|
-
"version": "6.3.
|
|
3
|
+
"version": "6.3.252",
|
|
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": {
|