Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -349,3 +349,19 @@ This project adheres to [Semantic Versioning](http://semver.org/).

### Bugfixes
- Fix value of StartingPosition [#467](https://github.com/motdotla/node-lambda/pull/467)

## [0.14.0] - 2019-05-25
### Features
- Support Node.js 10.x [#487](https://github.com/motdotla/node-lambda/pull/487)
- Add Node.js 12 to CI setting [#486](https://github.com/motdotla/node-lambda/pull/486)
- Add file to configure aws authentication settings [#482](https://github.com/motdotla/node-lambda/pull/482)
- Add layers option to readme [#481](https://github.com/motdotla/node-lambda/pull/481)
- Add option to specify Lambda Layers [#480](https://github.com/motdotla/node-lambda/pull/480)
- Upgrade packages [#479](https://github.com/motdotla/node-lambda/pull/479)
- Add dockerVolumes option in package in order to mount additional volumes [#473](https://github.com/motdotla/node-lambda/pull/473)
- Add keepNodeModules option in package [#472](https://github.com/motdotla/node-lambda/pull/472)

### Bugfixes
- Remove 'packageDirectory' option from 'deploy' [#484](https://github.com/motdotla/node-lambda/pull/484)
- Update s3deploy bucket handling [#475](https://github.com/motdotla/node-lambda/pull/475)
- Fix Docker volume mount from OSX - #461 [#471](https://github.com/motdotla/node-lambda/pull/471)
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "node-lambda",
"version": "0.13.0",
"version": "0.14.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 Expand Up @@ -40,7 +40,7 @@
},
"dependencies": {
"archiver": "^3.0.0",
"aws-sdk": "^2.454.0",
"aws-sdk": "^2.463.0",
"aws-xray-sdk-core": "^2.3.3",
"commander": "^2.20.0",
"continuation-local-storage": "^3.2.1",
Expand Down
2 changes: 1 addition & 1 deletion test/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ describe('lib/main', function () {
})

it('version should be set', () => {
assert.equal(lambda.version, '0.13.0')
assert.equal(lambda.version, '0.14.0')
})

describe('_codeDirectory', () => {
Expand Down
17 changes: 16 additions & 1 deletion yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ aws-sdk@^2.304.0:
uuid "3.3.2"
xml2js "0.4.19"

aws-sdk@^2.431.0, aws-sdk@^2.454.0:
aws-sdk@^2.431.0:
version "2.454.0"
resolved "https://registry.yarnpkg.com/aws-sdk/-/aws-sdk-2.454.0.tgz#d7c1ceec21b6245949c1934d9aedfad3aaf9694a"
integrity sha512-1vB9DNIwh+mqKD2IZspYTQapCD6f5VnMT5V2VPlXJ1CNcUdFSU8FFyxKmYApNs+S3re1h3fhWDjpwTreS+XLRQ==
Expand All @@ -247,6 +247,21 @@ aws-sdk@^2.431.0, aws-sdk@^2.454.0:
uuid "3.3.2"
xml2js "0.4.19"

aws-sdk@^2.463.0:
version "2.463.0"
resolved "https://registry.yarnpkg.com/aws-sdk/-/aws-sdk-2.463.0.tgz#57562a95aa9b071ee16bb9e18ddd5c6c27c6eda6"
integrity sha512-bl0S6mxA2o8Hpy9LsMcPC9kVnrL4+B4qayiMlNMrp+8gcEMzJSMzfrUDX4SCWsqGYT25sZn8TDqTGJp7XIh3yw==
dependencies:
buffer "4.9.1"
events "1.1.1"
ieee754 "1.1.8"
jmespath "0.15.0"
querystring "0.2.0"
sax "1.2.1"
url "0.10.3"
uuid "3.3.2"
xml2js "0.4.19"

aws-xray-sdk-core@^2.3.3:
version "2.3.3"
resolved "https://registry.yarnpkg.com/aws-xray-sdk-core/-/aws-xray-sdk-core-2.3.3.tgz#fa8e103ff25526da6d66e5f942947a06fba069a4"
Expand Down