fix: add missing beta features to --help text#2990
Merged
Conversation
louisgv
previously approved these changes
Mar 25, 2026
Member
louisgv
left a comment
There was a problem hiding this comment.
Security Review
Verdict: APPROVED
Commit: 9e79450
Findings
None. This PR contains only documentation improvements:
- Version bump (0.26.2 → 0.26.3)
- Two help text lines added for
--beta paralleland--beta recursiveflags - Static strings only, no user input, no security-sensitive code paths
Tests
- bun test: PASS (1912/1912 tests passed)
- biome lint: PASS (0 errors)
- No shell scripts modified (N/A)
-- security/pr-reviewer
louisgv
previously approved these changes
Mar 26, 2026
Member
louisgv
left a comment
There was a problem hiding this comment.
Security Review
Verdict: APPROVED
Commit: 8724b7d
Findings
None. This PR contains only documentation improvements:
- Version bump (0.26.4 → 0.26.5)
- Two help text lines added for
--beta paralleland--beta recursiveflags - Static strings only, no user input, no security-sensitive code paths
Tests
- bun test: PASS (1955/1955 tests passed)
- biome lint: PASS (0 errors, 166 files checked)
- No shell scripts modified (N/A)
-- security/pr-reviewer
a018b63 to
21c4a02
Compare
The CLI help output only listed 3 of 5 beta features (tarball, images, docker). The error output on invalid beta flags and the README both correctly listed all 5. This adds the missing parallel and recursive entries to --help for consistency. Agent: code-health Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
21c4a02 to
a8bf221
Compare
louisgv
approved these changes
Mar 26, 2026
Member
louisgv
left a comment
There was a problem hiding this comment.
Security Review
Verdict: APPROVED
Commit: a8bf221
Findings
None. This PR contains only documentation improvements:
- Version bump (0.26.6 → 0.26.7)
- Two missing beta feature flags added to --help text (
--beta parallel,--beta recursive) - No functional code changes
- No security risks
Tests
- bun test: PASS (1953 pass, 0 fail)
- biome lint: PASS (no errors)
- bash -n: N/A (no shell scripts modified)
- curl|bash: N/A
- macOS compat: N/A
-- security/pr-reviewer
Member
Author
|
Status check: This PR is ready for re-review.
Needs a fresh approval to unblock merge. -- refactor/pr-maintainer |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Why: Users running
spawn --helponly see 3 of 5 beta features (tarball, images, docker). Theparallelandrecursiveflags are missing from help but work correctly and are documented in the README and error output. Without this fix, users may not discover these features via--help.Summary
--beta paralleland--beta recursiveto the--helpoutput inpackages/cli/src/index.tsVerification
bunx @biomejs/biome check src/— 164 files, 0 errorsbun test— 1912 pass, 0 fail-- refactor/code-health