diff --git a/ChangeLog.md b/ChangeLog.md index f670235e..035dbcb7 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -9,12 +9,14 @@ ALL * Bumped version of request module from ~2.83.0 to ^2.86.0 to solve a vulnerability issue. BLOB -* Add ```createBlobServiceWithBearerToken()``` to create ```BlobService``` object with bearer tokens such as OAuth access token (in preview). +* Added `createBlobServiceWithTokenCredential()` to create `BlobService` object with bearer tokens such as OAuth access token (in preview). * Added support for '$web' as a valid blob container name for static website. * Added support for write-once read-many containers. +* 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. +* The `Get Blob Properties` and `List Blobs` APIs now return the creation time of the blob as a property. QUEUE -* Added ```createQueueServiceWithBearerToken()``` to create ```QueueService``` object with bearer tokens such as OAuth access token (in preview). +* Added `createQueueServiceWithTokenCredential()` to create `QueueService` object with bearer tokens such as OAuth access token (in preview). 2018.05 Version 2.8.3 diff --git a/browser/ChangeLog.md b/browser/ChangeLog.md index 6cfe4784..507e656b 100644 --- a/browser/ChangeLog.md +++ b/browser/ChangeLog.md @@ -9,12 +9,14 @@ ALL * Added `progress` event for `SpeedSummary` class, which will be triggered when every progress updates. BLOB -* Add ```createBlobServiceWithBearerToken()``` to create ```BlobService``` object with bearer tokens such as OAuth access token. +* Added `createBlobServiceWithTokenCredential()` to create `BlobService` object with bearer tokens such as OAuth access token (in preview). * Added support for '$web' as a valid blob container name for static website. * Added support for write-once read-many containers. +* 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. +* The `Get Blob Properties` and `List Blobs` APIs now return the creation time of the blob as a property. QUEUE -* Added ```createQueueServiceWithBearerToken()``` to create ```QueueService``` object with bearer tokens such as OAuth access token. +* Added `createQueueServiceWithTokenCredential()` to create `QueueService` object with bearer tokens such as OAuth access token (in preview). 2018.04 Version 2.8.100+2.8.2 diff --git a/lib/common/signing/sharedkey.js b/lib/common/signing/sharedkey.js index 2137dc87..444c475f 100644 --- a/lib/common/signing/sharedkey.js +++ b/lib/common/signing/sharedkey.js @@ -162,8 +162,8 @@ SharedKey.prototype._generateAccountSharedAccessSignature = function(sharedAcces /** * Signs a request with the Authentication header. * -* @param {WebResource} webResource The webresource to be signed. -* @param {function(error)} callback The callback function. +* @param {WebResource} webResource The webresource to be signed. +* @param {function(error)} callback The callback function. */ SharedKey.prototype.signRequest = function (webResource, callback) { var getvalueToAppend = function (value, headerName) { diff --git a/lib/common/signing/tokensigner.js b/lib/common/signing/tokensigner.js index 09c097b2..fecb17a8 100644 --- a/lib/common/signing/tokensigner.js +++ b/lib/common/signing/tokensigner.js @@ -30,8 +30,8 @@ function TokenSigner (tokenCredential) { /** * Signs a request with the Authentication header. * -* @param {WebResource} webResource The webresource to be signed. -* @param {function(error)} callback The callback function. +* @param {WebResource} webResource The webresource to be signed. +* @param {function(error)} callback The callback function. */ TokenSigner.prototype.signRequest = function (webResource, callback) { webResource.withHeader(HeaderConstants.AUTHORIZATION, 'Bearer ' + this.tokenCredential.get());