New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

azure-storage

Package Overview
Dependencies
Maintainers
1
Versions
50
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

azure-storage - npm Package Compare versions

Comparing version 0.2.0 to 0.2.1

lib/common/common.js

8

ChangeLog.txt
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.07.01 Version 0.2.1
ALL
* Fixed a bug with casing which caused the module to fail on linux machines.
BLOB
* Fixed a bug which failed to upload an empty blob for empty block blob files uploaded using createBlockBlobFromFile when retry policies were used.
2014.06.16 Version 0.2.0

@@ -5,0 +13,0 @@

10

gruntfile.js

@@ -31,7 +31,7 @@ //

"lib/azure-storage.js",
"lib/common/lib/services/filters/retrypolicyfilter.js",
"lib/common/lib/services/filters/linearretrypolicyfilter.js",
"lib/common/lib/services/filters/exponentialretrypolicyfilter.js",
"lib/common/lib/services/storageutilities.js",
"lib/common/lib/util/date.js",
"lib/common/filters/retrypolicyfilter.js",
"lib/common/filters/linearretrypolicyfilter.js",
"lib/common/filters/exponentialretrypolicyfilter.js",
"lib/common/services/storageutilities.js",
"lib/common/util/date.js",
"lib/services/blob/blobservice.js",

@@ -38,0 +38,0 @@ "lib/services/blob/blobutilities.js",

@@ -177,3 +177,3 @@ //

var azureCommon = require('./common/lib/common');
var azureCommon = require('./common/common');

@@ -187,15 +187,4 @@ exports.Constants = azureCommon.Constants;

exports.WebResource = azureCommon.WebResource;
exports.Validate = azureCommon.validate;
exports.date = azureCommon.date;
exports.ServiceSettings = azureCommon.ServiceSettings;
exports.StorageServiceSettings = azureCommon.StorageServiceSettings;
exports.AclResult = require('./common/lib/services/aclresult');
// Credentials
exports.SharedAccessSignature = require('./common/lib/services/sharedaccesssignature');
exports.SharedKey = require('./common/lib/services/sharedkey');
exports.SharedKeyTable = require('./services/table/internal/sharedkeytable');
// Other filters

@@ -202,0 +191,0 @@ exports.LinearRetryPolicyFilter = azureCommon.LinearRetryPolicyFilter;

@@ -16,3 +16,3 @@ //

//
var azureCommon = require('./../../common/lib/common');
var azureCommon = require('./../../common/common');
var HeaderConstants = azureCommon.Constants.HeaderConstants;

@@ -67,3 +67,3 @@

METADATA: 'metadata',
UNCOMMITTEDBLOBS: 'uncommittedblobs'
UNCOMMITTED_BLOBS: 'uncommittedblobs'
},

@@ -70,0 +70,0 @@

@@ -20,3 +20,3 @@ //

var azureCommon = require('./../../../common/lib/common');
var azureCommon = require('./../../../common/common');
var azureutil = azureCommon.util;

@@ -23,0 +23,0 @@ var Constants = azureCommon.Constants;

@@ -18,3 +18,3 @@ //

// Module dependencies.
var azureCommon = require('./../../../common/lib/common');
var azureCommon = require('./../../../common/common');
var xmlbuilder = azureCommon.xmlbuilder;

@@ -21,0 +21,0 @@ var Constants = azureCommon.Constants;

@@ -18,3 +18,3 @@ //

// Module dependencies.
var Constants = require('./../../../common/lib/common').Constants;
var Constants = require('./../../../common/common').Constants;

@@ -21,0 +21,0 @@ var HeaderConstants = Constants.HeaderConstants;

@@ -18,3 +18,3 @@ //

// Module dependencies.
var Constants = require('./../../../common/lib/common').Constants;
var Constants = require('./../../../common/common').Constants;
var HeaderConstants = Constants.HeaderConstants;

@@ -21,0 +21,0 @@

@@ -18,3 +18,3 @@ //

// Module dependencies.
var azureCommon = require('./../../../common/lib/common');
var azureCommon = require('./../../../common/common');
var xmlbuilder = azureCommon.xmlbuilder;

@@ -21,0 +21,0 @@ var Constants = azureCommon.Constants;

@@ -18,3 +18,3 @@ //

// Module dependencies.
var Constants = require('./../../../common/lib/common').Constants;
var Constants = require('./../../../common/common').Constants;
var HeaderConstants = Constants.HeaderConstants;

@@ -21,0 +21,0 @@

@@ -21,3 +21,3 @@ //

var azureCommon = require('./../../../common/lib/common');
var azureCommon = require('./../../../common/common');
var azureutil = azureCommon.util;

@@ -24,0 +24,0 @@ var SR = azureCommon.SR;

@@ -20,3 +20,3 @@ //

var azureCommon = require('./../../../common/lib/common');
var azureCommon = require('./../../../common/common');
var azureutil = azureCommon.util;

@@ -23,0 +23,0 @@ var SR = azureCommon.SR;

@@ -19,3 +19,3 @@ //

var util = require('util');
var azureCommon = require('./../../../common/lib/common');
var azureCommon = require('./../../../common/common');
var SharedKey = azureCommon.SharedKey;

@@ -22,0 +22,0 @@ var azureutil = azureCommon.util;

@@ -20,3 +20,3 @@ //

var azureCommon = require('./../../../common/lib/common');
var azureCommon = require('./../../../common/common');
var StorageServiceClient = azureCommon.StorageServiceClient;

@@ -28,3 +28,3 @@ var WebResource = azureCommon.WebResource;

var TableService = require('../TableService');
var RequestHandler = require('../internal/requesthandler');
var entityResult = require('./entityresult');

@@ -115,3 +115,3 @@

operation.options.payloadFormat = operation.options.payloadFormat || this.tableService.defaultPayloadFormat;
var webResource = TableService._constructEntityWebResource(operation.type, this.table, operation.entity, operation.options);
var webResource = RequestHandler.constructEntityWebResource(operation.type, this.table, operation.entity, operation.options);

@@ -118,0 +118,0 @@ if (count) {

@@ -18,3 +18,3 @@ //

// Module dependencies.
var azureCommon = require('./../../../common/lib/common');
var azureCommon = require('./../../../common/common');
var Constants = azureCommon.Constants;

@@ -21,0 +21,0 @@ var TableConstants = Constants.TableConstants;

@@ -20,3 +20,3 @@ //

var azureCommon = require('./../../common/lib/common');
var azureCommon = require('./../../common/common');
var SR = azureCommon.SR;

@@ -23,0 +23,0 @@ var validate = azureCommon.validate;

@@ -21,3 +21,3 @@ //

var azureCommon = require('./../../common/lib/common');
var azureCommon = require('./../../common/common');
var azureutil = azureCommon.util;

@@ -24,0 +24,0 @@ var SR = azureCommon.SR;

{
"name": "azure-storage",
"author": "Microsoft Corporation",
"version": "0.2.0",
"version": "0.2.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

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc