@rainy-updates/cli 0.5.3 → 0.5.4

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
@@ -2,6 +2,24 @@
2
2
 
3
3
  All notable changes to this project are documented in this file.
4
4
 
5
+ ## [0.5.4] - 2026-03-01
6
+
7
+ Production hotfix for interactive review stability.
8
+
9
+ ### Fixed
10
+
11
+ - Fixed a production bug where `review --interactive` could leak raw output from aggregated runners such as `resolve` before the Ink TUI rendered.
12
+ - Fixed the review aggregation silencing model so concurrent dependency analysis no longer races on `stdout` / `stderr` restoration.
13
+ - Restored the intended interactive entry experience for review mode:
14
+ - `Rainy Review Queue`
15
+ - `Review Queue`
16
+ - `Decision Panel`
17
+
18
+ ### Changed
19
+
20
+ - Clarified `doctor --verdict-only` help text so it matches the real 3-line quick-verdict contract.
21
+ - Added dedicated TUI usage documentation in `docs/tui-guide.md` and linked it from the review workflow docs and README.
22
+
5
23
  ## [0.5.3] - 2026-03-01
6
24
 
7
25
  GA stabilization and review-centered workflow refinement.
package/README.md CHANGED
@@ -13,6 +13,9 @@ Command model:
13
13
  Review workflow:
14
14
  [Review workflow guide](./docs/review-workflow.md)
15
15
 
16
+ TUI usage:
17
+ [TUI guide](./docs/tui-guide.md)
18
+
16
19
  Risk engine:
17
20
  [Risk engine guide](./docs/risk-engine.md)
18
21
 
package/dist/bin/cli.js CHANGED
@@ -85,7 +85,7 @@ async function main() {
85
85
  process.exitCode = result.totalFlagged > 0 ? 1 : 0;
86
86
  return;
87
87
  }
88
- // ─── v0.5.3 commands ─────────────────────────────────────────────────────
88
+ // ─── v0.5.4 commands ─────────────────────────────────────────────────────
89
89
  if (parsed.command === "unused") {
90
90
  const { runUnused } = await import("../commands/unused/runner.js");
91
91
  const result = await runUnused(parsed.options);
@@ -12,13 +12,13 @@ export async function buildReviewResult(options) {
12
12
  showHomepage: true,
13
13
  };
14
14
  const checkResult = await check(baseCheckOptions);
15
- const [auditResult, resolveResult, healthResult, licenseResult, unusedResult] = await Promise.all([
16
- runSilenced(() => import("../commands/audit/runner.js").then((mod) => mod.runAudit(toAuditOptions(options)))),
17
- runSilenced(() => import("../commands/resolve/runner.js").then((mod) => mod.runResolve(toResolveOptions(options)))),
18
- runSilenced(() => import("../commands/health/runner.js").then((mod) => mod.runHealth(toHealthOptions(options)))),
19
- runSilenced(() => import("../commands/licenses/runner.js").then((mod) => mod.runLicenses(toLicenseOptions(options)))),
20
- runSilenced(() => import("../commands/unused/runner.js").then((mod) => mod.runUnused(toUnusedOptions(options)))),
21
- ]);
15
+ const [auditResult, resolveResult, healthResult, licenseResult, unusedResult] = await runSilenced(() => Promise.all([
16
+ import("../commands/audit/runner.js").then((mod) => mod.runAudit(toAuditOptions(options))),
17
+ import("../commands/resolve/runner.js").then((mod) => mod.runResolve(toResolveOptions(options))),
18
+ import("../commands/health/runner.js").then((mod) => mod.runHealth(toHealthOptions(options))),
19
+ import("../commands/licenses/runner.js").then((mod) => mod.runLicenses(toLicenseOptions(options))),
20
+ import("../commands/unused/runner.js").then((mod) => mod.runUnused(toUnusedOptions(options))),
21
+ ]));
22
22
  const advisoryPackages = new Set(auditResult.packages.map((pkg) => pkg.packageName));
23
23
  const impactedUpdates = applyImpactScores(checkResult.updates, {
24
24
  advisoryPackages,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rainy-updates/cli",
3
- "version": "0.5.3",
3
+ "version": "0.5.4",
4
4
  "description": "The fastest DevOps-first dependency CLI. Checks, audits, upgrades, bisects, and automates npm/pnpm dependencies in CI.",
5
5
  "type": "module",
6
6
  "private": false,