Comparing version 0.6.9 to 0.6.11
@@ -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). |
@@ -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 |
@@ -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
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
105782
2807
59
Updatedlibxml-to-js@>=0.3.10