azure-storage-blob 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: 12e07f0269d83cc458f8a0f8241e363649015b3b
4
- data.tar.gz: 2b3bd014fe7473f690c596db33b847ea25473b42
3
+ metadata.gz: 3e3941be4da83f43257cf6fbac2a635079749dcf
4
+ data.tar.gz: 638399581dd8f938067caa056be80c9d23e81a58
5
5
  SHA512:
6
- metadata.gz: 3c1406d6669e93ef37c96df0d75515956ef6bf2fc19dc003613ae5c9b59291fdb6121e3fdc09820956bd892013a6399ec554d63a590f5fc8d4d54267e7c39ad0
7
- data.tar.gz: 54b0438ce422c6ea8d1eeea6b03b5c98cce74f74e490bcf827c1216975629e63ec9ef2b003feda887ff899f8464d23d9ba566ad79c17185e297adef3aba19492
6
+ metadata.gz: 6556378bcdf790fab6a944bd8c5fbf530e23b61f86ec41f8652b0f53a219ebfb4b5a97399035fdcebccbc00ad22f59b56346628a28cc3a5355d82b1fc18aa3ae
7
+ data.tar.gz: 33a830df775c9b64403e8e06f63f4d331bd14cbfefddb6e320c76efa0b2a3f4b9eb45f10d2886d088aca5898b065d38d25a2ac62fe97c8e12c8bff8d26b73d61
@@ -268,6 +268,7 @@ module Azure::Storage
268
268
  # * :content_md5
269
269
  # * :content_encoding
270
270
  # * :content_language
271
+ # * :content_disposition
271
272
  #
272
273
  # See http://msdn.microsoft.com/en-us/library/azure/ee691966.aspx
273
274
  #
@@ -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 = "2016-05-31"
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 = 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-blob
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