v0.2.2: passive update-availability nudge - #22
Merged
Merged
Conversation
Add UpdateNotifier: a best-effort, fail-silent check that prints a one-line 'newer version available' notice to stderr when run interactively. Throttled to once/day (cached under %LocalAppData%), tight HTTP timeout, never touches stdout, suppressed when stderr is redirected, and disabled via ADOMD_NO_UPDATE_CHECK. Pure version parse/compare and opt-out gating are unit tested (72 tests total). Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.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
Adds a passive update-availability nudge (the DIY option, notify-only — no self-swap of the binary). Ships as v0.2.2.
When
adomdruns interactively, it does a best-effort check against the GitHub Releases API and, if a newer release exists, prints a single line to stderr:Design guarantees
%LocalAppData%\adomd-cli\update-check.json.ADOMD_NO_UPDATE_CHECK=1.adomd.exeyourself. Reuses the existing GitHub Releases + SHA256 infrastructure.Tests
v-prefix, pre-release/build metadata stripping), version comparison, and the opt-out/redirect gating logic.Verification
dotnet formatclean, 72/72 tests pass.v0.2.1) and thatprobestdout stays clean, parseable JSON with the notifier wired in.Co-authored-by: Copilot App 223556219+Copilot@users.noreply.github.com