Skip to content

Commit bb0e951

Browse files
authored
bump to 0.10.0 - new milestone (#271)
1 parent fab6e01 commit bb0e951

File tree

3 files changed

+36
-2
lines changed

3 files changed

+36
-2
lines changed

CHANGELOG.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -142,3 +142,37 @@ This project adheres to [Semantic Versioning](http://semver.org/).
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)
144144
- Changed the format of `event_sources.json` [#226](https://github.com/motdotla/node-lambda/pull/226)
145+
146+
## [0.10.0] - 2017-05-10
147+
### Features
148+
- Fix use fs object [#236](https://github.com/motdotla/node-lambda/pull/236)
149+
- Upgrade lodash [#237](https://github.com/motdotla/node-lambda/pull/237)
150+
- Add file copy function without rsync command [#238](https://github.com/motdotla/node-lambda/pull/238)
151+
- Add node.js 7 to `travis.yml` [#239](https://github.com/motdotla/node-lambda/pull/239)
152+
- Set http timeout to 30 mins. [#240](https://github.com/motdotla/node-lambda/pull/240)
153+
- Supported `TracingConfig` [#243](https://github.com/motdotla/node-lambda/pull/243)
154+
- Fix to using `path` object [#249](https://github.com/motdotla/node-lambda/pull/249)
155+
- Allow use of docker container for npm install [#251](https://github.com/motdotla/node-lambda/pull/251)
156+
- Bugfix `_filecopy` exclude [#253](https://github.com/motdotla/node-lambda/pull/253)
157+
- Fix to replace `_rsync` with `_fileCopy` [#254](https://github.com/motdotla/node-lambda/pull/254)
158+
- Custom ScheduleEvent rule description [#257](https://github.com/motdotla/node-lambda/pull/257)
159+
- Add test `functionName` pattern [#263](https://github.com/motdotla/node-lambda/pull/263)
160+
- Added `- cwd` option to `npm install` command [#265](https://github.com/motdotla/node-lambda/pull/265)
161+
162+
### Bugfixes
163+
- Add an overview of `event_sources.json` [#230](https://github.com/motdotla/node-lambda/pull/230)
164+
- Cleanup of `main.js run` [#231](https://github.com/motdotla/node-lambda/pull/231)
165+
- Fix results outputs [#233](https://github.com/motdotla/node-lambda/pull/233)
166+
- Bugfix for backward compatible objects [#234](https://github.com/motdotla/node-lambda/pull/234)
167+
- Fix after process of tests [#235](https://github.com/motdotla/node-lambda/pull/235)
168+
- 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)
169+
- Fix to avoid `commander` bug [#247](https://github.com/motdotla/node-lambda/pull/247)
170+
- Fix `fs.exists` deprecated [#250](https://github.com/motdotla/node-lambda/pull/250)
171+
- Fix using `assert.include` [#252](https://github.com/motdotla/node-lambda/pull/252)
172+
- Fix not doing anything if `event_sources.json` is not specified [#256](https://github.com/motdotla/node-lambda/pull/256)
173+
- Fix using `path` [#258](https://github.com/motdotla/node-lambda/pull/258)
174+
- Fix tests for windows [#259](https://github.com/motdotla/node-lambda/pull/259)
175+
- Add Command Prompt to README [#266](https://github.com/motdotla/node-lambda/pull/266)
176+
- Fix indexjs current style [#268](https://github.com/motdotla/node-lambda/pull/268)
177+
- Fixed typo - Labmda => Lambda [#269](https://github.com/motdotla/node-lambda/pull/269)
178+
- Fix not to create `.env` sample file with `_buildAndArchive` [#270](https://github.com/motdotla/node-lambda/pull/270)

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.9.0",
3+
"version": "0.10.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
@@ -62,7 +62,7 @@ describe('node-lambda', function () {
6262
});
6363

6464
it('version should be set', function () {
65-
assert.equal(lambda.version, '0.9.0');
65+
assert.equal(lambda.version, '0.10.0');
6666
});
6767

6868
describe('_params', function () {

0 commit comments

Comments
 (0)