Skip to content

Commit

Permalink
bump to 0.11.0 (#325)
Browse files Browse the repository at this point in the history
  • Loading branch information
DeviaVir authored Jun 16, 2017
1 parent b33e556 commit 9385ae9
Show file tree
Hide file tree
Showing 3 changed files with 46 additions and 2 deletions.
44 changes: 44 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -176,3 +176,47 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- Fix indexjs current style [#268](https:/motdotla/node-lambda/pull/268)
- Fixed typo - Labmda => Lambda [#269](https:/motdotla/node-lambda/pull/269)
- Fix not to create `.env` sample file with `_buildAndArchive` [#270](https:/motdotla/node-lambda/pull/270)

## [0.11.0] - 2017-06-16
### Features
- Fix to include only `package.json` in the source directory [#274](https:/motdotla/node-lambda/pull/274)
- Fix os: deprecate 'tmpDir()' in favour of 'tmpdir()' https://github.c… [#275](https:/motdotla/node-lambda/pull/275)
- Upgraded `aws-sdk`[#277](https:/motdotla/node-lambda/pull/277)
- Unified in Camel Case & Remove unnecessary arguments [#278](https:/motdotla/node-lambda/pull/278)
- Remove function `_nativeZip` [#279](https:/motdotla/node-lambda/pull/279)
- Add known issue for duplicate trigger to ScheduleEvents section [#280](https:/motdotla/node-lambda/pull/280)
- Feature simple callbackWaitsForEmptyEventLoop support [#284](https:/motdotla/node-lambda/pull/284)
- Fix to use test handler by stopping replace processing of existing index.js [#285](https:/motdotla/node-lambda/pull/285)
- Fix to use '===' instead of '==' (Including similar modifications) [#287](https:/motdotla/node-lambda/pull/287)
- Replaced `rimraf` with `fs.remove` [#291](https:/motdotla/node-lambda/pull/291)
- Refactored: JavaScript Standard Style [#292](https:/motdotla/node-lambda/pull/292)
- Refactored and add test [#294](https:/motdotla/node-lambda/pull/294)
- Refactored, improved error handling [#295](https:/motdotla/node-lambda/pull/295)
- Remove semicolon (Automatic update with `standard --fix`) [#298](https:/motdotla/node-lambda/pull/298)
- Adopted "JavaScript Standard Style" as coding style [#299](https:/motdotla/node-lambda/pull/299)
- Replace async.js in _updateScheduleEvents with Promise [#302](https:/motdotla/node-lambda/pull/302)
- Modify from `exec` to `execFile` with `_npmInstall` [#303](https:/motdotla/node-lambda/pull/303)
- Automated NPM deploys (on tags) [#304](https:/motdotla/node-lambda/pull/304)
- Add package-lock.json [#305](https:/motdotla/node-lambda/pull/305)
- Added `_updateEventSources` test and refactoring [#308](https:/motdotla/node-lambda/pull/308)
- Added test of function to upload Zip to Lambda [#309](https:/motdotla/node-lambda/pull/309)
- Fix timing to check Runtime [#310](https:/motdotla/node-lambda/pull/310)
- Feature event accept array [#311](https:/motdotla/node-lambda/pull/311)
- Modify to use isArray [#312](https:/motdotla/node-lambda/pull/312)
- Modify execution of multiple events to synchronous processing [#313](https:/motdotla/node-lambda/pull/313)
- Fix to make `bin/node-lambda` conform to JavaScript Standard Style [#315](https:/motdotla/node-lambda/pull/315)
- Replace asyncjs of _updateEventSources with Promise [#316](https:/motdotla/node-lambda/pull/316)
- Replace async.js of deploy with Promise [#319](https:/motdotla/node-lambda/pull/319)
- Modified the function used in `deploy` to return Promise [#320](https:/motdotla/node-lambda/pull/320)
- Modify main process of deploy to another function [#323](https:/motdotla/node-lambda/pull/323)
- Fix to use Proxy [#324](https:/motdotla/node-lambda/pull/324)

### Bugfixes
- Remove the cleaning process after the test [#281](https:/motdotla/node-lambda/pull/281)
- Fix run handler callback [#282](https:/motdotla/node-lambda/pull/282)
- Remove 'os' [#286](https:/motdotla/node-lambda/pull/286)
- Fix not specifying file name with test in package.json [#289](https:/motdotla/node-lambda/pull/289)
- Update phase as it is necessary to separate release phase (.travis.yml) [#306](https:/motdotla/node-lambda/pull/306)
- Refactoring and unnecessary package removal [#307](https:/motdotla/node-lambda/pull/307)
- Modify `var` of global variable to `const` [#317](https:/motdotla/node-lambda/pull/317)
- Remove Hoek [#318](https:/motdotla/node-lambda/pull/318)
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "node-lambda",
"version": "0.10.0",
"version": "0.11.0",
"description": "Command line tool for locally running and remotely deploying your node.js applications to Amazon Lambda.",
"main": "lib/main.js",
"directories": {
Expand Down
2 changes: 1 addition & 1 deletion test/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ describe('lib/main', function () {
})

it('version should be set', function () {
assert.equal(lambda.version, '0.10.0')
assert.equal(lambda.version, '0.11.0')
})

describe('_codeDirectory', function () {
Expand Down

0 comments on commit 9385ae9

Please sign in to comment.