From 71494e0100d58143c3b4659099eca2a07a229487 Mon Sep 17 00:00:00 2001 From: Chase Sillevis Date: Thu, 9 Feb 2017 15:10:44 -0800 Subject: [PATCH] bump to 0.8.12 --- CHANGELOG.md | 11 +++++++++++ package.json | 2 +- test/main.js | 2 +- 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8c27def0..338785a6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -87,3 +87,14 @@ This project adheres to [Semantic Versioning](http://semver.org/). ### Bugfixes - Restore lambda version functionality [#156](https://github.com/motdotla/node-lambda/issues/156) - Namespaced packages fail to deploy [#157](https://github.com/motdotla/node-lambda/issues/157) + +## [0.8.12] - 2017-02-10 +### Bugfixes +- Using path.join instead of hardcoded slashes [#173](https://github.com/motdotla/node-lambda/pull/173) +- Drop node-uuid from package.json [#174](https://github.com/motdotla/node-lambda/pull/174) +- Enforce max for timeout and update README docs [#180](https://github.com/motdotla/node-lambda/pull/180) +- Fill default VpcConfig to prevent errors [#183](https://github.com/motdotla/node-lambda/pull/183) + +### Features +- Added getRemainingTimeInMillis() to the context when running locally. [#179](https://github.com/motdotla/node-lambda/pull/179) +- Adding support for lambda environment variables [#181](https://github.com/motdotla/node-lambda/pull/181) diff --git a/package.json b/package.json index a38fabb4..897bad6a 100644 --- a/package.json +++ b/package.json @@ -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": { diff --git a/test/main.js b/test/main.js index 1e586a1f..db37e66d 100644 --- a/test/main.js +++ b/test/main.js @@ -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 () {