Comparing version 0.6.7 to 0.6.8
@@ -0,1 +1,4 @@ | ||
## v0.6.8 | ||
* Fixes a global variable fix [#25](https://github.com/SaltwaterC/aws2js/pull/25). | ||
## v0.6.7 | ||
@@ -2,0 +5,0 @@ * Fixes the broken encoding of query parameters sent through the optional query argument of s3.get(). |
@@ -469,3 +469,3 @@ /* 3rd party module */ | ||
var key = keys[n]; | ||
sorted[key] = headers[key].replace(/^\s*/, '').replace(/\s*$/, ''); | ||
sorted[key] = headers[key].trim(); | ||
} | ||
@@ -521,3 +521,3 @@ for (var key in sorted) { | ||
if ( ! tools.isEmpty(query)) { | ||
queryParts = []; | ||
var queryParts = []; | ||
for (var key in query) { | ||
@@ -524,0 +524,0 @@ if (key in cfg.subResource) { |
{ | ||
"name": "aws2js", | ||
"main": "./lib/aws.js", | ||
"version": "0.6.7", | ||
"version": "0.6.8", | ||
"description": "AWS (Amazon Web Services) APIs client implementation for node.js", | ||
@@ -38,2 +38,6 @@ "dependencies": { | ||
"url": "http://perceptiveconstructs.com/" | ||
}, | ||
{ | ||
"name": "Nikita", | ||
"url": "https://github.com/nab" | ||
} | ||
@@ -40,0 +44,0 @@ ], |
@@ -44,1 +44,2 @@ ## About ![still maintained](http://stillmaintained.com/SaltwaterC/aws2js.png) | ||
* [Carlos Guerreiro](http://perceptiveconstructs.com/) - the query argument for the [s3.get()](https://github.com/SaltwaterC/aws2js/wiki/s3.get%28%29) method | ||
* [Nikita](https://github.com/nab) - global variable leak fix |
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
103125
45