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 2019/05/08 09:08:28 UTC

[incubator-openwhisk-runtime-nodejs] branch master updated: Bump nodejs versions to 6.17.1, 8.16.0, 10.15.3 and 12.1.0. (#127)

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

jamesthomas 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 3bf5268  Bump nodejs versions to 6.17.1, 8.16.0, 10.15.3 and 12.1.0. (#127)
3bf5268 is described below

commit 3bf5268f3254befd708210f15a0a4b0914d1e8e4
Author: falkzoll <fa...@de.ibm.com>
AuthorDate: Wed May 8 11:08:23 2019 +0200

    Bump nodejs versions to 6.17.1, 8.16.0, 10.15.3 and 12.1.0. (#127)
---
 README.md                              | 8 ++++----
 core/nodejs10Action/CHANGELOG.md       | 2 +-
 core/nodejs10Action/Dockerfile         | 2 +-
 core/nodejs10Action/knative/Dockerfile | 2 +-
 core/nodejs12Action/Dockerfile         | 2 +-
 core/nodejs6Action/CHANGELOG.md        | 2 +-
 core/nodejs6Action/Dockerfile          | 2 +-
 core/nodejs8Action/CHANGELOG.md        | 2 +-
 core/nodejs8Action/Dockerfile          | 2 +-
 core/nodejs8Action/knative/Dockerfile  | 2 +-
 10 files changed, 13 insertions(+), 13 deletions(-)

diff --git a/README.md b/README.md
index 5a21d5f..caf5ba2 100644
--- a/README.md
+++ b/README.md
@@ -26,10 +26,10 @@ This repository contains sources files needed to build the Node.js runtimes for
 
 The following Node.js runtime versions (with kind & image labels) are generated by the build system:
 
-- Node.js 6.17.0 (`nodejs:6  ` & `openwhisk/nodejs6action`)
-- Node.js 8.15.1 (`nodejs:8` & `openwhisk/action-nodejs-v8`)
-- Node.js 10.15.2 (`nodejs:10` &  `openwhisk/action-nodejs-v10`)
-- Node.js 12.0.0 (`nodejs:12` & `openwhisk/action-nodejs-v12`)
+- Node.js 6.17.1 (`nodejs:6  ` & `openwhisk/nodejs6action`)
+- Node.js 8.16.0 (`nodejs:8` & `openwhisk/action-nodejs-v8`)
+- Node.js 10.15.3 (`nodejs:10` &  `openwhisk/action-nodejs-v10`)
+- Node.js 12.1.0 (`nodejs:12` & `openwhisk/action-nodejs-v12`)
 
 This README documents the build, customisation and testing of these runtime images.
 
diff --git a/core/nodejs10Action/CHANGELOG.md b/core/nodejs10Action/CHANGELOG.md
index e6f00e1..9ed2a2c 100644
--- a/core/nodejs10Action/CHANGELOG.md
+++ b/core/nodejs10Action/CHANGELOG.md
@@ -25,4 +25,4 @@ Changes:
 
 - [openwhisk v3.18.0](https://www.npmjs.com/package/openwhisk) - JavaScript client library for the OpenWhisk platform. Provides a wrapper around the OpenWhisk APIs.
 
-Node.js version = [10.15.2](https://nodejs.org/en/blog/release/v10.15.2/)
+Node.js version = [10.15.3](https://nodejs.org/en/blog/release/v10.15.3/)
diff --git a/core/nodejs10Action/Dockerfile b/core/nodejs10Action/Dockerfile
index 2aebe4b..a2dbaf6 100644
--- a/core/nodejs10Action/Dockerfile
+++ b/core/nodejs10Action/Dockerfile
@@ -15,7 +15,7 @@
 # limitations under the License.
 #
 
-FROM node:10.15.2-stretch
+FROM node:10.15.3-stretch
 RUN apt-get update && apt-get install -y \
     imagemagick \
     graphicsmagick \
diff --git a/core/nodejs10Action/knative/Dockerfile b/core/nodejs10Action/knative/Dockerfile
index 0ed61de..a519498 100644
--- a/core/nodejs10Action/knative/Dockerfile
+++ b/core/nodejs10Action/knative/Dockerfile
@@ -15,7 +15,7 @@
 # limitations under the License.
 #
 
-FROM node:10.15.2-stretch
+FROM node:10.15.3-stretch
 RUN apt-get update && apt-get install -y \
     imagemagick \
     graphicsmagick \
diff --git a/core/nodejs12Action/Dockerfile b/core/nodejs12Action/Dockerfile
index ebbf54f..422bda1 100644
--- a/core/nodejs12Action/Dockerfile
+++ b/core/nodejs12Action/Dockerfile
@@ -15,7 +15,7 @@
 # limitations under the License.
 #
 
-FROM node:12.0.0-stretch
+FROM node:12.1.0-stretch
 RUN apt-get update && apt-get install -y \
     imagemagick \
     graphicsmagick \
diff --git a/core/nodejs6Action/CHANGELOG.md b/core/nodejs6Action/CHANGELOG.md
index 6bd2751..905c53c 100644
--- a/core/nodejs6Action/CHANGELOG.md
+++ b/core/nodejs6Action/CHANGELOG.md
@@ -26,7 +26,7 @@ Changes:
 
 - [openwhisk v3.18.0](https://www.npmjs.com/package/openwhisk) - JavaScript client library for the OpenWhisk platform. Provides a wrapper around the OpenWhisk APIs.
 
-Node.js version = [6.17.0](https://nodejs.org/en/blog/release/v6.17.0/)
+Node.js version = [6.17.1](https://nodejs.org/en/blog/release/v6.17.1/)
 
 ## 1.12.0
 Change: Update npm openwhisk package from `3.16.0` to `3.17.0`
diff --git a/core/nodejs6Action/Dockerfile b/core/nodejs6Action/Dockerfile
index b238acb..d323330 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.17.0
+ENV NODE_VERSION 6.17.1
 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 f03fcb2..e210c5c 100644
--- a/core/nodejs8Action/CHANGELOG.md
+++ b/core/nodejs8Action/CHANGELOG.md
@@ -26,7 +26,7 @@ Changes:
 
 - [openwhisk v3.18.0](https://www.npmjs.com/package/openwhisk) - JavaScript client library for the OpenWhisk platform. Provides a wrapper around the OpenWhisk APIs.
 
-Node.js version = [8.15.1](https://nodejs.org/en/blog/release/v8.15.1/)
+Node.js version = [8.16.0](https://nodejs.org/en/blog/release/v8.16.0/)
 
 ## 1.9.0 (Apache 1.12)
 Change: Update openwhisk npm package from `3.16.0` to `3.17.0`
diff --git a/core/nodejs8Action/Dockerfile b/core/nodejs8Action/Dockerfile
index 6dcc447..a1f15ff 100644
--- a/core/nodejs8Action/Dockerfile
+++ b/core/nodejs8Action/Dockerfile
@@ -15,7 +15,7 @@
 # limitations under the License.
 #
 
-FROM node:8.15.1
+FROM node:8.16.0
 RUN apt-get update && apt-get install -y \
     imagemagick \
     graphicsmagick \
diff --git a/core/nodejs8Action/knative/Dockerfile b/core/nodejs8Action/knative/Dockerfile
index 27565be..f7ccaff 100644
--- a/core/nodejs8Action/knative/Dockerfile
+++ b/core/nodejs8Action/knative/Dockerfile
@@ -15,7 +15,7 @@
 # limitations under the License.
 #
 
-FROM node:8.15.1
+FROM node:8.16.0
 RUN apt-get update && apt-get install -y \
     imagemagick \
     graphicsmagick \