Skip to content

Commit 0920b02

Browse files
committed
Upgrade azure-storage-blob to use at least 2.0.0
azure-storage-blob 1.1.0 supports ruby 1.9.3 to 2.5: https://github.com/Azure/azure-storage-ruby/blob/v1.1.0-common/common/README.md azure-storage-blob 2.0.0 supports ruby 2.3 to 2.7: https://github.com/Azure/azure-storage-ruby/blob/v2.0.0-blob/common/README.md
1 parent 2344463 commit 0920b02

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ end
8686
group :storage do
8787
gem "aws-sdk-s3", require: false
8888
gem "google-cloud-storage", "~> 1.11", require: false
89-
gem "azure-storage-blob", require: false
89+
gem "azure-storage-blob", "~> 2.0", require: false
9090

9191
gem "image_processing", "~> 1.2"
9292
end

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -538,7 +538,7 @@ DEPENDENCIES
538538
activerecord-jdbcsqlite3-adapter (>= 1.3.0)
539539
aws-sdk-s3
540540
aws-sdk-sns
541-
azure-storage-blob
541+
azure-storage-blob (~> 2.0)
542542
backburner
543543
bcrypt (~> 3.1.11)
544544
benchmark-ips

activestorage/lib/active_storage/service/azure_storage_service.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# frozen_string_literal: true
22

3-
gem "azure-storage-blob", ">= 1.1"
3+
gem "azure-storage-blob", ">= 2.0"
44

55
require "active_support/core_ext/numeric/bytes"
66
require "azure/storage/blob"

0 commit comments

Comments
 (0)