azure-storage
Advanced tools
Comparing version 2.6.0 to 2.7.0
Note: This is the change log file for Azure Storage JavaScript Client Library. | ||
2017.12 Version 0.2.7-preview.13 | ||
* Generated browser compatible JavaScript files based on Microsoft Azure Storage SDK for Node.js 2.7.0. | ||
2017.10 Version 0.2.6-preview.12 | ||
@@ -4,0 +8,0 @@ |
@@ -32,3 +32,3 @@ # Azure Storage JavaScript Client Library for Browsers | ||
|------------|----------|--------------------|-----------------| | ||
| v61 | v56 | v11 | v40 | | ||
| v62 | v57 | v11 | v41 | | ||
@@ -35,0 +35,0 @@ ## Generating a Custom Azure Storage JavaScript Client Library |
Note: This is an Azure Storage only package. The all up Azure node sdk still has the old storage bits in there. In a future release, those storage bits will be removed and an npm dependency to this storage node sdk will | ||
be taken. This is a GA release and the changes described below indicate the changes from the Azure node SDK 0.9.8 available here - https://github.com/Azure/azure-sdk-for-node. | ||
2017.12 Version 2.7.0 | ||
ALL | ||
* Default HTTP connection will enable keep-alive to improve performance. | ||
BLOB | ||
* Added support for `getBlobProperties`, `listBlobsSegmented` and `listBlobsSegmentedWithPrefix` to return `AccessTierChangeTime` and `AccessTierInferred` properties. | ||
* Fixed a blob lease support issue for `appendFromText` and `resizePageBlob`. | ||
TABLE | ||
* Fixed an apostrophe missing issue in `TableQuery.where()` example. | ||
2017.10 Version 2.6.0 | ||
@@ -5,0 +17,0 @@ |
@@ -660,2 +660,4 @@ // | ||
} | ||
requestOptions.forever = true; | ||
} | ||
@@ -662,0 +664,0 @@ |
@@ -40,3 +40,3 @@ // | ||
*/ | ||
USER_AGENT_PRODUCT_VERSION: '2.6.0', | ||
USER_AGENT_PRODUCT_VERSION: '2.7.0', | ||
@@ -1824,3 +1824,10 @@ /** | ||
/** | ||
* For page blobs on premium accounts only. | ||
* This is the datetime of when the last time tier was changed on the blob. | ||
* | ||
* @const | ||
* @type {string} | ||
*/ | ||
ACCESS_TIER_CHANGE_TIME: 'x-ms-access-tier-change-time', | ||
/** | ||
* If the access tier is not explicitly set on the blob, | ||
@@ -1836,3 +1843,3 @@ * the tier is inferred based on its content length | ||
/** | ||
* For BlobStorage LRS accounts, the header is returned if archive tier is set | ||
* For BlobStorage accounts, the header is returned if archive tier is set | ||
* and rehydrate operation is pending for the request version is 2017-04-17 or later. | ||
@@ -1839,0 +1846,0 @@ * The valid values are rehydrate-pending-to-hot or rehydrate-pending-to-cool. |
@@ -101,2 +101,7 @@ // | ||
// convert accessTierInferred to boolean type | ||
if (blobResult.accessTierInferred !== undefined) { | ||
blobResult.accessTierInferred = (blobResult.accessTierInferred === 'true'); | ||
} | ||
return blobResult; | ||
@@ -124,2 +129,3 @@ }; | ||
'accessTier': 'ACCESS_TIER', | ||
'accessTierChangeTime': 'ACCESS_TIER_CHANGE_TIME', | ||
'accessTierInferred': 'ACCESS_TIER_INFERRED', | ||
@@ -126,0 +132,0 @@ 'archiveStatus': 'ARCHIVE_STATUS', |
@@ -99,3 +99,3 @@ // | ||
* OR | ||
* var tableQuery = new TableQuery().where('Name == ?string? && Value == ?int64?, name1, int64Val); | ||
* var tableQuery = new TableQuery().where('Name == ?string? && Value == ?int64?', name1, int64Val); | ||
* | ||
@@ -102,0 +102,0 @@ * // tasktable should already exist and have entities |
{ | ||
"name": "azure-storage", | ||
"author": "Microsoft Corporation", | ||
"version": "2.6.0", | ||
"version": "2.7.0", | ||
"description": "Microsoft Azure Storage Client Library for Node.js", | ||
@@ -6,0 +6,0 @@ "typings": "typings/azure-storage/azure-storage.d.ts", |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
2587282
36666