Comparing version 0.6.11 to 0.6.12
@@ -0,1 +1,5 @@ | ||
## v0.6.12 | ||
* Corrected URL module's alias from 'url' to 'u' [#28](https://github.com/SaltwaterC/aws2js/pull/28). | ||
* Updates the ElastiCache API client to default to version 2012-03-09. | ||
## v0.6.11 | ||
@@ -2,0 +6,0 @@ * Enables the region support for DynamoDB [#27](https://github.com/SaltwaterC/aws2js/pull/27). |
@@ -12,1 +12,2 @@ ## aws2js contributors, in order of first contribution | ||
* [AYUkawa,Yasuyuk](https://github.com/toomore-such) - enabled the multiregion support for DynamoDB | ||
* [ske](https://github.com/ske) - corrected URL module's alias from 'url' to 'u' |
@@ -127,3 +127,3 @@ /** | ||
query: { | ||
Version: '2011-07-15', | ||
Version: '2012-03-09', | ||
SignatureMethod: 'HmacSHA256', | ||
@@ -130,0 +130,0 @@ SignatureVersion: '2' |
@@ -149,3 +149,3 @@ /* 3rd party module */ | ||
if (requestId <= 10) { | ||
var location = url.parse(response.headers.location); | ||
var location = u.parse(response.headers.location); | ||
options.host = location.hostname; | ||
@@ -152,0 +152,0 @@ delete (options.agent); |
{ | ||
"name": "aws2js", | ||
"main": "./lib/aws.js", | ||
"version": "0.6.11", | ||
"version": "0.6.12", | ||
"description": "AWS (Amazon Web Services) APIs client implementation for node.js", | ||
@@ -46,2 +46,6 @@ "dependencies": { | ||
"url": "https://github.com/toomore-such" | ||
}, | ||
{ | ||
"name": "ske", | ||
"url": "https://github.com/ske" | ||
} | ||
@@ -48,0 +52,0 @@ ], |
@@ -15,3 +15,3 @@ #!/usr/bin/env node | ||
cloudwatch: 'http://docs.amazonwebservices.com/AmazonCloudWatch/latest/APIReference/Welcome.html', | ||
elasticache: 'http://docs.amazonwebservices.com/AmazonElastiCache/latest/APIReference/_title.html', | ||
elasticache: 'http://docs.amazonwebservices.com/AmazonElastiCache/latest/APIReference/Welcome.html', | ||
sqs: 'http://docs.amazonwebservices.com/AWSSimpleQueueService/latest/APIReference/Welcome.html', | ||
@@ -18,0 +18,0 @@ cloudformation: 'http://docs.amazonwebservices.com/AWSCloudFormation/latest/APIReference/Welcome.html', |
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
106112