@kevinrabun/judges 3.87.0 → 3.88.0
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 +16 -0
- package/dist/cli.d.ts.map +1 -1
- package/dist/cli.js +63 -0
- package/dist/cli.js.map +1 -1
- package/dist/commands/finding-age-analysis.d.ts +5 -0
- package/dist/commands/finding-age-analysis.d.ts.map +1 -0
- package/dist/commands/finding-age-analysis.js +145 -0
- package/dist/commands/finding-age-analysis.js.map +1 -0
- package/dist/commands/finding-correlation.d.ts +5 -0
- package/dist/commands/finding-correlation.d.ts.map +1 -0
- package/dist/commands/finding-correlation.js +104 -0
- package/dist/commands/finding-correlation.js.map +1 -0
- package/dist/commands/finding-dependency-tree.d.ts +5 -0
- package/dist/commands/finding-dependency-tree.d.ts.map +1 -0
- package/dist/commands/finding-dependency-tree.js +117 -0
- package/dist/commands/finding-dependency-tree.js.map +1 -0
- package/dist/commands/finding-suppression-audit.d.ts +5 -0
- package/dist/commands/finding-suppression-audit.d.ts.map +1 -0
- package/dist/commands/finding-suppression-audit.js +138 -0
- package/dist/commands/finding-suppression-audit.js.map +1 -0
- package/dist/commands/review-ci-integration.d.ts +5 -0
- package/dist/commands/review-ci-integration.d.ts.map +1 -0
- package/dist/commands/review-ci-integration.js +126 -0
- package/dist/commands/review-ci-integration.js.map +1 -0
- package/dist/commands/review-comparative.d.ts +5 -0
- package/dist/commands/review-comparative.d.ts.map +1 -0
- package/dist/commands/review-comparative.js +150 -0
- package/dist/commands/review-comparative.js.map +1 -0
- package/dist/commands/review-custom-rule.d.ts +5 -0
- package/dist/commands/review-custom-rule.d.ts.map +1 -0
- package/dist/commands/review-custom-rule.js +170 -0
- package/dist/commands/review-custom-rule.js.map +1 -0
- package/dist/commands/review-notification.d.ts +5 -0
- package/dist/commands/review-notification.d.ts.map +1 -0
- package/dist/commands/review-notification.js +127 -0
- package/dist/commands/review-notification.js.map +1 -0
- package/dist/commands/review-template-export.d.ts +5 -0
- package/dist/commands/review-template-export.d.ts.map +1 -0
- package/dist/commands/review-template-export.js +147 -0
- package/dist/commands/review-template-export.js.map +1 -0
- package/package.json +1 -1
- package/server.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,22 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to **@kevinrabun/judges** are documented here.
|
|
4
4
|
|
|
5
|
+
## [3.88.0] — 2026-03-14
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
- Dependency tree: finding-dependency-tree (visualize finding dependency relationships)
|
|
9
|
+
- CI integration: review-ci-integration (generate CI pipeline configuration)
|
|
10
|
+
- Comparative review: review-comparative (compare two verdict reports side by side)
|
|
11
|
+
- Suppression audit: finding-suppression-audit (audit suppressed/ignored findings)
|
|
12
|
+
- Custom rules: review-custom-rule (create and manage custom review rules)
|
|
13
|
+
- Notifications: review-notification (configure review notification settings)
|
|
14
|
+
- Age analysis: finding-age-analysis (analyze finding age and lifecycle)
|
|
15
|
+
- Template export: review-template-export (export review templates for reuse)
|
|
16
|
+
- Correlation: finding-correlation (find correlations between findings across reports)
|
|
17
|
+
|
|
18
|
+
### Tests
|
|
19
|
+
- All 2,267 tests passing (0 failures)
|
|
20
|
+
|
|
5
21
|
## [3.87.0] — 2026-03-14
|
|
6
22
|
|
|
7
23
|
### Added
|
package/dist/cli.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"cli.d.ts","sourceRoot":"","sources":["../src/cli.ts"],"names":[],"mappings":";AAEA;;;;;;;;;;;;;;;;;;;GAmBG;
|
|
1
|
+
{"version":3,"file":"cli.d.ts","sourceRoot":"","sources":["../src/cli.ts"],"names":[],"mappings":";AAEA;;;;;;;;;;;;;;;;;;;GAmBG;AAk0BH;;;GAGG;AACH,wBAAgB,WAAW,CAAC,OAAO,EAAE,MAAM,GAAG,MAAM,CAcnD;AAED,wBAAgB,WAAW,CAAC,QAAQ,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,EAAE,GAAG,OAAO,CAQzE;AAiBD,UAAU,cAAc;IACtB,OAAO,CAAC,EAAE,MAAM,EAAE,CAAC;IACnB,OAAO,CAAC,EAAE,MAAM,EAAE,CAAC;IACnB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,MAAM,CAAC,EAAE,OAAO,CAAC;CAClB;AAED,wBAAgB,YAAY,CAAC,MAAM,EAAE,MAAM,EAAE,OAAO,GAAE,cAAmB,GAAG,MAAM,EAAE,CAwBnF;AAkUD,wBAAsB,MAAM,CAAC,IAAI,EAAE,MAAM,EAAE,GAAG,OAAO,CAAC,IAAI,CAAC,CAk+G1D"}
|
package/dist/cli.js
CHANGED
|
@@ -652,6 +652,15 @@ USAGE:
|
|
|
652
652
|
judges finding-pattern-library Manage finding pattern library
|
|
653
653
|
judges review-status-badge Generate status badges
|
|
654
654
|
judges finding-rule-explain Explain rules in detail
|
|
655
|
+
judges finding-dependency-tree Visualize finding dependencies
|
|
656
|
+
judges review-ci-integration Generate CI pipeline configuration
|
|
657
|
+
judges review-comparative Compare two verdict reports
|
|
658
|
+
judges finding-suppression-audit Audit suppressed findings
|
|
659
|
+
judges review-custom-rule Manage custom review rules
|
|
660
|
+
judges review-notification Manage review notifications
|
|
661
|
+
judges finding-age-analysis Analyze finding age over time
|
|
662
|
+
judges review-template-export Export review templates
|
|
663
|
+
judges finding-correlation Find correlations between findings
|
|
655
664
|
judges tune Analyze project and suggest optimal config
|
|
656
665
|
judges list List all available judges
|
|
657
666
|
judges version Show version information
|
|
@@ -3649,6 +3658,60 @@ export async function runCli(argv) {
|
|
|
3649
3658
|
runFindingRuleExplain(argv);
|
|
3650
3659
|
return;
|
|
3651
3660
|
}
|
|
3661
|
+
// ─── Finding Dependency Tree Command ──────────────────────────────
|
|
3662
|
+
if (args.command === "finding-dependency-tree") {
|
|
3663
|
+
const { runFindingDependencyTree } = await import("./commands/finding-dependency-tree.js");
|
|
3664
|
+
runFindingDependencyTree(argv);
|
|
3665
|
+
return;
|
|
3666
|
+
}
|
|
3667
|
+
// ─── Review CI Integration Command ────────────────────────────────
|
|
3668
|
+
if (args.command === "review-ci-integration") {
|
|
3669
|
+
const { runReviewCiIntegration } = await import("./commands/review-ci-integration.js");
|
|
3670
|
+
runReviewCiIntegration(argv);
|
|
3671
|
+
return;
|
|
3672
|
+
}
|
|
3673
|
+
// ─── Review Comparative Command ───────────────────────────────────
|
|
3674
|
+
if (args.command === "review-comparative") {
|
|
3675
|
+
const { runReviewComparative } = await import("./commands/review-comparative.js");
|
|
3676
|
+
runReviewComparative(argv);
|
|
3677
|
+
return;
|
|
3678
|
+
}
|
|
3679
|
+
// ─── Finding Suppression Audit Command ────────────────────────────
|
|
3680
|
+
if (args.command === "finding-suppression-audit") {
|
|
3681
|
+
const { runFindingSuppressionAudit } = await import("./commands/finding-suppression-audit.js");
|
|
3682
|
+
runFindingSuppressionAudit(argv);
|
|
3683
|
+
return;
|
|
3684
|
+
}
|
|
3685
|
+
// ─── Review Custom Rule Command ───────────────────────────────────
|
|
3686
|
+
if (args.command === "review-custom-rule") {
|
|
3687
|
+
const { runReviewCustomRule } = await import("./commands/review-custom-rule.js");
|
|
3688
|
+
runReviewCustomRule(argv);
|
|
3689
|
+
return;
|
|
3690
|
+
}
|
|
3691
|
+
// ─── Review Notification Command ──────────────────────────────────
|
|
3692
|
+
if (args.command === "review-notification") {
|
|
3693
|
+
const { runReviewNotification } = await import("./commands/review-notification.js");
|
|
3694
|
+
runReviewNotification(argv);
|
|
3695
|
+
return;
|
|
3696
|
+
}
|
|
3697
|
+
// ─── Finding Age Analysis Command ─────────────────────────────────
|
|
3698
|
+
if (args.command === "finding-age-analysis") {
|
|
3699
|
+
const { runFindingAgeAnalysis } = await import("./commands/finding-age-analysis.js");
|
|
3700
|
+
runFindingAgeAnalysis(argv);
|
|
3701
|
+
return;
|
|
3702
|
+
}
|
|
3703
|
+
// ─── Review Template Export Command ───────────────────────────────
|
|
3704
|
+
if (args.command === "review-template-export") {
|
|
3705
|
+
const { runReviewTemplateExport } = await import("./commands/review-template-export.js");
|
|
3706
|
+
runReviewTemplateExport(argv);
|
|
3707
|
+
return;
|
|
3708
|
+
}
|
|
3709
|
+
// ─── Finding Correlation Command ──────────────────────────────────
|
|
3710
|
+
if (args.command === "finding-correlation") {
|
|
3711
|
+
const { runFindingCorrelation } = await import("./commands/finding-correlation.js");
|
|
3712
|
+
runFindingCorrelation(argv);
|
|
3713
|
+
return;
|
|
3714
|
+
}
|
|
3652
3715
|
// ─── Tune Command ─────────────────────────────────────────────────
|
|
3653
3716
|
if (args.command === "tune") {
|
|
3654
3717
|
const { runTune } = await import("./commands/tune.js");
|