Skip to content

Commit db060de

Browse files
author
Tomasz Janowski
committed
Node 14.4.0, aws-sdk 2.690.0
1 parent 6eae8de commit db060de

File tree

6 files changed

+16
-16
lines changed

6 files changed

+16
-16
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
FROM node:14.2.0-stretch-slim@sha256:5c4c0dd64aac04572904870a83ab1465e4b06b9b3a2f896b10b3d7a3ed83a8c6
1+
FROM node:14.4.0-buster-slim@sha256:131acae05a4f622563371c133d05e490e39fa9c2a94a63832b737e3ba84f1136
22

33
RUN apt-get update && apt-get install -y advancecomp curl xz-utils && apt-get clean all

README.md

Lines changed: 4 additions & 4 deletions
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.3.0**
10-
* aws-sdk - **2.680.0**
9+
* Node.js - **14.4.0**
10+
* aws-sdk - **2.690.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.3.0 aws-cli-2.680.0" \
43+
--description "nodejs-14.4.0 aws-cli-2.690.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.3.0 aws-cli-2.680.0",
53+
"Description": "nodejs-14.4.0 aws-cli-2.690.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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
set -ex
44

5-
export NODE_VERSION=14.3.0
6-
export SHA256=17236db7b9447080b58c2e50937982c386fe8a60e644b8d7f23e546068a8acba
5+
export NODE_VERSION=14.4.0
6+
export SHA256=d65a9a8a547bfe67c6c08dae733a3e5a846700d5377c5f150164cc6bb5f6a039
77

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

auto/publish

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ for R in $REGIONS ; do
4040
lambda publish-layer-version \
4141
--region "${R}" \
4242
--layer-name node-14-runtime \
43-
--description "nodejs-14.3.0 aws-cli-2.680.0" \
43+
--description "nodejs-14.4.0 aws-cli-2.690.0" \
4444
--compatible-runtimes provided \
4545
--license-info Apache-2.0 \
4646
--zip-file fileb://stage/layer.zip

package-lock.json

Lines changed: 7 additions & 7 deletions
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
@@ -13,6 +13,6 @@
1313
"express": "^4.17.1"
1414
},
1515
"dependencies": {
16-
"aws-sdk": "^2.680.0"
16+
"aws-sdk": "^2.690.0"
1717
}
1818
}

0 commit comments

Comments
 (0)