12.26.0-beta.1 (2024-04-15)
Features Added
- Added support for service versions 2024-02-04 and 2024-05-04.
Breaking Changes
- When creating a
BlobClient
viaBlobContainerClient.getBlobClient(String blobName)
or
BlobServiceClient.getBlobClient(String blobName)
, the blob name will be stored exactly as passed in and will not be
URL-encoded. For example, if blob name is "test%25test" and is created by calling
BlobContainerClient.getBlobClient("test%25test")
orBlobClient.getBlobName("test%25test")
,
BlobClient.getBlobName()
will return "test%25test" and the blob's url will result in
“https://account.blob.core.windows.net/container/test%25%25test”.