Skip to content

Commit c5f2a8c

Browse files
weirongw23-msftjalauzon-msft
authored andcommitted
[Storage] [STG 102] Added Support for IPv6 Accounts + Data Lake Tag Tests (#45766)
1 parent fdd9b13 commit c5f2a8c

5 files changed

Lines changed: 30 additions & 0 deletions

File tree

sdk/storage/azure-storage-blob/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,18 @@
33
## 12.31.0b1 (Unreleased)
44

55
### Features Added
6+
- Added support for service version 2026-06-06.
7+
- Added support for connection strings and `account_url`s to accept URLs with `-ipv6` and `-dualstack` suffixes
8+
for `BlobServiceClient`, `ContainerClient`, and `BlobClient`.
9+
- Added support for `create` permission in `BlobSasPermissions` for `stage_block`,
10+
`stage_block_from_url`, and `commit_block_list`.
11+
- Added support for a new `Smart` access tier to `StandardBlobTier` used in `BlobClient.set_standard_blob_tier`,
12+
which is optimized to automatically determine the most cost-effective access with no performance impact.
13+
When set, `BlobProperties.smart_access_tier` will reveal the service's current access
14+
tier choice between `Hot`, `Cool`, and `Archive`.
15+
16+
### Other Changes
17+
- Consolidated the behavior of `max_concurrency=None` by defaulting to the shared `DEFAULT_MAX_CONCURRENCY` constant.
618

719
## 12.29.0 (2026-05-14)
820

sdk/storage/azure-storage-blob/azure/storage/blob/_shared/base_client.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
RedirectPolicy,
3434
UserAgentPolicy,
3535
)
36+
from tests.settings.settings_real import SECONDARY_STORAGE_ACCOUNT_NAME
3637

3738
from .authentication import SharedKeyCredentialPolicy
3839
from .constants import (

sdk/storage/azure-storage-file-datalake/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
## 12.26.0b1 (Unreleased)
44

55
### Features Added
6+
- Added support for service version 2026-06-06.
7+
- Added support for connection strings and `account_url`s to accept URLs with `-ipv6` and `-dualstack` suffixes
8+
for `DataLakeServiceClient`, `FileSystemClient`, `DataLakeDirectoryClient`, and `DataLakeFileClient`.
9+
- Added support for `DataLakeDirectoryClient` and `DataLakeFileClient`'s `set_tags` and `get_tags` APIs
10+
to conditionally set and get tags associated with a directory or file client, respectively.
11+
12+
### Other Changes
13+
- Consolidated the behavior of `max_concurrency=None` by defaulting to the shared `DEFAULT_MAX_CONCURRENCY` constant.
614

715
## 12.24.0 (2026-05-14)
816

sdk/storage/azure-storage-file-share/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,16 @@
33
## 12.27.0b1 (Unreleased)
44

55
### Features Added
6+
- Added support for service version 2026-06-06.
67
- Added support for the keyword `file_property_semantics` in `ShareClient`'s `create_directory` and `DirectoryClient`'s
78
`create_directory` APIs, which specifies permissions to be configured upon directory creation.
89
- Added support for the keyword `data` to `FileClient`'s `create_file` API, which specifies the
910
optional initial data to be uploaded (up to 4MB).
11+
- Added support for connection strings and `account_url`s to accept URLs with `-ipv6` and `-dualstack` suffixes
12+
for `ShareClient`, `ShareDirectoryClient`, and `ShareFileClient`.
13+
14+
### Other Changes
15+
- Consolidated the behavior of `max_concurrency=None` by defaulting to the shared `DEFAULT_MAX_CONCURRENCY` constant.
1016

1117
## 12.25.0 (2026-05-14)
1218

sdk/storage/azure-storage-queue/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
## 12.18.0b1 (Unreleased)
44

55
### Features Added
6+
- Added support for service version 2026-06-06.
7+
- Added support for connection strings and `account_url`s to accept URLs with `-ipv6` and `-dualstack` suffixes
8+
for `QueueServiceClient` and `QueueClient`.
69

710
## 12.16.0 (2026-05-14)
811

0 commit comments

Comments
 (0)