Skip to content

Commit f371ea4

Browse files
committed
Node 14.12.0, aws-sdk 2.761.0
1 parent 4430230 commit f371ea4

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ It's easy to use this project and build Node.js runtime that will target any ver
66

77
## Current versions
88

9-
* Node.js - **14.11.0**
10-
* aws-sdk - **2.756.0**
9+
* Node.js - **14.12.0**
10+
* aws-sdk - **2.761.0**
1111

1212
## Goals
1313

@@ -40,7 +40,7 @@ Deploy the runtime layer using the following command:
4040
```bash
4141
aws lambda publish-layer-version \
4242
--layer-name node-14-runtime \
43-
--description "nodejs-14.11.0 aws-cli-2.756.0" \
43+
--description "nodejs-14.12.0 aws-cli-2.761.0" \
4444
--compatible-runtimes provided \
4545
--license-info Apache-2.0 \
4646
--zip-file fileb://stage/layer.zip
@@ -50,7 +50,7 @@ The output will look like this:
5050
```json
5151
{
5252
"LayerVersionArn": "arn:aws:lambda:us-east-2:356111732087:layer:node-14-runtime:1",
53-
"Description": "nodejs-14.11.0 aws-cli-2.756.0",
53+
"Description": "nodejs-14.12.0 aws-cli-2.761.0",
5454
"CreatedDate": "2018-12-02T22:32:00.572+0000",
5555
"LayerArn": "arn:aws:lambda:us-east-2:356111732087:layer:node-14-runtime",
5656
"Content": {

auto/package

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
set -ex
44

5-
export NODE_VERSION=14.11.0
6-
export SHA256=c0dfb8e45aefefc65410dbe3e9a05e346b952b2a19a965f5bea3e77b74fc73d8
5+
export NODE_VERSION=14.12.0
6+
export SHA256=3c7363b56239b8f357eed6e82e91f99624dd8faf49f49916bd1b54ea1fbd46b7
77

88
DIR="$( cd "$( dirname "$0" )" && pwd )"
99

auto/publish

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ for R in $REGIONS ; do
4141
lambda publish-layer-version \
4242
--region "${R}" \
4343
--layer-name "${LAYER_NAME}" \
44-
--description "nodejs-14.11.0 aws-cli-2.756.0" \
44+
--description "nodejs-14.12.0 aws-cli-2.761.0" \
4545
--compatible-runtimes provided \
4646
--license-info Apache-2.0 \
4747
--zip-file fileb://stage/layer.zip

package-lock.json

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@
1313
"express": "^4.17.1"
1414
},
1515
"dependencies": {
16-
"aws-sdk": "^2.756.0"
16+
"aws-sdk": "^2.761.0"
1717
}
1818
}

0 commit comments

Comments
 (0)