Skip to content

Commit 797a385

Browse files
authored
bump to 0.17.0 (#533)
1 parent 3379481 commit 797a385

File tree

4 files changed

+19
-3
lines changed

4 files changed

+19
-3
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -387,3 +387,19 @@ This project adheres to [Semantic Versioning](http://semver.org/).
387387
### Features
388388
- Remove osx from travis [#513](https://github.com/motdotla/node-lambda/pull/513)
389389
- Drop nodejs8.10 from runtime [#516](https://github.com/motdotla/node-lambda/pull/516)
390+
391+
## [0.17.0] - 2020-05-14
392+
### Features
393+
- Implement a simple API Gateway event [#530](https://github.com/motdotla/node-lambda/pull/530)
394+
- [README] Add the 'apiGateway' option to the run command [#532](https://github.com/motdotla/node-lambda/pull/532)
395+
- Add Node.js 14 to CI settings [#524](https://github.com/motdotla/node-lambda/pull/524)
396+
- Drop old Node support [#523](https://github.com/motdotla/node-lambda/pull/523)
397+
- Bump acorn from 7.0.0 to 7.1.1 [#522](https://github.com/motdotla/node-lambda/pull/522)
398+
- Add Silent or quiet mode when deploying [#520](https://github.com/motdotla/node-lambda/pull/520)
399+
- [README update] Add silent option to deploy command [#521](https://github.com/motdotla/node-lambda/pull/521)
400+
- Update README (remove --endpoint of run subcommand, add --endpoint of deploy subcommand) [#514](https://github.com/motdotla/node-lambda/pull/514)
401+
402+
### Bugfixes
403+
- Upgrade "aws-xray-sdk-core" [#529](https://github.com/motdotla/node-lambda/pull/529)
404+
- Fix Lambda update failure [#526](https://github.com/motdotla/node-lambda/pull/526)
405+
- Fix typo [#527](https://github.com/motdotla/node-lambda/pull/527)

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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.16.0",
3+
"version": "0.17.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
@@ -148,7 +148,7 @@ describe('lib/main', function () {
148148
})
149149

150150
it('version should be set', () => {
151-
assert.equal(lambda.version, '0.16.0')
151+
assert.equal(lambda.version, '0.17.0')
152152
})
153153

154154
describe('_codeDirectory', () => {

0 commit comments

Comments
 (0)