Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bump to 0.8.12 #184

Merged
merged 1 commit into from
Feb 9, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,3 +87,14 @@ This project adheres to [Semantic Versioning](http://semver.org/).
### Bugfixes
- Restore lambda version functionality [#156](https:/motdotla/node-lambda/issues/156)
- Namespaced packages fail to deploy [#157](https:/motdotla/node-lambda/issues/157)

## [0.8.12] - 2017-02-10
### Bugfixes
- Using path.join instead of hardcoded slashes [#173](https:/motdotla/node-lambda/pull/173)
- Drop node-uuid from package.json [#174](https:/motdotla/node-lambda/pull/174)
- Enforce max for timeout and update README docs [#180](https:/motdotla/node-lambda/pull/180)
- Fill default VpcConfig to prevent errors [#183](https:/motdotla/node-lambda/pull/183)

### Features
- Added getRemainingTimeInMillis() to the context when running locally. [#179](https:/motdotla/node-lambda/pull/179)
- Adding support for lambda environment variables [#181](https:/motdotla/node-lambda/pull/181)
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.11",
"version": "0.8.12",
"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.11');
assert.equal(lambda.version, '0.8.12');
});

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