Releases: Azure/azure-storage-ruby
Releases · Azure/azure-storage-ruby
Storage Client Library 0.13.0
2017.09 - version 0.13.0-preview
ALL
- Removed Nokogiri from Gemfile because it causes bundler fail to install azure-storage. Added it back to runtime dependency and explicitly require user to install the correct version of Nokogiri in README.md.
- Service version is upgraded to 2016-05-31.
BLOB
- Block size can now be up to 100MB.
TABLE
- The return type
Azure::Service::EnumerationResultofquery_tableshas a changed structure. Now the'updated'will not be contained, and is flattened to a structure in the form of{ {"TableName" => "tableone"}, {"TableName" => "tabletwo"}, {"TableName" => "tablethree"}}. - The
Azure::Storage::Table::Entitydoes not contain:tableandupdatedanymore. The updated time can be found in:properties. - The return type of
get_tableis changed to a Hash that contains full metadata returned from the server when query the table. - The method
Azure::Storage::Table::EdmType::unserialize_query_valueis renamed todeserialize_value.
Storage Client Library 0.12.3
2017.08 - version 0.12.3-preview
ALL
- Added Nokogiri as a gem into Gemfile, resolving an issue where bundler failed to recognize that the dependency exists after installation.
Storage Client Library 0.12.2
2017.08 - version 0.12.2-preview
ALL
- Removed Nokogiri as a dependency to resolve conflict version caused by azure-core also depending on Nokogiri.
Storage Client Library 0.12.1
2017.04 - version 0.12.1-preview
ALL
- Relaxed constraint on Nokogiri version dependency to allow Nokogiri 1.7.x for Ruby 2.1 and later, but preserving support for Ruby 1.9.3. (Note that this may require updating to Bundler 1.13 or later if you're using Ruby 1.9 or 2.0.)
Storage Client Library 0.12.0
2017.02 - version 0.12.0-preview
ALL
- Fixed the issue where
should_retry?in the retry_filter.rb overwrites the result from derivedapply_retry_policy. #76 - Fixed the issue where
Azure::Storage::Client.create_from_connection_stringthrows an exception. #77 - Added the support for setting the "timeout" option in
get_service_propertiesandset_service_properties.
BLOB
- Added the metadata to the returning instance when creates a blob.
- Added
transactional_md5to the options ofput_blob_pages.
FILE
- Added File Service support, targeting storage service version 2015-04-05.
Storage Client Library 0.11.5
2016.12 - version 0.11.5-preview
ALL
- Added the support for setting customer user agent. #71
- Added the support for hooking in sending requests.
Storage Client Library 0.11.4
Storage Client Library 0.11.3
2016.10 - version 0.11.3-preview
ALL
- Fixed an issue in retry policies.
Storage Client Library 0.11.2
2016.10 - version 0.11.2-preview
ALL
- Fixed the issue where it retries on HTTP 4xx errors.
BLOB
- Fixed the issue of wrong "Content-Encoding". #49
Storage Client Library 0.11.1
2016.09 - version 0.11.1
ALL
- Added the support for setting the client request ID via the "request_id" parameter.
- Added the retry for the timeout errors.
- Added the retry for the connection reset error.
BLOB
- Fixed the issue where "list_blobs" doesn't work when delimiter is specified. (#41)