Conversation
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
annacruz
approved these changes
Sep 2, 2026
marcosdemelo
deleted the
chore/update-bundler-and-normalize-platforms
branch
September 15, 2026 18:59
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
arm64-darwin-24,arm64-darwin-25) with the genericarm64-darwinin thePLATFORMSsection ofGemfile.lockBUNDLED WITHfrom2.3.3to4.0.8Background
The PLATFORMS accumulation problem
Bundler records the exact OS platform string when
bundle installis run. On macOS, this includes the Darwin kernel version (e.g.arm64-darwin-24for macOS Sequoia,arm64-darwin-25for macOS Tahoe). As contributors upgrade their OS or as CI images are updated, new entries get appended to thePLATFORMSsection — purely as noise, with no functional benefit.Using the generic
arm64-darwin(without a version suffix) avoids this accumulation. Bundler 4.x handles the generic platform correctly and matches it against pre-compiled binaries.Why Bundler 4.0.8?
Bundler 4.0 requires Ruby >= 3.1.0. This aligns directly with our own Nokogiri constraint: Nokogiri 1.18.x requires Ruby >= 3.1.0 (rubygems.org), which we already depend on. There is no regression risk for any environment already running this gem.
Test plan