Closed
Conversation
- Add AutoUpdater service that performs fire-and-forget background updates - Throttle stable channel checks to once per 24 hours (no throttle for daily/staging) - Skip auto-update for dotnet tool installs, PR/hive builds, and update --self command - Use named Mutex to prevent concurrent update attempts across processes - Add ASPIRE_CLI_AUTO_UPDATE_DISABLED env var to opt out Refactoring: - Extract shared CliInstaller for UpdateCommand and AutoUpdater - Extract shared CliPlatformDetector for CliDownloader and AutoUpdater - Use millisecond timestamps for backup files to avoid collisions
Contributor
|
🚀 Dogfood this PR with:
curl -fsSL https://raw.githubusercontent.com/dotnet/aspire/main/eng/scripts/get-aspire-cli-pr.sh | bash -s -- 14107Or
iex "& { $(irm https://raw.githubusercontent.com/dotnet/aspire/main/eng/scripts/get-aspire-cli-pr.ps1) } 14107" |
Contributor
🎬 CLI E2E Test RecordingsThe following terminal recordings are available for commit
📹 Recordings uploaded automatically from CI run #21319705587 |
10 tasks
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 subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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 automatic background updates for the Aspire CLI to help customers stay on the latest version without manual intervention.
Features
ASPIRE_CLI_AUTO_UPDATE_DISABLED=trueto disabledotnet tool updateinstead)aspire update --self(avoid double-update)Refactoring
CliInstallerused by bothUpdateCommandandAutoUpdaterCliPlatformDetectorfor platform detectionTesting