Skip to content

Commit 81bd0fa

Browse files
committed
Node 15.1.0, aws-sdk 2.785.0
1 parent 6ff08b8 commit 81bd0fa

6 files changed

Lines changed: 20 additions & 20 deletions

File tree

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
FROM node:15.0.1-buster-slim@sha256:fc14218ae526b3568ba854732e8fbfe7e67d77769f5c3b17db997983fa571421
1+
FROM node:15.1.0-buster-slim@sha256:fc14218ae526b3568ba854732e8fbfe7e67d77769f5c3b17db997983fa571421
22

33
RUN apt-get update && apt-get install -y p7zip-full 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 - **15.0.1**
10-
* aws-sdk - **2.778.0**
9+
* Node.js - **15.1.0**
10+
* aws-sdk - **2.785.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-15-runtime \
43-
--description "nodejs-15.0.1 aws-cli-2.778.0" \
43+
--description "nodejs-15.1.0 aws-cli-2.785.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-15-runtime:1",
53-
"Description": "nodejs-15.0.1 aws-cli-2.778.0",
53+
"Description": "nodejs-15.1.0 aws-cli-2.785.0",
5454
"CreatedDate": "2018-12-02T22:32:00.572+0000",
5555
"LayerArn": "arn:aws:lambda:us-east-2:356111732087:layer:node-15-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=15.0.1
6-
export SHA256=cc9c3eed21755b490e5333ccab208ce15b539c35f64a764eeeae77c58746a7ff
5+
export NODE_VERSION=15.1.0
6+
export SHA256=d049437db2e7b90c3d5afb53fc8dc33dc6069fb43aa05e59c985867fc3813ba6
77

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

auto/publish

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ for R in $REGIONS ; do
4242
lambda publish-layer-version \
4343
--region "${R}" \
4444
--layer-name "${LAYER_NAME}" \
45-
--description "nodejs-15.0.1 aws-cli-2.766.0" \
45+
--description "nodejs-15.1.0 aws-cli-2.785.0" \
4646
--compatible-runtimes provided \
4747
--license-info Apache-2.0 \
4848
--zip-file fileb://stage/layer.zip

package-lock.json

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

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@
1212
"devDependencies": {
1313
"body-parser": "^1.19.0",
1414
"express": "^4.17.1",
15-
"@types/node": "^14.14.2",
15+
"@types/node": "^14.14.6",
1616
"@types/express": "^4.17.8",
1717
"ts-node": "^9.0.0",
18-
"typescript": "^4.0.3"
18+
"typescript": "^4.0.5"
1919
},
2020
"dependencies": {
21-
"aws-sdk": "^2.778.0"
21+
"aws-sdk": "^2.785.0"
2222
}
2323
}

0 commit comments

Comments
 (0)