From 5138d05eac140bd38193a4485525ce74526ad1db Mon Sep 17 00:00:00 2001 From: abetomo Date: Thu, 14 May 2020 09:19:49 +0900 Subject: [PATCH] bump to 0.17.0 --- CHANGELOG.md | 16 ++++++++++++++++ package-lock.json | 2 +- package.json | 2 +- test/main.js | 2 +- 4 files changed, 19 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c0f9f028..73ae4655 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/package-lock.json b/package-lock.json index 31c8db7e..d16b23a4 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "node-lambda", - "version": "0.16.0", + "version": "0.17.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index a3bc888c..9ab8a8d3 100644 --- a/package.json +++ b/package.json @@ -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": { diff --git a/test/main.js b/test/main.js index 031e3847..073280cf 100644 --- a/test/main.js +++ b/test/main.js @@ -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', () => {