Skip to content

Commit f3810de

Browse files
XiaoningLiuvinjiang
authored andcommitted
Updated changelog and fixed comments alignment
1 parent 2b48fc1 commit f3810de

4 files changed

Lines changed: 12 additions & 8 deletions

File tree

ChangeLog.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,14 @@ ALL
99
* Bumped version of request module from ~2.83.0 to ^2.86.0 to solve a vulnerability issue.
1010

1111
BLOB
12-
* Add ```createBlobServiceWithBearerToken()``` to create ```BlobService``` object with bearer tokens such as OAuth access token (in preview).
12+
* Added `createBlobServiceWithTokenCredential()` to create `BlobService` object with bearer tokens such as OAuth access token (in preview).
1313
* Added support for '$web' as a valid blob container name for static website.
1414
* Added support for write-once read-many containers.
15+
* The `Get Container Properties` and `List Containers` APIs now return two new properties indicating whether the container has an immutability policy or a legal hold.
16+
* The `Get Blob Properties` and `List Blobs` APIs now return the creation time of the blob as a property.
1517

1618
QUEUE
17-
* Added ```createQueueServiceWithBearerToken()``` to create ```QueueService``` object with bearer tokens such as OAuth access token (in preview).
19+
* Added `createQueueServiceWithTokenCredential()` to create `QueueService` object with bearer tokens such as OAuth access token (in preview).
1820

1921
2018.05 Version 2.8.3
2022

browser/ChangeLog.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,14 @@ ALL
99
* Added `progress` event for `SpeedSummary` class, which will be triggered when every progress updates.
1010

1111
BLOB
12-
* Add ```createBlobServiceWithBearerToken()``` to create ```BlobService``` object with bearer tokens such as OAuth access token.
12+
* Added `createBlobServiceWithTokenCredential()` to create `BlobService` object with bearer tokens such as OAuth access token (in preview).
1313
* Added support for '$web' as a valid blob container name for static website.
1414
* Added support for write-once read-many containers.
15+
* The `Get Container Properties` and `List Containers` APIs now return two new properties indicating whether the container has an immutability policy or a legal hold.
16+
* The `Get Blob Properties` and `List Blobs` APIs now return the creation time of the blob as a property.
1517

1618
QUEUE
17-
* Added ```createQueueServiceWithBearerToken()``` to create ```QueueService``` object with bearer tokens such as OAuth access token.
19+
* Added `createQueueServiceWithTokenCredential()` to create `QueueService` object with bearer tokens such as OAuth access token (in preview).
1820

1921
2018.04 Version 2.8.100+2.8.2
2022

lib/common/signing/sharedkey.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -162,8 +162,8 @@ SharedKey.prototype._generateAccountSharedAccessSignature = function(sharedAcces
162162
/**
163163
* Signs a request with the Authentication header.
164164
*
165-
* @param {WebResource} webResource The webresource to be signed.
166-
* @param {function(error)} callback The callback function.
165+
* @param {WebResource} webResource The webresource to be signed.
166+
* @param {function(error)} callback The callback function.
167167
*/
168168
SharedKey.prototype.signRequest = function (webResource, callback) {
169169
var getvalueToAppend = function (value, headerName) {

lib/common/signing/tokensigner.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ function TokenSigner (tokenCredential) {
3030
/**
3131
* Signs a request with the Authentication header.
3232
*
33-
* @param {WebResource} webResource The webresource to be signed.
34-
* @param {function(error)} callback The callback function.
33+
* @param {WebResource} webResource The webresource to be signed.
34+
* @param {function(error)} callback The callback function.
3535
*/
3636
TokenSigner.prototype.signRequest = function (webResource, callback) {
3737
webResource.withHeader(HeaderConstants.AUTHORIZATION, 'Bearer ' + this.tokenCredential.get());

0 commit comments

Comments
 (0)