Skip to content

Commit

Permalink
Node 14.11.0, aws-sdk 2.756.0
Browse files Browse the repository at this point in the history
  • Loading branch information
janaz committed Sep 20, 2020
1 parent dd69b33 commit 4430230
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
FROM node:14.8.0-buster-slim@sha256:c253a1a9569e95414f30c6094bdb7f7561c17ad93447d2747405e367066a841a
FROM node:14.11.0-buster-slim@sha256:c253a1a9569e95414f30c6094bdb7f7561c17ad93447d2747405e367066a841a

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 - **14.8.0**
* aws-sdk - **2.734.0**
* Node.js - **14.11.0**
* aws-sdk - **2.756.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-14-runtime \
--description "nodejs-14.8.0 aws-cli-2.734.0" \
--description "nodejs-14.11.0 aws-cli-2.756.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-14-runtime:1",
"Description": "nodejs-14.8.0 aws-cli-2.734.0",
"Description": "nodejs-14.11.0 aws-cli-2.756.0",
"CreatedDate": "2018-12-02T22:32:00.572+0000",
"LayerArn": "arn:aws:lambda:us-east-2:356111732087:layer:node-14-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=14.8.0
export SHA256=c7761fe5d56d045d1540b1f0bc8a20d7edf03e6fd695ee5fbffc1dd9416ccc75
export NODE_VERSION=14.11.0
export SHA256=c0dfb8e45aefefc65410dbe3e9a05e346b952b2a19a965f5bea3e77b74fc73d8

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 @@ -41,7 +41,7 @@ for R in $REGIONS ; do
lambda publish-layer-version \
--region "${R}" \
--layer-name "${LAYER_NAME}" \
--description "nodejs-14.8.0 aws-cli-2.734.0" \
--description "nodejs-14.11.0 aws-cli-2.756.0" \
--compatible-runtimes provided \
--license-info Apache-2.0 \
--zip-file fileb://stage/layer.zip
Expand Down
6 changes: 3 additions & 3 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@
"express": "^4.17.1"
},
"dependencies": {
"aws-sdk": "^2.734.0"
"aws-sdk": "^2.756.0"
}
}

0 comments on commit 4430230

Please sign in to comment.