Upgrade fastlane and remove explicit abbrev dependency#6089
Merged
TimoPtr merged 2 commits intohome-assistant:mainfrom Nov 24, 2025
Merged
Conversation
Of note, this version supports ruby 3.4.0 without having to manually declare a dependency on the abbrev gem: https://github.com/fastlane/fastlane/releases/tag/2.229.0
|
Please take a look at the requested changes, and use the Ready for review button when you are done, thanks 👍 |
Contributor
There was a problem hiding this comment.
Pull request overview
This PR upgrades fastlane from version 2.228.0 to 2.229.0 and removes the workaround dependency on the abbrev gem. The newer version of fastlane now properly declares abbrev as its own dependency, eliminating the need for the explicit workaround that was added in PR #5940 to fix Ruby 3.4 compatibility issues.
Key Changes
- Upgraded fastlane from 2.228.0 to 2.229.0
- Removed explicit
abbrevgem dependency from Gemfile (now handled by fastlane itself) - Updated Gemfile.lock to reflect new dependency tree with additional fastlane dependencies (
csv,mutex_m)
Reviewed changes
Copilot reviewed 1 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| Gemfile | Removed the explicit abbrev dependency and its explanatory comment, as fastlane now includes it |
| Gemfile.lock | Updated to reflect fastlane 2.229.0 upgrade, showing abbrev now as a transitive dependency through fastlane, and added new fastlane dependencies (csv, mutex_m) |
Member
|
Thanks for the change |
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
This is a follow-up to #5940:
A couple days ago, fastlane published a new released which supports ruby 3.4.0 without us having to manually
declare a dependency on the abbrev gem:
https://github.com/fastlane/fastlane/releases/tag/2.229.0
so this PR upgrades fastlane to that version, and removes the workaround of declaring
abbrevin our ownGemfile.Checklist