You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwhisk.apache.org by ms...@apache.org on 2019/05/21 10:43:57 UTC

[incubator-openwhisk-runtime-php] branch master updated: Bump php runtimes to version 7.1.29, 7.2.19 and 7.3.5. (#59)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new e8034ff  Bump php runtimes to version 7.1.29, 7.2.19 and 7.3.5. (#59)
e8034ff is described below

commit e8034ff1f9d7c44196b2d932b0341ceebdb6353c
Author: falkzoll <fa...@de.ibm.com>
AuthorDate: Tue May 21 12:43:53 2019 +0200

    Bump php runtimes to version 7.1.29, 7.2.19 and 7.3.5. (#59)
    
    * The new versions contain bug fixes and security fixes.
---
 core/php7.1Action/CHANGELOG.md | 6 +++++-
 core/php7.1Action/Dockerfile   | 2 +-
 core/php7.2Action/CHANGELOG.md | 6 +++++-
 core/php7.2Action/Dockerfile   | 2 +-
 core/php7.3Action/CHANGELOG.md | 5 ++++-
 core/php7.3Action/Dockerfile   | 2 +-
 6 files changed, 17 insertions(+), 6 deletions(-)

diff --git a/core/php7.1Action/CHANGELOG.md b/core/php7.1Action/CHANGELOG.md
index 19c1044..fb32ed1 100644
--- a/core/php7.1Action/CHANGELOG.md
+++ b/core/php7.1Action/CHANGELOG.md
@@ -17,7 +17,11 @@
 #
 -->
 
-## Apache 1.13.0-incubating (next release)
+## Apache 1.14.0-incubating (next release)
+Changes:
+  - Update version of PHP to 7.1.29
+
+## Apache 1.13.0-incubating
 Changes:
   - Update version of PHP to 7.1.27
 
diff --git a/core/php7.1Action/Dockerfile b/core/php7.1Action/Dockerfile
index 20a198b..bc29fc6 100644
--- a/core/php7.1Action/Dockerfile
+++ b/core/php7.1Action/Dockerfile
@@ -15,7 +15,7 @@
 # limitations under the License.
 #
 
-FROM php:7.1.27-alpine
+FROM php:7.1.29-alpine
 
 RUN \
     apk update && apk upgrade && \
diff --git a/core/php7.2Action/CHANGELOG.md b/core/php7.2Action/CHANGELOG.md
index 083bbd1..202c105 100644
--- a/core/php7.2Action/CHANGELOG.md
+++ b/core/php7.2Action/CHANGELOG.md
@@ -17,7 +17,11 @@
 #
 -->
 
-## Apache 1.13.0-incubating (next release)
+## Apache 1.14.0-incubating (next release)
+Changes:
+  - Update version of PHP to 7.2.18
+
+## Apache 1.13.0-incubating
 Changes:
   - Update version of PHP to 7.2.16
 
diff --git a/core/php7.2Action/Dockerfile b/core/php7.2Action/Dockerfile
index 1edf14d..225592d 100644
--- a/core/php7.2Action/Dockerfile
+++ b/core/php7.2Action/Dockerfile
@@ -15,7 +15,7 @@
 # limitations under the License.
 #
 
-FROM php:7.2.16-alpine
+FROM php:7.2.18-alpine
 
 RUN \
     apk update && apk upgrade && \
diff --git a/core/php7.3Action/CHANGELOG.md b/core/php7.3Action/CHANGELOG.md
index b7740cf..bef4c7e 100644
--- a/core/php7.3Action/CHANGELOG.md
+++ b/core/php7.3Action/CHANGELOG.md
@@ -16,8 +16,11 @@
 # limitations under the License.
 #
 -->
+## Apache 1.14.0-incubating (next release)
+Changes:
+  - Update version of PHP to 7.3.5
 
-## Apache 1.13.0-incubating (next release)
+## Apache 1.13.0-incubating
 Initial release
 
 - Added: PHP: 7.3.3
diff --git a/core/php7.3Action/Dockerfile b/core/php7.3Action/Dockerfile
index 6131ba7..1088032 100644
--- a/core/php7.3Action/Dockerfile
+++ b/core/php7.3Action/Dockerfile
@@ -23,7 +23,7 @@ RUN curl -L "$PROXY_SOURCE" | tar xzf - \
      src/github.com/apache/incubator-openwhisk-runtime-go \
   && cd src/github.com/apache/incubator-openwhisk-runtime-go/main \
   && CGO_ENABLED=0 go build -o /bin/proxy
-FROM php:7.3.3-cli-stretch
+FROM php:7.3.5-cli-stretch
 
 # install dependencies
 RUN \