From 84f831bb1ec14a113bae8cc29e2f1f8fdfe0d39f Mon Sep 17 00:00:00 2001 From: Abe Tomoaki Date: Sat, 25 Sep 2021 18:32:17 +0900 Subject: [PATCH] bump to 0.20.0 (#576) --- CHANGELOG.md | 11 +++++++++++ package-lock.json | 4 ++-- package.json | 2 +- test/main.js | 2 +- 4 files changed, 15 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 609493a..517c1d8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -429,3 +429,14 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## [0.19.1] - 2021-04-24 ### Bugfixes - Fix errors caused by old proxy-agent [#564](https://github.com/motdotla/node-lambda/pull/564) + +## [0.20.0] - 2021-09-25 +### Features +- updated proxy-agent to 5.0.0 [#574](https://github.com/motdotla/node-lambda/pull/574) +- show suggestions after an error for an unknown command or option [#572](https://github.com/motdotla/node-lambda/pull/572) +- feat: drop nodejs10x from lambda runtime [#571](https://github.com/motdotla/node-lambda/pull/571) + +### Bugfixes +- fix(_uploadExisting): fix function update errors [#575](https://github.com/motdotla/node-lambda/pull/575) +- test: fix npm install test failing in some cases [#569](https://github.com/motdotla/node-lambda/pull/569) +- Clean the tmp dir during `_archivePrebuilt` to match `_buildAndArchive` behavior [#518](https://github.com/motdotla/node-lambda/pull/518) diff --git a/package-lock.json b/package-lock.json index d6c0850..344188f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,11 +1,11 @@ { "name": "node-lambda", - "version": "0.19.1", + "version": "0.20.0", "lockfileVersion": 2, "requires": true, "packages": { "": { - "version": "0.19.1", + "version": "0.20.0", "license": "BSD-2-Clause", "dependencies": { "archiver": "^5.3.0", diff --git a/package.json b/package.json index e9dc7bc..aec5bd1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "node-lambda", - "version": "0.19.1", + "version": "0.20.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 b88d567..09e908f 100644 --- a/test/main.js +++ b/test/main.js @@ -149,7 +149,7 @@ describe('lib/main', function () { }) it('version should be set', () => { - assert.equal(lambda.version, '0.19.1') + assert.equal(lambda.version, '0.20.0') }) describe('_codeDirectory', () => {