Skip to content

Commit

Permalink
bump to 0.20.0 (#576)
Browse files Browse the repository at this point in the history
  • Loading branch information
abetomo authored Sep 25, 2021
1 parent 87580cb commit 84f831b
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 4 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
4 changes: 2 additions & 2 deletions 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.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": {
Expand Down
2 changes: 1 addition & 1 deletion test/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -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', () => {
Expand Down

0 comments on commit 84f831b

Please sign in to comment.