azure-storage
Advanced tools
Comparing version 1.0.0 to 1.0.1
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. | ||
2016.05 Version 1.0.1 | ||
ALL | ||
* Fixed the issue that StorageServiceClient._normalizeError will throw exception on Node below v4 because string.startsWith is not available on Node below v4. | ||
2016.05 Version 1.0.0 | ||
@@ -5,0 +11,0 @@ |
@@ -1019,3 +1019,3 @@ // | ||
var key = property.toLowerCase(); | ||
if(key.startsWith('m:')) { | ||
if(key.indexOf('m:') === 0) { | ||
key = key.substring(2); | ||
@@ -1022,0 +1022,0 @@ } |
@@ -34,3 +34,3 @@ // | ||
*/ | ||
USER_AGENT_PRODUCT_VERSION: '1.0.0', | ||
USER_AGENT_PRODUCT_VERSION: '1.0.1', | ||
@@ -37,0 +37,0 @@ /** |
{ | ||
"name": "azure-storage", | ||
"author": "Microsoft Corporation", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"description": "Microsoft Azure Storage Client Library for Node.js", | ||
@@ -6,0 +6,0 @@ "tags": [ |
Sorry, the diff of this file is not supported yet
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
3032539