azure-storage
Advanced tools
Comparing version 0.1.0 to 0.2.0
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 CTP v1 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. | ||
2014.06.XX Version 0.1.0 | ||
2014.06.16 Version 0.2.0 | ||
ALL | ||
* Updated storage service version to 2014-02-14. The SAS tokens generated will therefore contain a signed version of 2014-02-14 and all the requests using SAS credentials have the api-version query parameter appended to the URI. | ||
2014.06.12 Version 0.1.0 | ||
ALL | ||
* The package has been renamed to azure-storage. | ||
@@ -8,0 +13,0 @@ * There is no separate azure-common sub-package. Everything is condensed into a single package called azure-storage. |
@@ -17,2 +17,3 @@ // | ||
var HmacSha256Sign = require('./hmacsha256sign'); | ||
var Constants = require('./../util/constants'); | ||
@@ -47,2 +48,4 @@ /** | ||
// Add the api-version | ||
webResource.uri += '&' + Constants.QueryStringConstants.API_VERSION + '=' + Constants.HeaderConstants.TARGET_STORAGE_VERSION; | ||
callback(null); | ||
@@ -49,0 +52,0 @@ }; |
@@ -1313,3 +1313,3 @@ // | ||
*/ | ||
TARGET_STORAGE_VERSION: '2013-08-15', | ||
TARGET_STORAGE_VERSION: '2014-02-14', | ||
@@ -1398,3 +1398,11 @@ /** | ||
QueryStringConstants: { | ||
/** | ||
* Query component for SAS API version. | ||
* @const | ||
* @type {string} | ||
*/ | ||
API_VERSION: 'api-version', | ||
/** | ||
* The Comp value. | ||
@@ -1401,0 +1409,0 @@ * |
{ | ||
"name": "azure-storage", | ||
"author": "Microsoft Corporation", | ||
"version": "0.1.0", | ||
"version": "0.2.0", | ||
"description": "Microsoft Azure Storage Client Library for Node.js", | ||
@@ -6,0 +6,0 @@ "tags": [ |
# Microsoft Azure Storage SDK for Node.js | ||
[![NPM version](https://badge.fury.io/js/azure-storage.svg)](http://badge.fury.io/js/azure-storage) | ||
This project provides a Node.js package that makes it easy to consume and manage Microsoft Azure Storage Services. | ||
@@ -4,0 +6,0 @@ |
825658
16279
274