Skip to content

Commit 9890b6c

Browse files
authored
bump to 0.8.12 (#184)
1 parent 07780a9 commit 9890b6c

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,3 +87,14 @@ This project adheres to [Semantic Versioning](http://semver.org/).
8787
### Bugfixes
8888
- Restore lambda version functionality [#156](https://github.com/motdotla/node-lambda/issues/156)
8989
- Namespaced packages fail to deploy [#157](https://github.com/motdotla/node-lambda/issues/157)
90+
91+
## [0.8.12] - 2017-02-10
92+
### Bugfixes
93+
- Using path.join instead of hardcoded slashes [#173](https://github.com/motdotla/node-lambda/pull/173)
94+
- Drop node-uuid from package.json [#174](https://github.com/motdotla/node-lambda/pull/174)
95+
- Enforce max for timeout and update README docs [#180](https://github.com/motdotla/node-lambda/pull/180)
96+
- Fill default VpcConfig to prevent errors [#183](https://github.com/motdotla/node-lambda/pull/183)
97+
98+
### Features
99+
- Added getRemainingTimeInMillis() to the context when running locally. [#179](https://github.com/motdotla/node-lambda/pull/179)
100+
- Adding support for lambda environment variables [#181](https://github.com/motdotla/node-lambda/pull/181)

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.11",
3+
"version": "0.8.12",
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.11');
39+
assert.equal(lambda.version, '0.8.12');
4040
});
4141

4242
describe('_params', function () {

0 commit comments

Comments
 (0)