Prevent self upgrade on Homebrew installs#340
Merged
Conversation
Reviewer's GuidePrevents Updated class diagram for BinaryUpgrader Homebrew detectionclassDiagram
class RepoRegistry {
<<interface>>
+GetLatestRelease(ctx Context) string
+DownloadBinary(ctx Context, version string) BinaryData
}
class BinaryUpgrader {
-RepoRegistry registry
-string currentVersion
-string binaryPath
+BinaryUpgrader(reg RepoRegistry, currentVersion string) BinaryUpgrader
+Upgrade(ctx Context) error
}
class HomebrewDetection {
+isHomebrewInstall(binaryPath string) bool
}
BinaryUpgrader --> RepoRegistry : uses
BinaryUpgrader --> HomebrewDetection : calls isHomebrewInstall
File-Level Changes
Possibly linked issues
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
There was a problem hiding this comment.
Hey - I've left some high level feedback:
- Consider extracting the
brew upgrade lets-cli/tap/letsstring into a shared constant so it’s not duplicated between the implementation and the test and is easier to change if the tap name ever changes. - If callers might need to handle the Homebrew case specially, you could introduce a sentinel error (e.g.,
ErrHomebrewInstall) instead of relying on matching the error message text.
Prompt for AI Agents
Please address the comments from this code review:
## Overall Comments
- Consider extracting the `brew upgrade lets-cli/tap/lets` string into a shared constant so it’s not duplicated between the implementation and the test and is easier to change if the tap name ever changes.
- If callers might need to handle the Homebrew case specially, you could introduce a sentinel error (e.g., `ErrHomebrewInstall`) instead of relying on matching the error message text.Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.
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
lets self upgradewhen the running binary is Homebrew-managedTesting
go test ./internal/upgradego test ./...lets test-batsSummary by Sourcery
Block self-upgrade for Homebrew-managed installations and document the change.
Bug Fixes:
lets self upgradefrom overwriting Homebrew-managed Homebrew Cellar installs.Documentation:
Tests: