Skip to content

Commit e097cc5

Browse files
committed
bump to 0.11.0
1 parent b33e556 commit e097cc5

File tree

3 files changed

+46
-2
lines changed

3 files changed

+46
-2
lines changed

CHANGELOG.md

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -176,3 +176,47 @@ This project adheres to [Semantic Versioning](http://semver.org/).
176176
- Fix indexjs current style [#268](https://github.com/motdotla/node-lambda/pull/268)
177177
- Fixed typo - Labmda => Lambda [#269](https://github.com/motdotla/node-lambda/pull/269)
178178
- Fix not to create `.env` sample file with `_buildAndArchive` [#270](https://github.com/motdotla/node-lambda/pull/270)
179+
180+
## [0.11.0] - 2017-06-16
181+
### Features
182+
- Fix to include only `package.json` in the source directory [#274](https://github.com/motdotla/node-lambda/pull/274)
183+
- Fix os: deprecate 'tmpDir()' in favour of 'tmpdir()' https://github.c… [#275](https://github.com/motdotla/node-lambda/pull/275)
184+
- Upgraded `aws-sdk`[#277](https://github.com/motdotla/node-lambda/pull/277)
185+
- Unified in Camel Case & Remove unnecessary arguments [#278](https://github.com/motdotla/node-lambda/pull/278)
186+
- Remove function `_nativeZip` [#279](https://github.com/motdotla/node-lambda/pull/279)
187+
- Add known issue for duplicate trigger to ScheduleEvents section [#280](https://github.com/motdotla/node-lambda/pull/280)
188+
- Feature simple callbackWaitsForEmptyEventLoop support [#284](https://github.com/motdotla/node-lambda/pull/284)
189+
- Fix to use test handler by stopping replace processing of existing index.js [#285](https://github.com/motdotla/node-lambda/pull/285)
190+
- Fix to use '===' instead of '==' (Including similar modifications) [#287](https://github.com/motdotla/node-lambda/pull/287)
191+
- Replaced `rimraf` with `fs.remove` [#291](https://github.com/motdotla/node-lambda/pull/291)
192+
- Refactored: JavaScript Standard Style [#292](https://github.com/motdotla/node-lambda/pull/292)
193+
- Refactored and add test [#294](https://github.com/motdotla/node-lambda/pull/294)
194+
- Refactored, improved error handling [#295](https://github.com/motdotla/node-lambda/pull/295)
195+
- Remove semicolon (Automatic update with `standard --fix`) [#298](https://github.com/motdotla/node-lambda/pull/298)
196+
- 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)
198+
- Modify from `exec` to `execFile` with `_npmInstall` [#303](https://github.com/motdotla/node-lambda/pull/303)
199+
- Automated NPM deploys (on tags) [#304](https://github.com/motdotla/node-lambda/pull/304)
200+
- Add package-lock.json [#305](https://github.com/motdotla/node-lambda/pull/305)
201+
- Added `_updateEventSources` test and refactoring [#308](https://github.com/motdotla/node-lambda/pull/308)
202+
- Added test of function to upload Zip to Lambda [#309](https://github.com/motdotla/node-lambda/pull/309)
203+
- Fix timing to check Runtime [#310](https://github.com/motdotla/node-lambda/pull/310)
204+
- Feature event accept array [#311](https://github.com/motdotla/node-lambda/pull/311)
205+
- Modify to use isArray [#312](https://github.com/motdotla/node-lambda/pull/312)
206+
- Modify execution of multiple events to synchronous processing [#313](https://github.com/motdotla/node-lambda/pull/313)
207+
- 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)
209+
- Replace async.js of deploy with Promise [#319](https://github.com/motdotla/node-lambda/pull/319)
210+
- Modified the function used in `deploy` to return Promise [#320](https://github.com/motdotla/node-lambda/pull/320)
211+
- Modify main process of deploy to another function [#323](https://github.com/motdotla/node-lambda/pull/323)
212+
- Fix to use Proxy [#324](https://github.com/motdotla/node-lambda/pull/324)
213+
214+
### Bugfixes
215+
- Remove the cleaning process after the test [#281](https://github.com/motdotla/node-lambda/pull/281)
216+
- Fix run handler callback [#282](https://github.com/motdotla/node-lambda/pull/282)
217+
- Remove 'os' [#286](https://github.com/motdotla/node-lambda/pull/286)
218+
- Fix not specifying file name with test in package.json [#289](https://github.com/motdotla/node-lambda/pull/289)
219+
- Update phase as it is necessary to separate release phase (.travis.yml) [#306](https://github.com/motdotla/node-lambda/pull/306)
220+
- Refactoring and unnecessary package removal [#307](https://github.com/motdotla/node-lambda/pull/307)
221+
- Modify `var` of global variable to `const` [#317](https://github.com/motdotla/node-lambda/pull/317)
222+
- Remove Hoek [#318](https://github.com/motdotla/node-lambda/pull/318)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "node-lambda",
3-
"version": "0.10.0",
3+
"version": "0.11.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": {

test/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ describe('lib/main', function () {
126126
})
127127

128128
it('version should be set', function () {
129-
assert.equal(lambda.version, '0.10.0')
129+
assert.equal(lambda.version, '0.11.0')
130130
})
131131

132132
describe('_codeDirectory', function () {

0 commit comments

Comments
 (0)