@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 +18 -0
- package/README.md +3 -0
- package/dist/bin/cli.js +1 -1
- package/dist/core/review-model.js +7 -7
- package/package.json +1 -1
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
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.
|
|
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
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
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