File tree Expand file tree Collapse file tree 3 files changed +20
-2
lines changed Expand file tree Collapse file tree 3 files changed +20
-2
lines changed Original file line number Diff line number Diff line change @@ -124,3 +124,21 @@ This project adheres to [Semantic Versioning](http://semver.org/).
124124- Fix default value of EVENT_SOURCE_FILE set '' [ #205 ] ( https://github.com/motdotla/node-lambda/pull/205 )
125125- Removed event_sources.json [ #204 ] ( https://github.com/motdotla/node-lambda/pull/204 )
126126- Add -S, --eventSourceFile option. [ #203 ] ( https://github.com/motdotla/node-lambda/pull/203 )
127+
128+ ## [ 0.9.0] - 2017-04-13
129+ ### Features
130+ - Add tests for _ readArchive [ #213 ] ( https://github.com/motdotla/node-lambda/pull/213 )
131+ - Add tests for event_sources.json [ #214 ] ( https://github.com/motdotla/node-lambda/pull/214 )
132+ - Add tests for DeadLetterConfig [ #215 ] ( https://github.com/motdotla/node-lambda/pull/215 )
133+ - Add _ readArchive tests called in _ archive [ #216 ] ( https://github.com/motdotla/node-lambda/pull/216 )
134+ - modify badge from png to svg [ #227 ] ( https://github.com/motdotla/node-lambda/pull/227 )
135+ - ScheduleEvents [ #228 ] ( https://github.com/motdotla/node-lambda/pull/228 )
136+
137+ ### Bugfixes
138+ - Bugfix InvalidParameterValueException is given when createFunction [ #209 ] ( https://github.com/motdotla/node-lambda/pull/209 )
139+ - Clean unnecessary ` else ` [ #217 ] ( https://github.com/motdotla/node-lambda/pull/217 )
140+ - Refactor _ eventSourceList [ #218 ] ( https://github.com/motdotla/node-lambda/pull/218 )
141+ - Clean deploy function [ #220 ] ( https://github.com/motdotla/node-lambda/pull/220 )
142+ - Fix default value of params.Environment.Variables is null [ #221 ] ( https://github.com/motdotla/node-lambda/pull/221 )
143+ - Fix to use authenticated ` aws ` object in main.js [ #225 ] ( https://github.com/motdotla/node-lambda/pull/225 )
144+ - Changed the format of ` event_sources.json ` [ #226 ] ( https://github.com/motdotla/node-lambda/pull/226 )
Original file line number Diff line number Diff line change 11{
22 "name" : " node-lambda" ,
3- "version" : " 0.8.15 " ,
3+ "version" : " 0.9.0 " ,
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" : {
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ describe('node-lambda', function () {
3838 } ) ;
3939
4040 it ( 'version should be set' , function ( ) {
41- assert . equal ( lambda . version , '0.8.15 ' ) ;
41+ assert . equal ( lambda . version , '0.9.0 ' ) ;
4242 } ) ;
4343
4444 describe ( '_params' , function ( ) {
You can’t perform that action at this time.
0 commit comments