azure-storage-blob 1.0.1 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3e3941be4da83f43257cf6fbac2a635079749dcf
|
|
4
|
+
data.tar.gz: 638399581dd8f938067caa056be80c9d23e81a58
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6556378bcdf790fab6a944bd8c5fbf530e23b61f86ec41f8652b0f53a219ebfb4b5a97399035fdcebccbc00ad22f59b56346628a28cc3a5355d82b1fc18aa3ae
|
|
7
|
+
data.tar.gz: 33a830df775c9b64403e8e06f63f4d331bd14cbfefddb6e320c76efa0b2a3f4b9eb45f10d2886d088aca5898b065d38d25a2ac62fe97c8e12c8bff8d26b73d61
|
|
@@ -137,6 +137,9 @@ module Azure::Storage
|
|
|
137
137
|
# * +:default_endpoints_protocol+ - String. http or https
|
|
138
138
|
# * +:use_path_style_uri+ - String. Whether use path style URI for specified endpoints
|
|
139
139
|
# * +:ca_file+ - String. File path of the CA file if having issue with SSL
|
|
140
|
+
# * +:ssl_version+ - Symbol. The ssl version to be used, sample: :TLSv1_1, :TLSv1_2, for the details, see https://github.com/ruby/openssl/blob/master/lib/openssl/ssl.rb
|
|
141
|
+
# * +:ssl_min_version+ - Symbol. The min ssl version supported, only supported in Ruby 2.5+
|
|
142
|
+
# * +:ssl_max_version+ - Symbol. The max ssl version supported, only supported in Ruby 2.5+
|
|
140
143
|
# * +:user_agent_prefix+ - String. The user agent prefix that can identify the application calls the library
|
|
141
144
|
# * +:client+ - Azure::Storage::Common::Client. The common client used to initalize the service.
|
|
142
145
|
#
|
|
@@ -29,7 +29,7 @@ require "rbconfig"
|
|
|
29
29
|
module Azure::Storage::Blob
|
|
30
30
|
module Default
|
|
31
31
|
# Default REST service (STG) version number
|
|
32
|
-
STG_VERSION = "
|
|
32
|
+
STG_VERSION = "2017-11-09"
|
|
33
33
|
|
|
34
34
|
# The number of default concurrent requests for parallel operation.
|
|
35
35
|
DEFAULT_PARALLEL_OPERATION_THREAD_COUNT = 1
|
|
@@ -30,8 +30,8 @@ module Azure
|
|
|
30
30
|
class Version
|
|
31
31
|
# Fields represent the parts defined in http://semver.org/
|
|
32
32
|
MAJOR = 1 unless defined? MAJOR
|
|
33
|
-
MINOR =
|
|
34
|
-
UPDATE =
|
|
33
|
+
MINOR = 1 unless defined? MINOR
|
|
34
|
+
UPDATE = 0 unless defined? UPDATE
|
|
35
35
|
|
|
36
36
|
class << self
|
|
37
37
|
# @return [String]
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: azure-storage-blob
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0
|
|
4
|
+
version: 1.1.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Microsoft Corporation
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-
|
|
11
|
+
date: 2018-12-10 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: azure-core
|