Conversation
Signed-off-by: Patrick Linnane <patrick@linnane.io>
Contributor
There was a problem hiding this comment.
Pull request overview
This PR updates Homebrew's portable Ruby from version 3.4.7 to 3.4.8 and fixes two related issues: removing a deprecated Bootsnap configuration option and adding a missing require statement. The Ruby version update is reflected consistently across all configuration files and portable Ruby distributions for all supported platforms.
Key Changes
- Updates portable Ruby from 3.4.7 to 3.4.8 across all platforms (x86_64/arm64 for Linux/Darwin)
- Removes deprecated
compile_cache_jsonparameter from Bootsnap configuration - Adds missing
require "utils/github"to vendor-gems.rb to fix uninitialized constant error
Reviewed changes
Copilot reviewed 3 out of 9 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| Library/Homebrew/vendor/portable-ruby-version | Updates portable Ruby version from 3.4.7 to 3.4.8 |
| Library/Homebrew/vendor/portable-ruby-x86_64-linux | Updates SHA hash for x86_64 Linux portable Ruby distribution |
| Library/Homebrew/vendor/portable-ruby-x86_64-darwin | Updates SHA hash for x86_64 Darwin portable Ruby distribution |
| Library/Homebrew/vendor/portable-ruby-arm64-linux | Updates SHA hash for arm64 Linux portable Ruby distribution |
| Library/Homebrew/vendor/portable-ruby-arm64-darwin | Updates SHA hash for arm64 Darwin portable Ruby distribution |
| Library/Homebrew/.ruby-version | Updates Ruby version from 3.4.7 to 3.4.8 |
| Library/Homebrew/Gemfile.lock | Updates Ruby version from 3.4.7p58 to 3.4.8p72 |
| Library/Homebrew/startup/bootsnap.rb | Removes deprecated compile_cache_json option from Bootsnap.setup call |
| Library/Homebrew/dev-cmd/vendor-gems.rb | Adds missing require for utils/github to fix GitHub constant error |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
carlocab
approved these changes
Dec 17, 2025
Member
Author
|
Just need to wait for a new version of |
MikeMcQuaid
approved these changes
Dec 17, 2025
Member
MikeMcQuaid
left a comment
There was a problem hiding this comment.
Thanks @p-linnane! Good to merge when 🟢
Signed-off-by: Patrick Linnane <patrick@linnane.io>
MikeMcQuaid
approved these changes
Dec 17, 2025
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.
brew lgtm(style, typechecking and tests) with your changes locally?Bootsnap 1.19.0 removed CompileCache::JSON. Removing this fixes
Bootsnap.setup 'compile_cache_json' argument is deprecated and has no effect.brew vendor-gemsneeded an additionalrequireto handleError: uninitialized constant Homebrew::DevCmd::VendorGems::GitHub.