@@ -127,17 +127,17 @@ This project adheres to [Semantic Versioning](http://semver.org/).
127127
128128## [ 0.9.0] - 2017-04-13
129129### Features
130- - Add tests for _ readArchive [ #213 ] ( https://github.com/motdotla/node-lambda/pull/213 )
130+ - Add tests for ` _readArchive ` [ #213 ] ( https://github.com/motdotla/node-lambda/pull/213 )
131131- Add tests for event_sources.json [ #214 ] ( https://github.com/motdotla/node-lambda/pull/214 )
132132- 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 )
133+ - Add ` _readArchive ` tests called in ` _archive ` [ #216 ] ( https://github.com/motdotla/node-lambda/pull/216 )
134134- modify badge from png to svg [ #227 ] ( https://github.com/motdotla/node-lambda/pull/227 )
135135- ScheduleEvents [ #228 ] ( https://github.com/motdotla/node-lambda/pull/228 )
136136
137137### Bugfixes
138138- Bugfix InvalidParameterValueException is given when createFunction [ #209 ] ( https://github.com/motdotla/node-lambda/pull/209 )
139139- Clean unnecessary ` else ` [ #217 ] ( https://github.com/motdotla/node-lambda/pull/217 )
140- - Refactor _ eventSourceList [ #218 ] ( https://github.com/motdotla/node-lambda/pull/218 )
140+ - Refactor ` _eventSourceList ` [ #218 ] ( https://github.com/motdotla/node-lambda/pull/218 )
141141- Clean deploy function [ #220 ] ( https://github.com/motdotla/node-lambda/pull/220 )
142142- Fix default value of params.Environment.Variables is null [ #221 ] ( https://github.com/motdotla/node-lambda/pull/221 )
143143- Fix to use authenticated ` aws ` object in main.js [ #225 ] ( https://github.com/motdotla/node-lambda/pull/225 )
@@ -194,7 +194,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
194194- Refactored, improved error handling [ #295 ] ( https://github.com/motdotla/node-lambda/pull/295 )
195195- Remove semicolon (Automatic update with ` standard --fix ` ) [ #298 ] ( https://github.com/motdotla/node-lambda/pull/298 )
196196- Adopted "JavaScript Standard Style" as coding style [ #299 ] ( https://github.com/motdotla/node-lambda/pull/299 )
197- - Replace async.js in _ updateScheduleEvents with Promise [ #302 ] ( https://github.com/motdotla/node-lambda/pull/302 )
197+ - Replace async.js in ` _updateScheduleEvents ` with Promise [ #302 ] ( https://github.com/motdotla/node-lambda/pull/302 )
198198- Modify from ` exec ` to ` execFile ` with ` _npmInstall ` [ #303 ] ( https://github.com/motdotla/node-lambda/pull/303 )
199199- Automated NPM deploys (on tags) [ #304 ] ( https://github.com/motdotla/node-lambda/pull/304 )
200200- Add package-lock.json [ #305 ] ( https://github.com/motdotla/node-lambda/pull/305 )
@@ -205,7 +205,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
205205- Modify to use isArray [ #312 ] ( https://github.com/motdotla/node-lambda/pull/312 )
206206- Modify execution of multiple events to synchronous processing [ #313 ] ( https://github.com/motdotla/node-lambda/pull/313 )
207207- Fix to make ` bin/node-lambda ` conform to JavaScript Standard Style [ #315 ] ( https://github.com/motdotla/node-lambda/pull/315 )
208- - Replace asyncjs of _ updateEventSources with Promise [ #316 ] ( https://github.com/motdotla/node-lambda/pull/316 )
208+ - Replace asyncjs of ` _updateEventSources ` with Promise [ #316 ] ( https://github.com/motdotla/node-lambda/pull/316 )
209209- Replace async.js of deploy with Promise [ #319 ] ( https://github.com/motdotla/node-lambda/pull/319 )
210210- Modified the function used in ` deploy ` to return Promise [ #320 ] ( https://github.com/motdotla/node-lambda/pull/320 )
211211- Modify main process of deploy to another function [ #323 ] ( https://github.com/motdotla/node-lambda/pull/323 )
@@ -220,3 +220,23 @@ This project adheres to [Semantic Versioning](http://semver.org/).
220220- Refactoring and unnecessary package removal [ #307 ] ( https://github.com/motdotla/node-lambda/pull/307 )
221221- Modify ` var ` of global variable to ` const ` [ #317 ] ( https://github.com/motdotla/node-lambda/pull/317 )
222222- Remove Hoek [ #318 ] ( https://github.com/motdotla/node-lambda/pull/318 )
223+
224+ ## [ 0.11.1] - 2017-07-04
225+ ### Features
226+ - Improve deploy process with Promise [ #327 ] ( https://github.com/motdotla/node-lambda/pull/327 )
227+ - Refactoring ` _cleanDirectory ` [ #330 ] ( https://github.com/motdotla/node-lambda/pull/330 )
228+ - Refactoring ` _npmInstall ` [ #331 ] ( https://github.com/motdotla/node-lambda/pull/331 )
229+ - Replace callback with Promise [ #332 ] ( https://github.com/motdotla/node-lambda/pull/332 )
230+ - Upgrade commander.js [ #334 ] ( https://github.com/motdotla/node-lambda/pull/332 )
231+ - Refactoring ` _fileCopy ` [ #336 ] ( https://github.com/motdotla/node-lambda/pull/336 )
232+ - Add simple context method [ #337 ] ( https://github.com/motdotla/node-lambda/pull/337 )
233+ - Refactoring ` _archive ` [ #338 ] ( https://github.com/motdotla/node-lambda/pull/338 )
234+ - Refactoring ` _listEventSourceMappings ` [ #339 ] ( https://github.com/motdotla/node-lambda/pull/339 )
235+ - Replace ` var ` with ` const ` [ #341 ] ( https://github.com/motdotla/node-lambda/pull/341 )
236+ - Replace with arrow function [ #342 ] ( https://github.com/motdotla/node-lambda/pull/342 )
237+
238+ ### Bugfixes
239+ - Modify file used for test [ #326 ] ( https://github.com/motdotla/node-lambda/pull/326 )
240+ - Update package-lock.json [ #328 ] ( https://github.com/motdotla/node-lambda/pull/328 )
241+ - Remove ` _rsync ` [ #329 ] ( https://github.com/motdotla/node-lambda/pull/329 )
242+ - Bugfixed that mode of file changes when zip is created [ #335 ] ( https://github.com/motdotla/node-lambda/pull/335 )
0 commit comments