Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

aws2js

Package Overview
Dependencies
Maintainers
1
Versions
59
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

aws2js - npm Package Compare versions

Comparing version 0.6.9 to 0.6.11

6

CHANGELOG.md

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

## v0.6.11
* Enables the region support for DynamoDB [#27](https://github.com/SaltwaterC/aws2js/pull/27).
## v0.6.10
* Support for the arguments without values into the optional query argument of s3.get().
## v0.6.9

@@ -2,0 +8,0 @@ * Adds the possibility to pass HTTP options to the client loader [#26](https://github.com/SaltwaterC/aws2js/pull/26).

1

CONTRIBUTORS.md

@@ -11,1 +11,2 @@ ## aws2js contributors, in order of first contribution

* [Nikita](https://github.com/nab) - global variable leak fix
* [AYUkawa,Yasuyuk](https://github.com/toomore-such) - enabled the multiregion support for DynamoDB

1

lib/aws.js

@@ -807,3 +807,2 @@ /* core modules */

exports.load = function (service, accessKeyId, secretAccessKey, sessionToken, httpOptions) {
if (service == 's3') {

@@ -810,0 +809,0 @@ if (process.version == 'v0.6.9') { // npm doesn't like version ranges, the parser is FUBAR

@@ -25,3 +25,2 @@ /**

elasticache: null,
dynamodb: null,
sts: null

@@ -28,0 +27,0 @@ };

@@ -606,3 +606,7 @@ /* 3rd party module */

for (var i in query) {
queryPieces.push(i + '=' + query[i]);
if (query[i] !== null) {
queryPieces.push(i + '=' + query[i]);
} else {
queryPieces.push(i);
}
}

@@ -609,0 +613,0 @@ query = queryPieces.join('&');

{
"name": "aws2js",
"main": "./lib/aws.js",
"version": "0.6.9",
"version": "0.6.11",
"description": "AWS (Amazon Web Services) APIs client implementation for node.js",
"dependencies": {
"libxmljs": ">=0.5.0",
"libxml-to-js": ">=0.3.9",
"libxml-to-js": ">=0.3.10",
"mime-magic": ">=0.2.5"

@@ -42,2 +42,6 @@ },

"url": "https://github.com/nab"
},
{
"name": "AYUkawa,Yasuyuk",
"url": "https://github.com/toomore-such"
}

@@ -44,0 +48,0 @@ ],

@@ -6,3 +6,4 @@ var assert = require('assert');

query: false,
path: false
path: false,
queryOnly: false
};

@@ -30,2 +31,7 @@

s3.get('/', {uploads: null, 'max-uploads': 1}, 'xml', function (err, res) {
callbacks.queryOnly = true;
s3ProcessResponse(err, res);
});
process.on('exit', function () {

@@ -32,0 +38,0 @@ for (var i in callbacks) {

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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