You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwhisk.apache.org by ja...@apache.org on 2018/08/17 02:14:15 UTC

[incubator-openwhisk-runtime-nodejs] branch master updated: Update nodejs for Aug/2018 security patches (#82)

This is an automated email from the ASF dual-hosted git repository.

japetrsn pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-openwhisk-runtime-nodejs.git


The following commit(s) were added to refs/heads/master by this push:
     new 09ac899  Update nodejs for Aug/2018 security patches (#82)
09ac899 is described below

commit 09ac89998a2987760d511a2ece12cc5d43cd0137
Author: Carlos Santana <cs...@apache.org>
AuthorDate: Thu Aug 16 22:14:12 2018 -0400

    Update nodejs for Aug/2018 security patches (#82)
    
    Closes #80
---
 core/nodejs6Action/CHANGELOG.md | 5 +++++
 core/nodejs6Action/Dockerfile   | 2 +-
 core/nodejs8Action/CHANGELOG.md | 5 +++++
 core/nodejs8Action/Dockerfile   | 2 +-
 4 files changed, 12 insertions(+), 2 deletions(-)

diff --git a/core/nodejs6Action/CHANGELOG.md b/core/nodejs6Action/CHANGELOG.md
index 97d75fe..f2a218a 100644
--- a/core/nodejs6Action/CHANGELOG.md
+++ b/core/nodejs6Action/CHANGELOG.md
@@ -19,6 +19,11 @@
 
 # NodeJS 6 OpenWhisk Runtime Container
 
+## 1.11.3
+Change: Update Node.js
+
+Node.js version = [6.14.4](https://nodejs.org/en/blog/release/v6.14.4/)
+
 ## 1.11.2
 Change: Update runtime to allow more environment variables
 
diff --git a/core/nodejs6Action/Dockerfile b/core/nodejs6Action/Dockerfile
index bd55807..8bdf50c 100644
--- a/core/nodejs6Action/Dockerfile
+++ b/core/nodejs6Action/Dockerfile
@@ -18,7 +18,7 @@
 FROM nodejsactionbase
 
 # based on https://github.com/nodejs/docker-node
-ENV NODE_VERSION 6.14.3
+ENV NODE_VERSION 6.14.4
 RUN curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION-linux-x64.tar.gz" \
   && tar -xzf "node-v$NODE_VERSION-linux-x64.tar.gz" -C /usr/local --strip-components=1 \
   && rm "node-v$NODE_VERSION-linux-x64.tar.gz"
diff --git a/core/nodejs8Action/CHANGELOG.md b/core/nodejs8Action/CHANGELOG.md
index 63153e1..2cae9b2 100644
--- a/core/nodejs8Action/CHANGELOG.md
+++ b/core/nodejs8Action/CHANGELOG.md
@@ -19,6 +19,11 @@
 
 # NodeJS 8 OpenWhisk Runtime Container
 
+## 1.8.3
+Change: Update Node.js
+
+Node.js version = [8.11.4](https://nodejs.org/en/blog/release/v8.11.4/)
+
 ## 1.8.2
 Change: Update runtime to allow more environment variables
 
diff --git a/core/nodejs8Action/Dockerfile b/core/nodejs8Action/Dockerfile
index c497a56..20e150a 100644
--- a/core/nodejs8Action/Dockerfile
+++ b/core/nodejs8Action/Dockerfile
@@ -15,7 +15,7 @@
 # limitations under the License.
 #
 
-FROM node:8.11.3
+FROM node:8.11.4
 RUN apt-get update && apt-get install -y \
     imagemagick \
     unzip \