Skip to content

Commit e7207d9

Browse files
authored
bump to 0.18.0 (#554)
1 parent ce76476 commit e7207d9

File tree

5 files changed

+2791
-2880
lines changed

5 files changed

+2791
-2880
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -403,3 +403,21 @@ This project adheres to [Semantic Versioning](http://semver.org/).
403403
- Upgrade "aws-xray-sdk-core" [#529](https://github.com/motdotla/node-lambda/pull/529)
404404
- Fix Lambda update failure [#526](https://github.com/motdotla/node-lambda/pull/526)
405405
- Fix typo [#527](https://github.com/motdotla/node-lambda/pull/527)
406+
407+
## [0.18.0] - 2021-02-19
408+
### Features
409+
- feat: support nodejs14.x runtime [#553](https://github.com/motdotla/node-lambda/pull/553)
410+
- Upgrade Mocha to fix high sev vulnerability. [#551](https://github.com/motdotla/node-lambda/pull/551)
411+
- docs: add a note to the README about deploying container image [#549](https://github.com/motdotla/node-lambda/pull/549)
412+
- Support npm7 #[550](https://github.com/motdotla/node-lambda/pull/550)
413+
- feat: support for 'ImageUri' parameter [#548](https://github.com/motdotla/node-lambda/pull/548)
414+
- upgrade 'commander' to 7 [#547](https://github.com/motdotla/node-lambda/pull/547)
415+
- ci: add 'fail-fast: false' setting #[546](https://github.com/motdotla/node-lambda/pull/546)
416+
- use starsWith instead of indexOf [#545](https://github.com/motdotla/node-lambda/pull/545)
417+
- Upgrade 'standard' [#543](https://github.com/motdotla/node-lambda/pull/543)
418+
- Update S3_LOCATION_POSSIBLE_VALUES [#542](https://github.com/motdotla/node-lambda/pull/542)
419+
- Bump bl from 4.0.2 to 4.0.3 [#541](https://github.com/motdotla/node-lambda/pull/541)
420+
- Add description of vpc options [#540](https://github.com/motdotla/node-lambda/pull/540)
421+
- Upgrade packages [#538](https://github.com/motdotla/node-lambda/pull/538)
422+
- Bump lodash from 4.17.15 to 4.17.19 [#536](https://github.com/motdotla/node-lambda/pull/536)
423+
- Add build badge in README [#534](https://github.com/motdotla/node-lambda/pull/534)

package-lock.json

Lines changed: 1 addition & 1 deletion
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.17.0",
3+
"version": "0.18.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
@@ -148,7 +148,7 @@ describe('lib/main', function () {
148148
})
149149

150150
it('version should be set', () => {
151-
assert.equal(lambda.version, '0.17.0')
151+
assert.equal(lambda.version, '0.18.0')
152152
})
153153

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

0 commit comments

Comments
 (0)