[match] Bump minimum version of aws-sdk-s3 dependency to ~> 1.197#29750
Conversation
To ensure that we use a version that includes the new `Aws::S3::TransferManager` class [introduced in 1.197.0](https://github.com/aws/aws-sdk-ruby/blob/version-3/gems/aws-sdk-s3/CHANGELOG.md#11970-2025-08-19) that we started using in #29704
|
Note CI failures in this PR that are about Ruby 2.x install failures will be fixed separately once #29734 lands. |
iBotPeaches
left a comment
There was a problem hiding this comment.
As discussed in Slack. This brings Ruby min to 2.7, which CI is set to 2.6 min presently.
I have no problem with that breakage since I'm working to drop 2 entirely, but we can probably merge after #29734
Bundler found conflicting requirements for the Ruby version:
In Gemfile:
fastlane was resolved to 2.228.0, which depends on
aws-sdk-s3 (~> 1.197) was resolved to 1.203.1, which depends on
Ruby (>= 2.7)
Current Ruby version:
Ruby (= 2.6.3)
|
Fixed conflicts - this should be good now. |
aws-sdk-s3 dependency to ~> 1.197aws-sdk-s3 dependency to ~> 1.197
aws-sdk-s3 dependency to ~> 1.197aws-sdk-s3 dependency to ~> 1.197
There was a problem hiding this comment.
Hey @AliSoftware 👋
Thank you for your contribution to fastlane and congrats on getting this pull request merged 🎉
The code change now lives in the master branch, however it wasn't released to RubyGems yet.
We usually ship about once a month, and your PR will be included in the next one.
Please let us know if this change requires an immediate release by adding a comment here 👍
We'll notify you once we shipped a new release with your changes 🚀"
There was a problem hiding this comment.
Congratulations! 🎉 This was released as part of fastlane 2.232.0 🚀
Checklist
bundle exec rspecfrom the root directory to see all new and existing tests passbundle exec rubocop -ato ensure the code style is validci/circlecibuilds in the "All checks have passed" section of my PR (connect CircleCI to GitHub if not)Motivation and Context
In #29704 we started using the new
Aws::S3::TransferManagerclass to fix a deprecation warning.But that class was only introduced in version
1.197.0of theaws-sdk-s3dependency.Description
This PR bumps the minimum version of the
aws-sdk-s3dependency in our.gemspecto ensure end users use at least version1.197.0of the dependency.Testing Steps
Same testing steps as #29704