Skip to content

Commit 84f831b

Browse files
authored
bump to 0.20.0 (#576)
1 parent 87580cb commit 84f831b

File tree

4 files changed

+15
-4
lines changed

4 files changed

+15
-4
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -429,3 +429,14 @@ This project adheres to [Semantic Versioning](http://semver.org/).
429429
## [0.19.1] - 2021-04-24
430430
### Bugfixes
431431
- Fix errors caused by old proxy-agent [#564](https://github.com/motdotla/node-lambda/pull/564)
432+
433+
## [0.20.0] - 2021-09-25
434+
### Features
435+
- updated proxy-agent to 5.0.0 [#574](https://github.com/motdotla/node-lambda/pull/574)
436+
- show suggestions after an error for an unknown command or option [#572](https://github.com/motdotla/node-lambda/pull/572)
437+
- feat: drop nodejs10x from lambda runtime [#571](https://github.com/motdotla/node-lambda/pull/571)
438+
439+
### Bugfixes
440+
- fix(_uploadExisting): fix function update errors [#575](https://github.com/motdotla/node-lambda/pull/575)
441+
- test: fix npm install test failing in some cases [#569](https://github.com/motdotla/node-lambda/pull/569)
442+
- Clean the tmp dir during `_archivePrebuilt` to match `_buildAndArchive` behavior [#518](https://github.com/motdotla/node-lambda/pull/518)

package-lock.json

Lines changed: 2 additions & 2 deletions
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.19.1",
3+
"version": "0.20.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
@@ -149,7 +149,7 @@ describe('lib/main', function () {
149149
})
150150

151151
it('version should be set', () => {
152-
assert.equal(lambda.version, '0.19.1')
152+
assert.equal(lambda.version, '0.20.0')
153153
})
154154

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

0 commit comments

Comments
 (0)