From bb0e951dc3472cc763f5e7d5e8433a537a3102a1 Mon Sep 17 00:00:00 2001 From: Chase Date: Wed, 10 May 2017 10:36:08 +0200 Subject: [PATCH] bump to 0.10.0 - new milestone (#271) --- CHANGELOG.md | 34 ++++++++++++++++++++++++++++++++++ package.json | 2 +- test/main.js | 2 +- 3 files changed, 36 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4d529de9..d52851cf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/package.json b/package.json index f56f8fbd..3d7cba37 100644 --- a/package.json +++ b/package.json @@ -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": { diff --git a/test/main.js b/test/main.js index 2a59021f..e13913f5 100644 --- a/test/main.js +++ b/test/main.js @@ -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 () {