Storage Client Library 0.14.0
Pre-release
Pre-release
2017.09 - version 0.14.0-preview
ALL
- Added configuration file for Rubocop and auto-resolved coding style issue.
BLOB
- The
Azure::Storage::Blob::list_page_blob_rangesAPI now accepts:previous_snapshotas an optional parameter, that specifies that the response returns pages that have been updated or cleared since the snapshot specified by:previous_snapshotwas taken. - The
Azure::Storage::Blob::Blobobject now has an attribute:encryptedshowing if the blob or blob related request has been encrypted. - The
Azure::Storage::Blob::BlobService::list_containersandAzure::Storage::Blob::BlobService::get_container_propertieswill now also return public access level for each container. - The stored Content-MD5 property is now returned when requesting a range of a blob. Previously this was only returned for full blob downloads.
Azure::Storage::Blob::Blob.properties[:content_md5]will always hold the stored Content_MD5 property, andAzure::Storage::Blob::Blob.properties[:range_md5]will always represent the MD5 for the content returned from the server. - Added an API
Azure::Storage::Blob::BlobService::incremental_copy_blobto support incremental copy for page blob snapshots.
FILE
- The stored Content-MD5 property is now returned when requesting a range of a file. Previously this was only returned for full file downloads.
Azure::Storage::File::File.properties[:content_md5]will always hold the stored Content_MD5 property, andAzure::Storage::File::File.properties[:range_md5]will always represent the MD5 for the content returned from the server.
QUEUE
- The return type of
Azure::Storage::Queue::create_messageis changed fromnilto anAzure::Storage::Queue::Messageobject.
FILE
- The API
Azure::Storage::File::list_directories_and_filesnow also accepts:prefixas an optional parameter. The return value will be filtered with the specified prefix if set.