Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
405 changes: 388 additions & 17 deletions Cargo.lock

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions sdk/storage/.cspell.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,14 @@
"ADLS",
"appendblock",
"appendpos",
"blobprefix",
"blockid",
"blocklist",
"blocklisttype",
"Btext",
"Chttp",
"copyid",
"datatypes",
"deletedwithversions",
"deletetype",
"devstoreaccount",
Expand Down
3 changes: 3 additions & 0 deletions sdk/storage/azure_storage_blob/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,13 @@
### Features Added

- Updated the default service version to `2026-10-06`.
- Re-added `BlobContainerClient::list_blobs_hierarchical()`.
- Added `end_before` to `BlobContainerClientListBlobsOptions` and `BlobContainerClientListBlobsHierarchicalOptions`. `end_before` is only supported with the Apache Arrow response format.
- The service-calculated CRC64 is now surfaced as `content_crc64` on upload responses, alongside `content_md5`, when a content MD5 is provided with the request. This applies to `stage_block`, `stage_block_from_url`, `upload_pages`, `upload_pages_from_url`, `append_block`, `append_block_from_url`, `upload` and `upload_blob_from_url`.

### Breaking Changes

- `BlobContainerClient::list_blobs()` now requests Apache Arrow by default and returns `Result<Pager<ListBlobsResponse, AutoFormat>>` instead of `Result<Pager<ListBlobsResponse, XmlFormat>>`. Use `BlobContainerClientListBlobsOptions::response_format` to request a different response format.
- Added the `AccessTier::Smart` and `ArchiveStatus::RehydratePendingToSmart` enum variants.
- Added `access_tier`, `access_tier_changed_on`, `access_tier_inferred`, and `smart_access_tier` to `BlobDownloadProperties` and marked the struct as non-exhaustive.
- Added `BlobClient::start_copy_from_url()` and `BlobClient::abort_copy()` for asynchronous blob copy operations.
Expand Down
1 change: 1 addition & 0 deletions sdk/storage/azure_storage_blob/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ default = ["tokio", "azure_core/default"]
tokio = ["dep:tokio", "azure_core/tokio"]

[dependencies]
arrow = { workspace = true, features = ["ipc"] }
async-stream.workspace = true
async-trait.workspace = true
azure_core = { path = "../../core/azure_core", version = "1.2.0-beta.1", features = ["xml"] }
Expand Down
2 changes: 1 addition & 1 deletion sdk/storage/azure_storage_blob/assets.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"AssetsRepo": "Azure/azure-sdk-assets",
"AssetsRepoPrefixPath": "rust",
"Tag": "rust/azure_storage_blob_d5db5e0143",
"Tag": "rust/azure_storage_blob_55bea387aa",
"TagPrefix": "rust/azure_storage_blob"
}
Loading