azure-storage-queue 1.0.1 → 1.1.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: aa37dff8c28f12ac239fab07951f75192852c22a
|
4
|
+
data.tar.gz: 7e45f42bfae7936a4c9a6dbf7c0ddf5220ddfe53
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6c6ddb3521d26b45dd49944d0aad4d3b3ad25ce459fead275b8df32cdf27fc17918905a9ed7f151c061cc5ac2bca57020033bce906655a96363d451141013aa0
|
7
|
+
data.tar.gz: 92a7399816dd87bdda7dcb0de669aba3b34b3f0173a659bca8c9ce337927206b6a7177a30625649ab376d178ed81b0c73e87b917fec80397028b6a489c1f6798
|
@@ -30,7 +30,7 @@ require "azure/storage/queue/version"
|
|
30
30
|
module Azure::Storage::Queue
|
31
31
|
module Default
|
32
32
|
# Default REST service (STG) version number
|
33
|
-
STG_VERSION = "
|
33
|
+
STG_VERSION = "2017-11-09"
|
34
34
|
|
35
35
|
# The number of default concurrent requests for parallel operation.
|
36
36
|
DEFAULT_PARALLEL_OPERATION_THREAD_COUNT = 1
|
@@ -50,6 +50,9 @@ module Azure::Storage
|
|
50
50
|
# * +:default_endpoints_protocol+ - String. http or https
|
51
51
|
# * +:use_path_style_uri+ - String. Whether use path style URI for specified endpoints
|
52
52
|
# * +:ca_file+ - String. File path of the CA file if having issue with SSL
|
53
|
+
# * +: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
|
54
|
+
# * +:ssl_min_version+ - Symbol. The min ssl version supported, only supported in Ruby 2.5+
|
55
|
+
# * +:ssl_max_version+ - Symbol. The max ssl version supported, only supported in Ruby 2.5+
|
53
56
|
# * +:user_agent_prefix+ - String. The user agent prefix that can identify the application calls the library
|
54
57
|
#
|
55
58
|
# The valid set of options include:
|
@@ -128,6 +131,9 @@ module Azure::Storage
|
|
128
131
|
# * +:default_endpoints_protocol+ - String. http or https
|
129
132
|
# * +:use_path_style_uri+ - String. Whether use path style URI for specified endpoints
|
130
133
|
# * +:ca_file+ - String. File path of the CA file if having issue with SSL
|
134
|
+
# * +: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
|
135
|
+
# * +:ssl_min_version+ - Symbol. The min ssl version supported, only supported in Ruby 2.5+
|
136
|
+
# * +:ssl_max_version+ - Symbol. The max ssl version supported, only supported in Ruby 2.5+
|
131
137
|
# * +:user_agent_prefix+ - String. The user agent prefix that can identify the application calls the library
|
132
138
|
# * +:client+ - Azure::Storage::Common::Client. The common client used to initalize the service.
|
133
139
|
#
|
@@ -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-queue
|
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
|