Skip to content

Releases: Azure/azure-storage-ruby

Storage Client Library 0.13.0

14 Sep 07:17
Compare
Choose a tag to compare
Pre-release

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::EnumerationResult of query_tables has 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::Entity does not contain :table and updated anymore. The updated time can be found in :properties.
  • The return type of get_table is changed to a Hash that contains full metadata returned from the server when query the table.
  • The method Azure::Storage::Table::EdmType::unserialize_query_value is renamed to deserialize_value.

Storage Client Library 0.12.3

11 Aug 10:04
Compare
Choose a tag to compare
Pre-release

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

10 Aug 11:09
Compare
Choose a tag to compare
Pre-release

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

18 Apr 09:08
Compare
Choose a tag to compare
Pre-release

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

28 Feb 07:40
Compare
Choose a tag to compare
Pre-release

2017.02 - version 0.12.0-preview

ALL

  • Fixed the issue where should_retry? in the retry_filter.rb overwrites the result from derived apply_retry_policy. #76
  • Fixed the issue where Azure::Storage::Client.create_from_connection_string throws an exception. #77
  • Added the support for setting the "timeout" option in get_service_properties and set_service_properties.

BLOB

  • Added the metadata to the returning instance when creates a blob.
  • Added transactional_md5 to the options of put_blob_pages.

FILE

  • Added File Service support, targeting storage service version 2015-04-05.

Storage Client Library 0.11.5

28 Dec 09:39
Compare
Choose a tag to compare
Pre-release

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

30 Nov 06:56
Compare
Choose a tag to compare
Pre-release

2016.11 - version 0.11.4-preview

ALL

  • Removed the unnecessary dependencies. #55, #67

BLOB

  • Fixed the issue when checking the content encoding.
  • Fixed the wrong "Content-Encoding" value in the test cases.
  • Fixed the issue where it cannot use the create_block_blob method with an IO/File object. #61

Storage Client Library 0.11.3

01 Nov 01:22
Compare
Choose a tag to compare
Pre-release

2016.10 - version 0.11.3-preview

ALL

  • Fixed an issue in retry policies.

Storage Client Library 0.11.2

31 Oct 05:52
Compare
Choose a tag to compare
Pre-release

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

30 Sep 09:00
Compare
Choose a tag to compare
Pre-release

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)