Skip to content

Commit

Permalink
Updated changelog and fixed comments alignment
Browse files Browse the repository at this point in the history
  • Loading branch information
XiaoningLiu authored and vinjiang committed May 28, 2018
1 parent 2b48fc1 commit f3810de
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 8 deletions.
6 changes: 4 additions & 2 deletions ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
6 changes: 4 additions & 2 deletions browser/ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions lib/common/signing/sharedkey.js
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
4 changes: 2 additions & 2 deletions lib/common/signing/tokensigner.js
Original file line number Diff line number Diff line change
Expand Up @@ -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());
Expand Down

0 comments on commit f3810de

Please sign in to comment.