azure-storage-queue 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: 13666083813506f68dad71a64f72a7c0e0336632
4
- data.tar.gz: c96770983cbd390c563a31eb0efa5d2e392b40d8
3
+ metadata.gz: aa37dff8c28f12ac239fab07951f75192852c22a
4
+ data.tar.gz: 7e45f42bfae7936a4c9a6dbf7c0ddf5220ddfe53
5
5
  SHA512:
6
- metadata.gz: fe5fd5f483b68b23b0a1a86b109b1404e0aa114850e7949da77347ed1c9529882348e5b49575abde20592041f6e0bc5bf0a38cbb6f3d06ed541fd1f499805fab
7
- data.tar.gz: be0ae5aeea47a180dfe889aa9d42ca440d8a1d407b7bf0e72a42b15e181562a552689b2bf3075b9fec09e70ce95f6bee52d946f78e43369afba644ab5ca431d0
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 = "2016-05-31"
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 = 0 unless defined? MINOR
34
- UPDATE = 1 unless defined? 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.1
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-01-17 00:00:00.000000000 Z
11
+ date: 2018-12-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: azure-core