Skip to content

Commit

Permalink
Node 14.7.0, aws-sdk 2.729.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Tomasz Janowski committed Aug 8, 2020
1 parent bcbfbbd commit 917b5d1
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.4.0-buster-slim@sha256:131acae05a4f622563371c133d05e490e39fa9c2a94a63832b737e3ba84f1136
FROM node:14.7.0-buster-slim@sha256:d4633e327e0961007b7674b2cee54b65964411ddcd0e441aee43e9c955e44cc2

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.5.0**
* aws-sdk - **2.708.0**
* Node.js - **14.7.0**
* aws-sdk - **2.729.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.5.0 aws-cli-2.708.0" \
--description "nodejs-14.7.0 aws-cli-2.729.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.5.0 aws-cli-2.708.0",
"Description": "nodejs-14.7.0 aws-cli-2.729.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.5.0
export SHA256=8b0235c318de87ecf8eec9a39e5c5df80757dbec571addda7123276dfcb34d5b
export NODE_VERSION=14.7.0
export SHA256=48929b03deb2915b64ba67355d2deffeed3c8df798b0c5f2b821ffc7a8116a23

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.5.0 aws-cli-2.708.0" \
--description "nodejs-14.7.0 aws-cli-2.729.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.708.0"
"aws-sdk": "^2.729.0"
}
}

0 comments on commit 917b5d1

Please sign in to comment.