Conversation
…-date path (#15) Both 'specflow self-update --check' and 'specflow self-update' (no flag) used to print '✓ already up to date (X.Y.Z)' when no update was available. That made --check (documented as 'reports availability only') indistinguishable from a real (no-op) update from a script's perspective. Now: --check, up-to-date: '✓ no update available — current X.Y.Z' bare, up-to-date: '✓ already up to date (X.Y.Z)' (unchanged) When an update IS available, the two forms already differed (--check prints 'Run `specflow self-update` to install.', bare proceeds to download), so no change needed there. Drops #15 from .claude/agents/qa-tester/memory/tracked-findings.md so the next QA run re-verifies the fix from a fresh-eyes perspective. Closes #15. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
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.
Summary
Both
specflow self-update --checkandspecflow self-update(no flag) used to print✓ already up to date (X.Y.Z)when no update was available — making--check(documented as "reports availability only") indistinguishable from a real (no-op) update from a script's perspective.Now:
When an update IS available, the two forms already differed (
--checkprintsRun \specflow self-update` to install.`, bare proceeds to download) — no change needed there.Drops
#15from.claude/agents/qa-tester/memory/tracked-findings.mdso the next QA run re-verifies.Closes #15.
Test plan
deno task test— 318 tests pass.deno run --allow-all src/main.ts self-update --check→ "no update available — current 0.7.2";deno run --allow-all src/main.ts self-update→ "already up to date (0.7.2)".🤖 Generated with Claude Code