You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Starting with aws-sdk-s3 version 1.197.0, the gem shows deprecation warnings for methods used by carrierwave-aws, causing noise in production logs.
Deprecation Warning
#################### DEPRECATION WARNING ####################
Called deprecated method upload_file of Aws::S3::Object. Use Aws::S3::TransferManager#upload_file instead.
Method upload_file will be removed in next major version.
#############################################################
/app/vendor/bundle/ruby/3.4.0/gems/carrierwave-aws-1.6.0/lib/carrierwave/storage/aws_file.rb:61:in 'CarrierWave::Storage::AWSFile#store'
Affected Methods
upload_file - should use Aws::S3::TransferManager#upload_file
download_file - should use Aws::S3::TransferManager#download_file
upload_stream - should use Aws::S3::TransferManager#upload_stream
hotoolong, taise, fabian-as, treyhyde, exit-only and 4 more