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

azure-common

Package Overview
Dependencies
Maintainers
1
Versions
28
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

azure-common - npm Package Compare versions

Comparing version 0.9.5 to 0.9.6

22

lib/common.js

@@ -25,3 +25,3 @@ //

if (nodeVersion.major === 0 && nodeVersion.minor > 8 && !(nodeVersion.minor > 10 || (nodeVersion.minor === 10 && nodeVersion.patch >= 3))) {
throw new Error('The Windows Azure node SDK does not work with node versions > 0.8.22 and < 0.10.3. Please upgrade to node >= 0.10.3');
throw new Error('The Microsoft Azure node SDK does not work with node versions > 0.8.22 and < 0.10.3. Please upgrade to node >= 0.10.3');
}

@@ -68,2 +68,22 @@

exports.configure = function (env, configCallback) {
if (arguments.length === 1) {
exports.config.configure(env);
} else {
exports.config.configure(env, configCallback);
}
};
exports.dumpConfig = function () {
console.log();
exports.config.environments.forEach(function (e) {
console.log('Environment', e);
var env = exports.config(e);
env.settings.forEach(function (setting) {
console.log(' ', setting, ':', env.get(setting));
});
});
};
exports.HmacSha256Sign = require('./services/hmacsha256sign');

@@ -70,0 +90,0 @@ exports.ISO8061Date = require('./util/iso8061date');

@@ -0,0 +0,0 @@ //

@@ -0,0 +0,0 @@ //

@@ -0,0 +0,0 @@ //

@@ -0,0 +0,0 @@ //

@@ -0,0 +0,0 @@ //

@@ -0,0 +0,0 @@ //

2

lib/util/constants.js

@@ -1754,3 +1754,3 @@ //

/**
* The master Windows Azure Storage header prefix.
* The master Microsoft Azure Storage header prefix.
*

@@ -1757,0 +1757,0 @@ * @const

@@ -0,0 +0,0 @@ //

@@ -0,0 +0,0 @@ //

@@ -0,0 +0,0 @@ //

@@ -0,0 +0,0 @@ //

@@ -0,0 +0,0 @@ //

@@ -0,0 +0,0 @@ //

@@ -0,0 +0,0 @@ //

@@ -0,0 +0,0 @@ //

@@ -0,0 +0,0 @@ //

@@ -0,0 +0,0 @@ //

@@ -0,0 +0,0 @@ //

@@ -0,0 +0,0 @@ Apache License

@@ -13,4 +13,4 @@ {

],
"version": "0.9.5",
"description": "Windows Azure Common Client Library for node",
"version": "0.9.6",
"description": "Microsoft Azure Common Client Library for node",
"tags": [

@@ -17,0 +17,0 @@ "azure",

@@ -1,7 +0,7 @@

# Windows Azure SDK for Node.js - Common
# Microsoft Azure SDK for Node.js - Common
This project provides a Node.js package that serves as the building block for the different services modules in the overall Windows Azure SDK for Node.js.
This project provides a Node.js package that serves as the building block for the different services modules in the overall Microsoft Azure SDK for Node.js.
## Related projects
- [Windows Azure SDK for Node.js](https://github.com/WindowsAzure/azure-sdk-for-node)
- [Microsoft Azure SDK for Node.js](https://github.com/WindowsAzure/azure-sdk-for-node)
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