You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwhisk.apache.org by dg...@apache.org on 2018/04/01 00:28:41 UTC

[incubator-openwhisk] branch master updated: update nodejs 6.14.0. 8.11.0 npm openwhisk 3.14 (#3510)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new d02f222  update nodejs 6.14.0. 8.11.0 npm openwhisk 3.14 (#3510)
d02f222 is described below

commit d02f222c7d7433de0b7ea1b8d55521089aedb0d6
Author: Carlos Santana <cs...@apache.org>
AuthorDate: Sat Mar 31 20:28:37 2018 -0400

    update nodejs 6.14.0. 8.11.0 npm openwhisk 3.14 (#3510)
    
    * update nodejs 6.14.0. 8.11.0 npm openwhisk 3.14
---
 actionRuntimes/nodejs6Action/Dockerfile |  2 +-
 actionRuntimes/nodejs8Action/Dockerfile |  2 +-
 docs/reference.md                       | 20 ++++++++++----------
 3 files changed, 12 insertions(+), 12 deletions(-)

diff --git a/actionRuntimes/nodejs6Action/Dockerfile b/actionRuntimes/nodejs6Action/Dockerfile
index 52ce9dd..0116753 100644
--- a/actionRuntimes/nodejs6Action/Dockerfile
+++ b/actionRuntimes/nodejs6Action/Dockerfile
@@ -1,2 +1,2 @@
-FROM openwhisk/nodejs6action:1.5.0
+FROM openwhisk/nodejs6action:1.8.0
 
diff --git a/actionRuntimes/nodejs8Action/Dockerfile b/actionRuntimes/nodejs8Action/Dockerfile
index 0fcb9b0..f1e8667 100644
--- a/actionRuntimes/nodejs8Action/Dockerfile
+++ b/actionRuntimes/nodejs8Action/Dockerfile
@@ -1,2 +1,2 @@
-FROM openwhisk/action-nodejs-v8:1.2.0
+FROM openwhisk/action-nodejs-v8:1.5.0
 
diff --git a/docs/reference.md b/docs/reference.md
index 335f287..1873115 100644
--- a/docs/reference.md
+++ b/docs/reference.md
@@ -207,12 +207,12 @@ For the `whisk.error()` you can return a rejected Promise (i.e. Promise.reject).
 ### JavaScript runtime environments
 
 JavaScript actions can be executed in Node.js version 6 or Node.js version 8.
-Currently actions are executed by default in a Node.js version 6.12.2 environment.  
+Currently actions are executed by default in a Node.js version 6 environment.
 
 ### Node.js version 6 environment
-The Node.js 6.12.2 environment will be used for an action if the `--kind` flag is explicitly specified with a value of 'nodejs:6' when creating/updating the action.
+The Node.js 6.14.0 environment will be used for an action if the `--kind` flag is explicitly specified with a value of 'nodejs:6' when creating/updating the action.
 
-The following packages are available to be used in the Node.js 6.12.2 environment:
+The following packages are available to be used in the Node.js 6.14.0 environment:
 
 - [apn v2.1.2](https://www.npmjs.com/package/apn) - A Node.js module for interfacing with the Apple Push Notification service.
 - [async v2.1.4](https://www.npmjs.com/package/async) - Provides functions for working with asynchronous functions.
@@ -238,7 +238,7 @@ The following packages are available to be used in the Node.js 6.12.2 environmen
 - [node-uuid v1.4.7](https://www.npmjs.com/package/node-uuid) - Deprecated UUID packaged.
 - [nodemailer v2.6.4](https://www.npmjs.com/package/nodemailer) - Send e-mails from Node.js – easy as cake!
 - [oauth2-server v2.4.1](https://www.npmjs.com/package/oauth2-server) - Complete, compliant, and well tested module for implementing an OAuth2 Server/Provider with express in Node.js.
-- [openwhisk v3.12.0](https://www.npmjs.com/package/openwhisk) - JavaScript client library for the OpenWhisk platform. Provides a wrapper around the OpenWhisk APIs.
+- [openwhisk v3.14.0](https://www.npmjs.com/package/openwhisk) - JavaScript client library for the OpenWhisk platform. Provides a wrapper around the OpenWhisk APIs.
 - [pkgcloud v1.4.0](https://www.npmjs.com/package/pkgcloud) - pkgcloud is a standard library for Node.js that abstracts away differences among multiple cloud providers.
 - [process v0.11.9](https://www.npmjs.com/package/process) - Require('process'); just like any other module.
 - [pug v2.0.0-beta6](https://www.npmjs.com/package/pug) - Implements the Pug templating language.
@@ -267,11 +267,11 @@ The following packages are available to be used in the Node.js 6.12.2 environmen
 - [yauzl v2.7.0](https://www.npmjs.com/package/yauzl) - Yet another unzip library for node. For zipping.
 
 ### Node.js version 8 environment
-The Node.js version 8.9.3 environment is used if the `--kind` flag is explicitly specified with a value of 'nodejs:8' when creating or updating an Action.
+The Node.js version 8.11.0 environment is used if the `--kind` flag is explicitly specified with a value of 'nodejs:8' when creating or updating an Action.
 
-The following packages are pre-installed in the Node.js version 8.9.3 environment:
+The following packages are pre-installed in the Node.js version 8.11.0 environment:
 
-- [openwhisk v3.12.0](https://www.npmjs.com/package/openwhisk) - JavaScript client library for the OpenWhisk platform. Provides a wrapper around the OpenWhisk APIs.
+- [openwhisk v3.14.0](https://www.npmjs.com/package/openwhisk) - JavaScript client library for the OpenWhisk platform. Provides a wrapper around the OpenWhisk APIs.
 
 ### Packaging npm packages with your actions
 For any `npm` packages that are not pre-installed in the Node.js environment, you can bundle them as dependencies when you create or update your action.
@@ -377,7 +377,7 @@ Python 2 actions are executed using Python 2.7.12. This is the default runtime f
 ## Swift actions
 
 ### Swift 3
-Swift 3 actions are executed using Swift 3.1.1  `--kind swift:3.1.1`.  
+Swift 3 actions are executed using Swift 3.1.1  `--kind swift:3.1.1`.
 
 Swift 3.1.1 actions can use the following packages:
 - KituraNet version 1.7.6, https://github.com/IBM-Swift/Kitura-net
@@ -385,11 +385,11 @@ Swift 3.1.1 actions can use the following packages:
 - Watson Developer Cloud SDK version 0.16.0, https://github.com/watson-developer-cloud/swift-sdk
 
 ### Swift 4
-Swift 4 actions are executed using Swift 4.1  `--kind swift:4.1`.  
+Swift 4 actions are executed using Swift 4.1  `--kind swift:4.1`.
 The default `--kind swift:default` is Swift 4.1.
 
 Swift 4.1 action runtime doesn't embed any packages, follow the instructions for [packaged swift actions](./actions.md#packaging-an-action-as-a-swift-executable) to include dependencies using a Package.swift.
- 
+
 
 ## PHP actions
 

-- 
To stop receiving notification emails like this one, please contact
dgrove@apache.org.