You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwhisk.apache.org by mh...@apache.org on 2021/11/10 09:37:08 UTC

[openwhisk-runtime-php] branch master updated: Update PHP releases to gather fixes (#111)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new d296463  Update PHP releases to gather fixes (#111)
d296463 is described below

commit d2964635b694c5c23f0d8d3755b2aaba805a06c0
Author: Martin Henke <ma...@web.de>
AuthorDate: Wed Nov 10 10:37:01 2021 +0100

    Update PHP releases to gather fixes (#111)
    
    * Update PHP releases to gather fixes
    
    * Update PHP releases to gather fixes
    
    * Update OS dependencies
    
    * Fix package name
---
 core/php7.3Action/CHANGELOG.md | 4 ++++
 core/php7.3Action/Dockerfile   | 6 +++---
 core/php7.4Action/CHANGELOG.md | 3 +++
 core/php7.4Action/Dockerfile   | 2 +-
 core/php8.0Action/CHANGELOG.md | 3 +++
 core/php8.0Action/Dockerfile   | 2 +-
 6 files changed, 15 insertions(+), 5 deletions(-)

diff --git a/core/php7.3Action/CHANGELOG.md b/core/php7.3Action/CHANGELOG.md
index fba3fec..4d2221a 100644
--- a/core/php7.3Action/CHANGELOG.md
+++ b/core/php7.3Action/CHANGELOG.md
@@ -17,6 +17,10 @@
 #
 -->
 
+## Next Release
+  - Update version of PHP to 7.3.32
+  - Update to Debian "buster"
+
 ## Apache 1.17.0
   - Update version of PHP to 7.3.29
   - Build actionloop from 1.16@1.18.0 (#107)
diff --git a/core/php7.3Action/Dockerfile b/core/php7.3Action/Dockerfile
index e7de939..13aa019 100644
--- a/core/php7.3Action/Dockerfile
+++ b/core/php7.3Action/Dockerfile
@@ -33,7 +33,7 @@ RUN curl -sL \
   && cd openwhisk-runtime-go-*/main\
   && GO111MODULE=on go build -o /bin/proxy
 
-FROM php:7.3.29-cli-stretch
+FROM php:7.3.32-cli-buster
 
 # select the builder to use
 ARG GO_PROXY_BUILD_FROM=release
@@ -46,13 +46,13 @@ RUN \
     && apt-get -y install \
       libfreetype6-dev \
       libicu-dev \
-      libicu57 \
+      libicu63 \
       libjpeg-dev \
       libpng-dev \
       libssl-dev \
       libxml2-dev \
       libzip-dev \
-      postgresql-server-dev-9.6 \
+      postgresql-server-dev-11 \
       unzip \
       zlib1g-dev \
     # Cleanup apt data, we do not need them later on.
diff --git a/core/php7.4Action/CHANGELOG.md b/core/php7.4Action/CHANGELOG.md
index 324e980..2806635 100644
--- a/core/php7.4Action/CHANGELOG.md
+++ b/core/php7.4Action/CHANGELOG.md
@@ -17,6 +17,9 @@
 #
 -->
 
+## Next Release
+  - Update version of PHP to 7.4.25
+
 ## Apache 1.17.0
   - Update version of PHP to 7.4.21
   - Build actionloop from 1.16@1.18.0 (#107)
diff --git a/core/php7.4Action/Dockerfile b/core/php7.4Action/Dockerfile
index e757a8c..7484d98 100644
--- a/core/php7.4Action/Dockerfile
+++ b/core/php7.4Action/Dockerfile
@@ -33,7 +33,7 @@ RUN curl -sL \
   && cd openwhisk-runtime-go-*/main\
   && GO111MODULE=on go build -o /bin/proxy
 
-FROM php:7.4.21-cli-buster
+FROM php:7.4.25-cli-buster
 
 # select the builder to use
 ARG GO_PROXY_BUILD_FROM=release
diff --git a/core/php8.0Action/CHANGELOG.md b/core/php8.0Action/CHANGELOG.md
index 2b2683a..b962dea 100644
--- a/core/php8.0Action/CHANGELOG.md
+++ b/core/php8.0Action/CHANGELOG.md
@@ -17,6 +17,9 @@
 #
 -->
 
+## Next Release
+- Update version of PHP to 8.0.11
+
 ## Apache 1.17.0
   - Update version of PHP to 8.0.8
   - Build actionloop from 1.16@1.18.0 (#107)
diff --git a/core/php8.0Action/Dockerfile b/core/php8.0Action/Dockerfile
index 726a9f0..632efe9 100644
--- a/core/php8.0Action/Dockerfile
+++ b/core/php8.0Action/Dockerfile
@@ -33,7 +33,7 @@ RUN curl -sL \
   && cd openwhisk-runtime-go-*/main\
   && GO111MODULE=on go build -o /bin/proxy
 
-FROM php:8.0.8-cli-buster
+FROM php:8.0.11-cli-buster
 
 # select the builder to use
 ARG GO_PROXY_BUILD_FROM=release