docs: Update Homebrew install for Tap Trust (Homebrew 6.0)#1427
Open
Beehtrix wants to merge 1 commit into
Open
docs: Update Homebrew install for Tap Trust (Homebrew 6.0)#1427Beehtrix wants to merge 1 commit into
Beehtrix wants to merge 1 commit into
Conversation
Use fully qualified cask for scoped trust under Homebrew 6.0 Tap Trust.
Contributor
There was a problem hiding this comment.
Pull request overview
Note
Copilot was unable to run its full agentic suite in this review.
Updates the Homebrew installation instructions in the README to use fully-qualified cask names, eliminating the need for a separate brew tap step.
Changes:
- Replace
brew tap entireio/tap+brew installwith a single fully-qualifiedbrew install --cask entireio/tap/...command for stable and nightly.
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.
Use fully qualified cask for scoped trust under Homebrew 6.0 Tap Trust.### Description
Homebrew 6.0.0 introduced a new "Tap Trust" security model that requires explicit trust for third-party taps before their code is evaluated. The existing instructions use
brew tapfollowed bybrew install, which now triggers trust prompts when tap trust is required.Changes
Updated the macOS Homebrew installation snippet to use the fully-qualified cask path:
Stable
Nightly
This matches Homebrew's Tap Trust documentation, which states that installing a fully-qualified formula or cask (
user/repo/name) trusts only that item and allows it to be installed even when tap trust is enforced.Why this is needed
Using the fully-qualified cask (
entireio/tap/entire) gives scoped trust to theentirecask without requiring users to trust the entire tap. This avoids new Tap Trust warning prompts and keeps the install command simple for new users.