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
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -387,3 +387,19 @@ This project adheres to [Semantic Versioning](http://semver.org/).
### Features
- Remove osx from travis [#513](https://github.com/motdotla/node-lambda/pull/513)
- Drop nodejs8.10 from runtime [#516](https://github.com/motdotla/node-lambda/pull/516)

## [0.17.0] - 2020-05-14
### Features
- Implement a simple API Gateway event [#530](https://github.com/motdotla/node-lambda/pull/530)
- [README] Add the 'apiGateway' option to the run command [#532](https://github.com/motdotla/node-lambda/pull/532)
- Add Node.js 14 to CI settings [#524](https://github.com/motdotla/node-lambda/pull/524)
- Drop old Node support [#523](https://github.com/motdotla/node-lambda/pull/523)
- Bump acorn from 7.0.0 to 7.1.1 [#522](https://github.com/motdotla/node-lambda/pull/522)
- Add Silent or quiet mode when deploying [#520](https://github.com/motdotla/node-lambda/pull/520)
- [README update] Add silent option to deploy command [#521](https://github.com/motdotla/node-lambda/pull/521)
- Update README (remove --endpoint of run subcommand, add --endpoint of deploy subcommand) [#514](https://github.com/motdotla/node-lambda/pull/514)

### Bugfixes
- Upgrade "aws-xray-sdk-core" [#529](https://github.com/motdotla/node-lambda/pull/529)
- Fix Lambda update failure [#526](https://github.com/motdotla/node-lambda/pull/526)
- Fix typo [#527](https://github.com/motdotla/node-lambda/pull/527)
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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

it('version should be set', () => {
assert.equal(lambda.version, '0.16.0')
assert.equal(lambda.version, '0.17.0')
})

describe('_codeDirectory', () => {
Expand Down