Skip to content

Commit

Permalink
Bumbed the EC2 and SQS version numbers. Updated the bureaucratic bits.
Browse files Browse the repository at this point in the history
  • Loading branch information
SaltwaterC committed Nov 15, 2012
1 parent b8f92c4 commit a8a3a00
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 12 deletions.
4 changes: 2 additions & 2 deletions config/aws.js
Expand Up @@ -70,7 +70,7 @@ exports.clients = {
ec2: {
prefix: 'ec2',
query: {
Version: '2012-08-15',
Version: '2012-10-01',
SignatureMethod: 'HmacSHA256',
SignatureVersion: '2'
}
Expand Down Expand Up @@ -141,7 +141,7 @@ exports.clients = {
prefix: 'sqs',
host: 'queue.amazonaws.com',
query: {
Version: '2011-10-01',
Version: '2012-11-05',
SignatureMethod: 'HmacSHA256',
SignatureVersion: '2'
}
Expand Down
14 changes: 9 additions & 5 deletions config/package.json
@@ -1,7 +1,7 @@
{
"name": "aws2js",
"main": "./lib/aws.js",
"version": "0.7.6",
"version": "0.7.7",
"description": "AWS (Amazon Web Services) APIs client implementation for node.js",
"scripts": {
"install": "node tools/install.js"
Expand All @@ -20,12 +20,12 @@
"homepage": "https://github.com/SaltwaterC/aws2js",
"author": {
"name": "Stefan Rusu",
"url": "http://www.saltwaterc.eu/"
"url": "http://www.saltwaterc.eu"
},
"contributors": [
{
"name": "Dan Tillberg",
"url": "http://tillberg.us/"
"url": "http://tillberg.us"
},
{
"name": "Andrew Paulin",
Expand All @@ -37,7 +37,7 @@
},
{
"name": "Carlos Guerreiro",
"url": "http://perceptiveconstructs.com/"
"url": "http://perceptiveconstructs.com"
},
{
"name": "Nikita",
Expand Down Expand Up @@ -77,7 +77,7 @@
},
{
"name": "Alon Burg",
"url": "http://burg-alon.9folds.com/"
"url": "http://burg-alon.9folds.com"
},
{
"name": "Matt Monson",
Expand All @@ -90,6 +90,10 @@
{
"name": "Dan Ordille",
"url": "https://github.com/dordille"
},
{
"name": "Stephen Veit",
"url": "http://stephen-veit.blogspot.com"
}
],
"repository": {
Expand Down
5 changes: 5 additions & 0 deletions doc/CHANGELOG.md
@@ -1,3 +1,8 @@
## v0.7.7
* Don't error out on close events with 204 status code [#67](https://github.com/SaltwaterC/aws2js/pull/67).
* Updates the EC2 API client to default to version 2012-10-01.
* Updates the SQS API client to default to version 2012-11-05.

## v0.7.6
* Does not pass the S3 CreateBucketConfiguration document on bucket creation with s3.createBucket() into the default zone [#64](https://github.com/SaltwaterC/aws2js/issues/64).
* Allowing empty string for indicating the default zone (US East 1, N. Virginia) for s3.createBucket().
Expand Down
2 changes: 2 additions & 0 deletions doc/CONTRIBUTORS.md
Expand Up @@ -6,6 +6,7 @@
* client loader creates a new object on invocation.
* passing HTTP options to the client loader.
* attached a parsed XML document when the connection is prematurely closed.
* don't error on close with status code 204
* [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.
* [AYUkawa,Yasuyuk](https://github.com/toomore-such) - enabled the multiregion support for DynamoDB.
Expand All @@ -20,3 +21,4 @@
* [Matt Monson](https://github.com/mattmonson) - fixed the inconsistent use of the default 'utf8' encoding for the String Request Body Handler of the s3.put() method.
* [Stephen Lynn](https://github.com/lynns) - removed the npm purging code that breaks npm rebuild on environments like Heroku.
* [Dan Ordille](https://github.com/dordille) - fixed the broken header signing for DynamoDB when the request body contains UTF-8 chars.
* [Stephen Veit](http://stephen-veit.blogspot.com/) - fixed the S3 bucket fail when specifying us-east-1
14 changes: 9 additions & 5 deletions package.json
@@ -1,7 +1,7 @@
{
"name": "aws2js",
"main": "./lib/aws.js",
"version": "0.7.6",
"version": "0.7.7",
"description": "AWS (Amazon Web Services) APIs client implementation for node.js",
"scripts": {
"install": "node tools/install.js"
Expand All @@ -20,12 +20,12 @@
"homepage": "https://github.com/SaltwaterC/aws2js",
"author": {
"name": "Stefan Rusu",
"url": "http://www.saltwaterc.eu/"
"url": "http://www.saltwaterc.eu"
},
"contributors": [
{
"name": "Dan Tillberg",
"url": "http://tillberg.us/"
"url": "http://tillberg.us"
},
{
"name": "Andrew Paulin",
Expand All @@ -37,7 +37,7 @@
},
{
"name": "Carlos Guerreiro",
"url": "http://perceptiveconstructs.com/"
"url": "http://perceptiveconstructs.com"
},
{
"name": "Nikita",
Expand Down Expand Up @@ -77,7 +77,7 @@
},
{
"name": "Alon Burg",
"url": "http://burg-alon.9folds.com/"
"url": "http://burg-alon.9folds.com"
},
{
"name": "Matt Monson",
Expand All @@ -90,6 +90,10 @@
{
"name": "Dan Ordille",
"url": "https://github.com/dordille"
},
{
"name": "Stephen Veit",
"url": "http://stephen-veit.blogspot.com"
}
],
"repository": {
Expand Down

0 comments on commit a8a3a00

Please sign in to comment.