Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork10.8k
Portable Ruby 3.4.8#21265
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Portable Ruby 3.4.8#21265
Uh oh!
There was an error while loading.Please reload this page.
Conversation
Signed-off-by: Patrick Linnane <patrick@linnane.io>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others.Learn more.
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 deprecatedcompile_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.
p-linnane commentedDec 17, 2025
Just need to wait for a new version of |
MikeMcQuaid left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others.Learn more.
Thanks@p-linnane! Good to merge when 🟢
Signed-off-by: Patrick Linnane <patrick@linnane.io>
8e96d6fUh oh!
There was an error while loading.Please reload this page.
brew lgtm(style, typechecking and tests) with your changes locally?Bootsnap 1.19.0removed 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.