Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 34 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -142,3 +142,37 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- 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)

## [0.10.0] - 2017-05-10
### Features
- Fix use fs object [#236](https://github.com/motdotla/node-lambda/pull/236)
- Upgrade lodash [#237](https://github.com/motdotla/node-lambda/pull/237)
- Add file copy function without rsync command [#238](https://github.com/motdotla/node-lambda/pull/238)
- Add node.js 7 to `travis.yml` [#239](https://github.com/motdotla/node-lambda/pull/239)
- Set http timeout to 30 mins. [#240](https://github.com/motdotla/node-lambda/pull/240)
- Supported `TracingConfig` [#243](https://github.com/motdotla/node-lambda/pull/243)
- Fix to using `path` object [#249](https://github.com/motdotla/node-lambda/pull/249)
- Allow use of docker container for npm install [#251](https://github.com/motdotla/node-lambda/pull/251)
- Bugfix `_filecopy` exclude [#253](https://github.com/motdotla/node-lambda/pull/253)
- Fix to replace `_rsync` with `_fileCopy` [#254](https://github.com/motdotla/node-lambda/pull/254)
- Custom ScheduleEvent rule description [#257](https://github.com/motdotla/node-lambda/pull/257)
- Add test `functionName` pattern [#263](https://github.com/motdotla/node-lambda/pull/263)
- Added `- cwd` option to `npm install` command [#265](https://github.com/motdotla/node-lambda/pull/265)

### Bugfixes
- Add an overview of `event_sources.json` [#230](https://github.com/motdotla/node-lambda/pull/230)
- Cleanup of `main.js run` [#231](https://github.com/motdotla/node-lambda/pull/231)
- Fix results outputs [#233](https://github.com/motdotla/node-lambda/pull/233)
- Bugfix for backward compatible objects [#234](https://github.com/motdotla/node-lambda/pull/234)
- Fix after process of tests [#235](https://github.com/motdotla/node-lambda/pull/235)
- Fix to be the same specification as `--exclude` of rsync command (about function which is an alternative to rsync command) [#244](https://github.com/motdotla/node-lambda/pull/244)
- Fix to avoid `commander` bug [#247](https://github.com/motdotla/node-lambda/pull/247)
- Fix `fs.exists` deprecated [#250](https://github.com/motdotla/node-lambda/pull/250)
- Fix using `assert.include` [#252](https://github.com/motdotla/node-lambda/pull/252)
- Fix not doing anything if `event_sources.json` is not specified [#256](https://github.com/motdotla/node-lambda/pull/256)
- Fix using `path` [#258](https://github.com/motdotla/node-lambda/pull/258)
- Fix tests for windows [#259](https://github.com/motdotla/node-lambda/pull/259)
- Add Command Prompt to README [#266](https://github.com/motdotla/node-lambda/pull/266)
- Fix indexjs current style [#268](https://github.com/motdotla/node-lambda/pull/268)
- Fixed typo - Labmda => Lambda [#269](https://github.com/motdotla/node-lambda/pull/269)
- Fix not to create `.env` sample file with `_buildAndArchive` [#270](https://github.com/motdotla/node-lambda/pull/270)
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.9.0",
"version": "0.10.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 @@ -62,7 +62,7 @@ describe('node-lambda', function () {
});

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

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