From 1c985555c277e94bc0b82f85c432473aa71ec92c Mon Sep 17 00:00:00 2001 From: Chase Sillevis Date: Thu, 13 Apr 2017 11:23:49 +0200 Subject: [PATCH 1/2] bump to 0.9.0 - new milestone --- CHANGELOG.md | 18 ++++++++++++++++++ package.json | 2 +- test/main.js | 2 +- 3 files changed, 20 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1a22b4e7..53f92ba6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -124,3 +124,21 @@ This project adheres to [Semantic Versioning](http://semver.org/). - Fix default value of EVENT_SOURCE_FILE set '' [#205](https://github.com/motdotla/node-lambda/pull/205) - Removed event_sources.json [#204](https://github.com/motdotla/node-lambda/pull/204) - Add -S, --eventSourceFile option. [#203](https://github.com/motdotla/node-lambda/pull/203) + +## [0.9.0] - 2017-04-13 +### Features +- Add tests for _readArchive [#213](https://github.com/motdotla/node-lambda/pull/213) +- Add tests for event_sources.json [#214](https://github.com/motdotla/node-lambda/pull/214) +- Add tests for DeadLetterConfig [#215](https://github.com/motdotla/node-lambda/pull/215) +- Add _readArchive tests called in _archive [#216](https://github.com/motdotla/node-lambda/pull/216) +- modify badge from png to svg [#227](https://github.com/motdotla/node-lambda/pull/227) +- ScheduleEvents [#228](https://github.com/motdotla/node-lambda/pull/228) + +### Bugfixes +- Bugfix InvalidParameterValueException is given when createFunction [#209](https://github.com/motdotla/node-lambda/pull/209) +- Clean unnecessary `else` [#217](https://github.com/motdotla/node-lambda/pull/217) +- Refactor _eventSourceList [#218](https://github.com/motdotla/node-lambda/pull/218) +- Clean deploy function [#220](https://github.com/motdotla/node-lambda/pull/220) +- Fix default value of params.Environment.Variables is null [#221](- Fix to use authenticated `aws` object in main.js [#225](https://github.com/motdotla/node-lambda/pull/2251) +- Fix to use authenticated `aws` object in main.js [#225](https://github.com/motdotla/node-lambda/pull/225) +- Changed the format of `event_sources.json` [#226](https://github.com/motdotla/node-lambda/pull/226) diff --git a/package.json b/package.json index 23ee95d8..61e8a064 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "node-lambda", - "version": "0.8.15", + "version": "0.9.0", "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 883bf23b..f037b8a0 100644 --- a/test/main.js +++ b/test/main.js @@ -38,7 +38,7 @@ describe('node-lambda', function () { }); it('version should be set', function () { - assert.equal(lambda.version, '0.8.15'); + assert.equal(lambda.version, '0.9.0'); }); describe('_params', function () { From 22ac21d9d75a0037ac6e31e69f56f8e4cef43593 Mon Sep 17 00:00:00 2001 From: Chase Sillevis Date: Thu, 13 Apr 2017 11:25:31 +0200 Subject: [PATCH 2/2] hotfix --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 53f92ba6..4d529de9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -139,6 +139,6 @@ This project adheres to [Semantic Versioning](http://semver.org/). - Clean unnecessary `else` [#217](https://github.com/motdotla/node-lambda/pull/217) - Refactor _eventSourceList [#218](https://github.com/motdotla/node-lambda/pull/218) - Clean deploy function [#220](https://github.com/motdotla/node-lambda/pull/220) -- Fix default value of params.Environment.Variables is null [#221](- Fix to use authenticated `aws` object in main.js [#225](https://github.com/motdotla/node-lambda/pull/2251) +- Fix default value of params.Environment.Variables is null [#221](https://github.com/motdotla/node-lambda/pull/221) - Fix to use authenticated `aws` object in main.js [#225](https://github.com/motdotla/node-lambda/pull/225) - Changed the format of `event_sources.json` [#226](https://github.com/motdotla/node-lambda/pull/226)