diff --git a/sdk/storage/azure-storage-blob/CHANGELOG.md b/sdk/storage/azure-storage-blob/CHANGELOG.md index 0d1db1dbc28e..7de6a2096689 100644 --- a/sdk/storage/azure-storage-blob/CHANGELOG.md +++ b/sdk/storage/azure-storage-blob/CHANGELOG.md @@ -5,6 +5,9 @@ ### Features Added - Added `list` support to `BlobSasPermissions` for use with directory-scoped SAS tokens. +### Bugs Fixed +- Fixed an issue where `destination_snapshot` on a blob's copy properties was always `None` when listing blobs with `response_format="arrow"`. + ## 12.31.0b1 (2026-08-10) ### Features Added diff --git a/sdk/storage/azure-storage-blob/azure/storage/blob/_list_blobs_helper.py b/sdk/storage/azure-storage-blob/azure/storage/blob/_list_blobs_helper.py index 6acb2dbc8bee..f3ebfd7513fe 100644 --- a/sdk/storage/azure-storage-blob/azure/storage/blob/_list_blobs_helper.py +++ b/sdk/storage/azure-storage-blob/azure/storage/blob/_list_blobs_helper.py @@ -108,7 +108,7 @@ def _parse_arrow_response( # pylint: disable=too-many-locals,too-many-statement "CopyCompletionTime": "x-ms-copy-completion-time", "CopyStatusDescription": "x-ms-copy-status-description", "IncrementalCopy": "x-ms-incremental-copy", - "DestinationSnapshot": "x-ms-copy-destination-snapshot", + "CopyDestinationSnapshot": "x-ms-copy-destination-snapshot", } next_marker: Optional[str] = None