Skip to content

Commit

Permalink
bump to 0.8.14 (#202)
Browse files Browse the repository at this point in the history
  • Loading branch information
DeviaVir authored Mar 27, 2017
1 parent 42cac04 commit 70db03e
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 2 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,3 +104,14 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- Fixed wrong runtime call [#188](https://github.com/motdotla/node-lambda/pull/188)
- Docker support [#186](https://github.com/motdotla/node-lambda/pull/186)
- Make default excludes apply to root only [#185](https://github.com/motdotla/node-lambda/pull/185)


## [0.8.14] - 2017-03-27
### Features
- Event source mapping support [#189](https://github.com/motdotla/node-lambda/pull/189)
- Fix version of Node.js supported by AWS Lambda [#197](https://github.com/motdotla/node-lambda/pull/197)
- How about it if you have the option to specify the zip file? [#199](https://github.com/motdotla/node-lambda/pull/199)
- Add 'Runtime' to the params of lambda.updateFunctionConfiguration [#200](https://github.com/motdotla/node-lambda/pull/200)

### Bugfixes
- Fix unit test failure at travis [#198](https://github.com/motdotla/node-lambda/pull/198)
8 changes: 8 additions & 0 deletions event_sources.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
[
{
"EventSourceArn": "your event source arn",
"StartingPosition": "LATEST",
"BatchSize": 100,
"Enabled": true
}
]
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "node-lambda",
"version": "0.8.13",
"version": "0.8.14",
"description": "Command line tool for locally running and remotely deploying your node.js applications to Amazon Lambda.",
"main": "lib/main.js",
"directories": {
Expand Down
2 changes: 1 addition & 1 deletion test/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ describe('node-lambda', function () {
});

it('version should be set', function () {
assert.equal(lambda.version, '0.8.13');
assert.equal(lambda.version, '0.8.14');
});

describe('_params', function () {
Expand Down

0 comments on commit 70db03e

Please sign in to comment.