Skip to content

Commit

Permalink
Node 15.3.0, aws-sdk 2.806.0
Browse files Browse the repository at this point in the history
  • Loading branch information
janaz committed Dec 9, 2020
1 parent 81bd0fa commit a5554de
Show file tree
Hide file tree
Showing 6 changed files with 49 additions and 42 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
FROM node:15.1.0-buster-slim@sha256:fc14218ae526b3568ba854732e8fbfe7e67d77769f5c3b17db997983fa571421
FROM node:15.3.0-buster-slim@sha256:fc14218ae526b3568ba854732e8fbfe7e67d77769f5c3b17db997983fa571421

RUN apt-get update && apt-get install -y p7zip-full curl xz-utils && apt-get clean all
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ It's easy to use this project and build Node.js runtime that will target any ver

## Current versions

* Node.js - **15.1.0**
* aws-sdk - **2.785.0**
* Node.js - **15.3.0**
* aws-sdk - **2.806.0**

## Goals

Expand Down Expand Up @@ -40,7 +40,7 @@ Deploy the runtime layer using the following command:
```bash
aws lambda publish-layer-version \
--layer-name node-15-runtime \
--description "nodejs-15.1.0 aws-cli-2.785.0" \
--description "nodejs-15.3.0 aws-cli-2.806.0" \
--compatible-runtimes provided \
--license-info Apache-2.0 \
--zip-file fileb://stage/layer.zip
Expand All @@ -50,7 +50,7 @@ The output will look like this:
```json
{
"LayerVersionArn": "arn:aws:lambda:us-east-2:356111732087:layer:node-15-runtime:1",
"Description": "nodejs-15.1.0 aws-cli-2.785.0",
"Description": "nodejs-15.3.0 aws-cli-2.806.0",
"CreatedDate": "2018-12-02T22:32:00.572+0000",
"LayerArn": "arn:aws:lambda:us-east-2:356111732087:layer:node-15-runtime",
"Content": {
Expand Down
4 changes: 2 additions & 2 deletions auto/package
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

set -ex

export NODE_VERSION=15.1.0
export SHA256=d049437db2e7b90c3d5afb53fc8dc33dc6069fb43aa05e59c985867fc3813ba6
export NODE_VERSION=15.3.0
export SHA256=02741db3f55022a94f43fa1774e9fc389848949ec5f5cff822833d8b9711ad93

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

Expand Down
2 changes: 1 addition & 1 deletion auto/publish
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ for R in $REGIONS ; do
lambda publish-layer-version \
--region "${R}" \
--layer-name "${LAYER_NAME}" \
--description "nodejs-15.1.0 aws-cli-2.785.0" \
--description "nodejs-15.3.0 aws-cli-2.806.0" \
--compatible-runtimes provided \
--license-info Apache-2.0 \
--zip-file fileb://stage/layer.zip
Expand Down
65 changes: 36 additions & 29 deletions package-lock.json

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

10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@
"devDependencies": {
"body-parser": "^1.19.0",
"express": "^4.17.1",
"@types/node": "^14.14.6",
"@types/express": "^4.17.8",
"ts-node": "^9.0.0",
"typescript": "^4.0.5"
"@types/node": "^14.14.11",
"@types/express": "^4.17.9",
"ts-node": "^9.1.1",
"typescript": "^4.1.2"
},
"dependencies": {
"aws-sdk": "^2.785.0"
"aws-sdk": "^2.806.0"
}
}

0 comments on commit a5554de

Please sign in to comment.