You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: sdk/storage/azblob/CHANGELOG.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,6 +21,7 @@
21
21
* Corrected signing of User Delegation SAS. Fixes [#19372](https://github.com/Azure/azure-sdk-for-go/issues/19372) and [#19454](https://github.com/Azure/azure-sdk-for-go/issues/19454)
22
22
* Added formatting of start and expiry time in [SetAccessPolicy](https://learn.microsoft.com/rest/api/storageservices/set-container-acl#request-body). Fixes [#18712](https://github.com/Azure/azure-sdk-for-go/issues/18712)
23
23
* Uploading block blobs larger than 256MB can fail in some cases with error `net/http: HTTP/1.x transport connection broken`.
24
+
* Blob name parameters are URL-encoded before constructing the complete blob URL.
// NewPageBlobClient creates a new PageBlobURL object by concatenating blobName to the end of Client's URL. The new PageBlobURL uses the same request policy pipeline as the Client.
140
-
// To change the pipeline, create the PageBlobURL and then call its WithPipeline method passing in the
141
-
// desired pipeline object. Or, call this package's NewPageBlobClient instead of calling this object's
142
-
// NewPageBlobClient method.
137
+
// NewPageBlobClient creates a new pageblob.Client object by concatenating blobName to the end of
138
+
// this Client's URL. The blob name will be URL-encoded.
139
+
// The new pageblob.Client uses the same request policy pipeline as this Client.
0 commit comments