Breaking changes
- Permission models.
AccountPermissions,BlobPermissionsandContainerPermissionshave been renamed toAccountSasPermissions,BlobSasPermissionsandContainerSasPermissionsrespectively.- enum-like list parameters have been removed from all three of them.
__add__and__or__methods are removed.
max_connectionsis now renamed tomax_concurrency.ContainerClientnow accepts onlyaccount_urlwith a mandatory string paramcontainer_name. To use a container_url, the methodfrom_container_urlmust be used.BlobClientnow accepts onlyaccount_urlwith mandatory string paramscontainer_nameandblob_name. To use a blob_url, the methodfrom_blob_urlmust be used.- Some parameters have become keyword only, rather than positional. Some examples include:
loopmax_concurrencyvalidate_contenttimeoutetc.
- APIs now take in
offsetandlengthinstead ofrange_startandrange_endconsistently.lengthis the number of bytes to take in starting from theoffset. The APIs that have been changed include:get_page_rangesupload_pageupload_pages_from_urlclear_pageappend_block_from_url
block_idis not optional inBlobBlockmodel.
New features
- Add support for delete_blobs API to ContainerClient (Python 3 only)
- Add support for set_standard_blob_tier_blobs to ContainerClient (Python 3 only)
- Add support for set_premium_page_blob_tier_blobs to ContainerClient (Python 3 only)
- Added support to set rehydrate blob priority for Block Blob, including Set Standard Blob Tier/Copy Blob APIs
- Added blob tier support for Block Blob, including Upload Blob/Commit Block List/Copy Blob APIs.
Fixes and improvements
- Downloading page blobs now take advantage of their sparseness.
- The
lengthparam indownload_blobnow takes the number of bytes to take in starting from theoffsetinstead of a harde set end value.
Dependency updates
-
Adopted azure-core 1.0.0b4
- If you later want to revert to previous versions of azure-storage-blob, or another Azure SDK library requiring azure-core 1.0.0b1 or azure-core 1.0.0b2, you must explicitly install the specific version of azure-core as well. For example:
pip install azure-core==1.0.0b2 azure-storage-blob==12.0.0b2
New features
- Added SAS support for snapshot and identity.
- Distributed tracing framework OpenCensus is now supported.
- Added support for append_block_from_url API for append blobs.
- Added support for upload_pages_from_url API for page blobs.
- Added support for client provided encryption key to numerous APIs.
Dependency updates
-
Adopted azure-core 1.0.0b3
- If you later want to revert to previous versions of azure-storage-blob, or another Azure SDK library requiring azure-core 1.0.0b1 or azure-core 1.0.0b2, you must explicitly install the specific version of azure-core as well. For example:
pip install azure-core==1.0.0b2 azure-storage-blob==12.0.0b2
Fixes and improvements
- Fix where content-type was being added in the request when not mentioned explicitly.
Breaking changes
- Renamed
copy_blob_from_urltostart_copy_from_urland changed behaviour to return a dictionary of copy properties rather than a polling object. Status of the copy operation can be retrieved with theget_blob_propertiesoperation. - Added
abort_copyoperation to theBlobClientclass. This replaces the previous abort operation on the copy status polling operation. - The behavior of listing operations has been modified:
- The previous
markerparameter has been removed. - The iterable response object now supports a
by_pagefunction that will return a secondary iterator of batches of results. This function supports acontinuation_tokenparameter to replace the previousmarkerparameter.
- The previous
- Some parameters have become keyword only, rather than positional. Some examples include:
timeoutleaseencoding- Modification conditions, e.g.
if_modified_since,if_match,maxsize_condition, etc
New features
- Added async APIs to subnamespace
azure.storage.blob.aio. - Distributed tracing framework OpenCensus is now supported.
Dependency updates
-
Adopted azure-core 1.0.0b2
- If you later want to revert to azure-storage-blob 12.0.0b1, or another Azure SDK library requiring azure-core 1.0.0b1, you must explicitly install azure-core 1.0.0b1 as well. For example:
pip install azure-core==1.0.0b1 azure-storage-blob==12.0.0b1
Fixes and improvements
- Fix for SAS URL encoding (#6500)
- General refactor of duplicate and shared code.
Version 12.0.0b1 is the first preview of our efforts to create a user-friendly and Pythonic client library for Azure Storage Blobs. For more information about this, and preview releases of other Azure SDK libraries, please visit https://aka.ms/azure-sdk-preview1-python.
Breaking changes: New API design
-
Operations are now scoped to a particular client:
BlobServiceClient: This client handles account-level operations. This includes managing service properties and listing the containers within an account.ContainerClient: The client handles operations for a particular container. This includes creating or deleting that container, as well as listing the blobs within that container and managing properties and metadata.BlobClient: The client handles operations for a particular blob. This includes creating or deleting that blob, as well as upload and download data and managing properties. This BlobClient handles all blob types (block, page and append). Where operations can behave differently according to type (i.e.upload_blob) the default behaviour will be block blobs unless otherwise specified.LeaseClient: Handles all lease operations for both containers and blobs.
These clients can be accessed by navigating down the client hierarchy, or instantiated directly using URLs to the resource (account, container or blob). For full details on the new API, please see the reference documentation.
-
Copy blob operations now return a polling object that can be used to check the status of the operation, as well as abort the operation.
-
New module level operations for simple upload and download using a blob URL.
-
Download operations now return a streaming object that can download data in multiple ways:
- Iteration: The streamer is an iterable object that will download and yield the content in chunks. Only supports single threaded download.
content_as_bytes: Return the entire blob content as bytes. Blocking operation that supports multi-threaded download.content_as_text: Return the entire blob content as decoded text. Blocking operation that supports multi-threaded download.download_to_stream: Download the entire content to an open stream handle (e.g. an open file). Supports multi-threaded download.
-
New underlying REST pipeline implementation, based on the new
azure-corelibrary. -
Client and pipeline configuration is now available via keyword arguments at both the client level, and per-operation. See reference documentation for a full list of optional configuration arguments.
-
Authentication using
azure-identitycredentials- see the Azure Identity documentation for more information
-
New error hierarchy:
- All service errors will now use the base type:
azure.core.exceptions.HttpResponseError - The are a couple of specific exception types derived from this base type for common error scenarios:
ResourceNotFoundError: The resource (e.g. queue, message) could not be found. Commonly a 404 status code.ResourceExistsError: A resource conflict - commonly caused when attempting to create a resource that already exists.ResourceModifiedError: The resource has been modified (e.g. overwritten) and therefore the current operation is in conflict. Alternatively this may be raised if a condition on the operation is not met.ClientAuthenticationError: Authentication failed.
- All service errors will now use the base type:
-
Operation
set_blob_propertieshas been renamed toset_http_headers. -
Operations
get_blob_to_<output>have been replaced withdownload_blob. See above for download output options. -
Operations
create_blob_from_<input>have been replace withupload_blob. -
Operation
create_blobhas been renamed to separatecreate_page_blobandcreate_append_blob. -
Operations
get_container_aclandset_container_aclhave been renamed toget_container_access_policyandset_container_access_policy. -
Operation
snapshot_blobhas been renamed tocreate_snapshot. -
Operation
copy_blobhas been renamed tocopy_blob_from_url. -
Operations
put_blockandput_block_from_urlhave been renamed tostage_blockandstage_block_from_url. -
Operation
put_block_listhas been renamed tocommit_block_list. -
No longer have specific operations for
get_metadata- useget_propertiesinstead. -
No longer have specific operations for
exists- useget_propertiesinstead. -
Operation
incremental_copy_blobhas been replaced by an optional boolean flag in thecopy_blob_from_urloperation. -
Operation
update_pagehas been renamed toupload_page. -
Operation
get_page_ranges_diffhas been replaced by an optional str flag in theget_page_rangesoperation.
- Updated dependency on azure-storage-common.
- Support for 2018-11-09 REST version. Please see our REST API documentation and blog for information about the related added features.
- Added support for append block from URL(synchronously) for append blobs.
- Added support for update page from URL(synchronously) for page blobs.
- Added support for generating and using blob snapshot SAS tokens.
- Added support for generating user delegation SAS tokens.
- Added new method list_blob_names to efficiently list only blob names in an efficient way.
- azure-storage-nspkg is not installed anymore on Python 3 (PEP420-based namespace package)
- copy_blob method added to BlockBlobService to enable support for deep sync copy.
- Fixed design flaw where get_blob_to_* methods buffer entire blob when max_connections is set to 1.
- Added support for access conditions on append_blob_from_* methods.
- Support for 2018-03-28 REST version. Please see our REST API documentation and blog for information about the related added features.
- Added support for setting static website service properties.
- Added support for getting account information, such as SKU name and account kind.
- Added support for put block from URL(synchronously).
- Support for 2017-11-09 REST version. Please see our REST API documentation and blog for information about the related added features.
- Support for write-once read-many containers.
- Added support for OAuth authentication for HTTPS requests(Please note that this feature is available in preview).
- Support for 2017-07-29 REST version. Please see our REST API documentation and blogs for information about the related added features.
- Added support for soft delete feature. If a delete retention policy is enabled through the set service properties API, then blobs or snapshots could be deleted softly and retained for a specified number of days, before being permanently removed by garbage collection.
- Error message now contains the ErrorCode from the x-ms-error-code header value.
- The package has switched from Apache 2.0 to the MIT license.
- Fixed bug where get_blob_to_* cannot get a single byte when start_range and end_range are both equal to 0.
- Optimized page blob upload for create_blob_from_* methods, by skipping the empty chunks.
- Added convenient method to generate container url (make_container_url).
- Metadata keys are now case-preserving when fetched from the service. Previously they were made lower-case by the library.
- Enabling MD5 validation no longer uses the memory-efficient algorithm for large block blobs, since computing the MD5 hash requires reading the entire block into memory.
- Fixed a bug in the _SubStream class which was at risk of causing data corruption when using the memory-efficient algorithm for large block blobs.
- Support for AccessTierChangeTime to get the last time a tier was modified on an individual blob.