Fix deprecated string-comparison format for depends_on macos - #4
Open
narnd wants to merge 1 commit into
Open
Conversation
Homebrew deprecated the string-comparison format for `depends_on macos:`. `depends_on macos: ">= :ventura"` now emits: Calling "string comparison format for depends_on macos:" is deprecated! Use `depends_on macos: :ventura` instead. A bare symbol already means "this version or newer" (default >= comparator), so this is semantically identical and matches `brew style`'s autocorrect. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
There was a problem hiding this comment.
Pull request overview
Updates the Homebrew Cask definition for Browserino to use the current depends_on macos: syntax, eliminating deprecation warnings on recent Homebrew versions while preserving the same minimum macOS requirement.
Changes:
- Replaced deprecated string-comparison syntax (
">= :ventura") with the version symbol form (:ventura) fordepends_on macos:.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
|
This appears to correct the error reported by current hombrew: Warning: Calling string comparison format for `depends_on macos:` is deprecated! Use `depends_on macos: :ventura` instead.
Please report this issue to the alexstrnik/homebrew-browserino tap (not Homebrew/* repositories), or even better, submit a PR to fix it:
/opt/homebrew/Library/Taps/alexstrnik/homebrew-browserino/Casks/browserino.rb:11 |
EchoCloud
approved these changes
Jun 29, 2026
EchoCloud
left a comment
There was a problem hiding this comment.
corrects:
Warning: Calling string comparison format for `depends_on macos:` is deprecated! Use `depends_on macos: :ventura` instead.
Please report this issue to the alexstrnik/homebrew-browserino tap (not Homebrew/* repositories), or even better, submit a PR to fix it:
/opt/homebrew/Library/Taps/alexstrnik/homebrew-browserino/Casks/browserino.rb:11|
Duplicate of #2. |
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.
What
Change
depends_on macos: ">= :ventura"todepends_on macos: :venturainCasks/browserino.rb.Why
Recent Homebrew (6.x) deprecated the string-comparison format for
depends_on macos:. Installing/upgrading the cask currently prints:A bare version symbol already uses a
>=comparator under the hood, sodepends_on macos: :venturameans the same thing ("Ventura or newer") and is exactly whatbrew style --fixautocorrects to. Purely cosmetic — nothing was broken — but it silences the warning for everyone using the tap.🤖 Generated with Claude Code