Skip to content

Commit 70db03e

Browse files
authored
bump to 0.8.14 (#202)
1 parent 42cac04 commit 70db03e

File tree

4 files changed

+21
-2
lines changed

4 files changed

+21
-2
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,3 +104,14 @@ This project adheres to [Semantic Versioning](http://semver.org/).
104104
- Fixed wrong runtime call [#188](https://github.com/motdotla/node-lambda/pull/188)
105105
- Docker support [#186](https://github.com/motdotla/node-lambda/pull/186)
106106
- Make default excludes apply to root only [#185](https://github.com/motdotla/node-lambda/pull/185)
107+
108+
109+
## [0.8.14] - 2017-03-27
110+
### Features
111+
- Event source mapping support [#189](https://github.com/motdotla/node-lambda/pull/189)
112+
- Fix version of Node.js supported by AWS Lambda [#197](https://github.com/motdotla/node-lambda/pull/197)
113+
- How about it if you have the option to specify the zip file? [#199](https://github.com/motdotla/node-lambda/pull/199)
114+
- Add 'Runtime' to the params of lambda.updateFunctionConfiguration [#200](https://github.com/motdotla/node-lambda/pull/200)
115+
116+
### Bugfixes
117+
- Fix unit test failure at travis [#198](https://github.com/motdotla/node-lambda/pull/198)

event_sources.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
[
2+
{
3+
"EventSourceArn": "your event source arn",
4+
"StartingPosition": "LATEST",
5+
"BatchSize": 100,
6+
"Enabled": true
7+
}
8+
]

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "node-lambda",
3-
"version": "0.8.13",
3+
"version": "0.8.14",
44
"description": "Command line tool for locally running and remotely deploying your node.js applications to Amazon Lambda.",
55
"main": "lib/main.js",
66
"directories": {

test/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ describe('node-lambda', function () {
3636
});
3737

3838
it('version should be set', function () {
39-
assert.equal(lambda.version, '0.8.13');
39+
assert.equal(lambda.version, '0.8.14');
4040
});
4141

4242
describe('_params', function () {

0 commit comments

Comments
 (0)