pumuki 6.3.287 → 6.3.289

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
- 6.3.287
1
+ 6.3.289
@@ -46,7 +46,7 @@ const resolveViolationSeverity = (violation: CompatibilityViolation): string =>
46
46
  };
47
47
 
48
48
  const causeKey = (cause: EvidenceBlockingCause): string =>
49
- [cause.source, cause.ruleId, cause.code, cause.file ?? '', String(cause.lines ?? '')].join('|');
49
+ [cause.ruleId, cause.code, cause.file ?? '', String(cause.lines ?? '')].join('|');
50
50
 
51
51
  export const extractEvidenceBlockingCauses = (
52
52
  evidence: AiEvidenceV2_1
@@ -55,7 +55,8 @@ export const extractEvidenceBlockingCauses = (
55
55
  const seen = new Set<string>();
56
56
 
57
57
  for (const finding of evidence.snapshot.findings) {
58
- if (finding.blocking === false || !isBlockingSeverity(finding.severity)) {
58
+ const explicitlyBlocking = finding.blocking === true;
59
+ if (finding.blocking === false || (!explicitlyBlocking && !isBlockingSeverity(finding.severity))) {
59
60
  continue;
60
61
  }
61
62
  const cause = toFindingBlockingCause(finding);
@@ -67,7 +68,11 @@ export const extractEvidenceBlockingCauses = (
67
68
  }
68
69
 
69
70
  for (const violation of evidence.ai_gate.violations) {
70
- if (violation.blocking === false || !isBlockingSeverity(resolveViolationSeverity(violation))) {
71
+ const explicitlyBlocking = violation.blocking === true;
72
+ if (
73
+ violation.blocking === false ||
74
+ (!explicitlyBlocking && !isBlockingSeverity(resolveViolationSeverity(violation)))
75
+ ) {
71
76
  continue;
72
77
  }
73
78
  const cause = toViolationBlockingCause(violation);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pumuki",
3
- "version": "6.3.287",
3
+ "version": "6.3.289",
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": {