Relax required_ruby_version to support Ruby 4.0#21
Merged
olleolleolle merged 2 commits intolostisland:mainfrom Dec 22, 2025
Merged
Relax required_ruby_version to support Ruby 4.0#21olleolleolle merged 2 commits intolostisland:mainfrom
required_ruby_version to support Ruby 4.0#21olleolleolle merged 2 commits intolostisland:mainfrom
Conversation
Bump actions/checkout from 4 to 6
Add Ruby 4.0 to CI Matrix Remove the `'bundler', '~> 2.0'` dependency for development
Contributor
Author
|
Thanks! |
|
can we get a release on rubygems please |
Closed
Member
|
Release 1.2.0 is now out with Ruby 4 support 🎉 |
This was referenced Dec 27, 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.
This Pull Request relaxed the
required_ruby_versionto allow Ruby 4.0.The current gemspec specifies an upper bound of "< 4", which prevents
gem install faraday-multipartfrom working on Ruby 4.0, scheduled for release on December 25. By removing this upper bound, the gem will continue to work on Ruby 4.0 and future Ruby versions.Additional Information
Bundler version for development / test environments
This Pull Request removes the development dependency on the bundler gem.
In Ruby 4.0, Bundler is provided as a default gem with version 4.0 or later.
faraday-multipart/Gemfile
Line 8 in b02f761
Update CI Matrix
This Pull Request also: