Skip to content

Commit 37c1eb5

Browse files
abetomoDeviaVir
authored andcommitted
bump to 0.14.0 (#492)
1 parent 106d0b6 commit 37c1eb5

File tree

5 files changed

+39
-8
lines changed

5 files changed

+39
-8
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -349,3 +349,19 @@ This project adheres to [Semantic Versioning](http://semver.org/).
349349

350350
### Bugfixes
351351
- Fix value of StartingPosition [#467](https://github.com/motdotla/node-lambda/pull/467)
352+
353+
## [0.14.0] - 2019-05-25
354+
### Features
355+
- Support Node.js 10.x [#487](https://github.com/motdotla/node-lambda/pull/487)
356+
- Add Node.js 12 to CI setting [#486](https://github.com/motdotla/node-lambda/pull/486)
357+
- Add file to configure aws authentication settings [#482](https://github.com/motdotla/node-lambda/pull/482)
358+
- Add layers option to readme [#481](https://github.com/motdotla/node-lambda/pull/481)
359+
- Add option to specify Lambda Layers [#480](https://github.com/motdotla/node-lambda/pull/480)
360+
- Upgrade packages [#479](https://github.com/motdotla/node-lambda/pull/479)
361+
- Add dockerVolumes option in package in order to mount additional volumes [#473](https://github.com/motdotla/node-lambda/pull/473)
362+
- Add keepNodeModules option in package [#472](https://github.com/motdotla/node-lambda/pull/472)
363+
364+
### Bugfixes
365+
- Remove 'packageDirectory' option from 'deploy' [#484](https://github.com/motdotla/node-lambda/pull/484)
366+
- Update s3deploy bucket handling [#475](https://github.com/motdotla/node-lambda/pull/475)
367+
- Fix Docker volume mount from OSX - #461 [#471](https://github.com/motdotla/node-lambda/pull/471)

package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "node-lambda",
3-
"version": "0.13.0",
3+
"version": "0.14.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": {
@@ -40,7 +40,7 @@
4040
},
4141
"dependencies": {
4242
"archiver": "^3.0.0",
43-
"aws-sdk": "^2.454.0",
43+
"aws-sdk": "^2.463.0",
4444
"aws-xray-sdk-core": "^2.3.3",
4545
"commander": "^2.20.0",
4646
"continuation-local-storage": "^3.2.1",

test/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ describe('lib/main', function () {
154154
})
155155

156156
it('version should be set', () => {
157-
assert.equal(lambda.version, '0.13.0')
157+
assert.equal(lambda.version, '0.14.0')
158158
})
159159

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

yarn.lock

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ aws-sdk@^2.304.0:
232232
uuid "3.3.2"
233233
xml2js "0.4.19"
234234

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

250+
aws-sdk@^2.463.0:
251+
version "2.463.0"
252+
resolved "https://registry.yarnpkg.com/aws-sdk/-/aws-sdk-2.463.0.tgz#57562a95aa9b071ee16bb9e18ddd5c6c27c6eda6"
253+
integrity sha512-bl0S6mxA2o8Hpy9LsMcPC9kVnrL4+B4qayiMlNMrp+8gcEMzJSMzfrUDX4SCWsqGYT25sZn8TDqTGJp7XIh3yw==
254+
dependencies:
255+
buffer "4.9.1"
256+
events "1.1.1"
257+
ieee754 "1.1.8"
258+
jmespath "0.15.0"
259+
querystring "0.2.0"
260+
sax "1.2.1"
261+
url "0.10.3"
262+
uuid "3.3.2"
263+
xml2js "0.4.19"
264+
250265
aws-xray-sdk-core@^2.3.3:
251266
version "2.3.3"
252267
resolved "https://registry.yarnpkg.com/aws-xray-sdk-core/-/aws-xray-sdk-core-2.3.3.tgz#fa8e103ff25526da6d66e5f942947a06fba069a4"

0 commit comments

Comments
 (0)