From caec68abd2dbd1eb04846e5da3a565ad2d931c73 Mon Sep 17 00:00:00 2001 From: Chirag Aggarwal Date: Fri, 5 Dec 2025 16:15:38 +0530 Subject: [PATCH 1/3] fix: imagick version to 3.8.1 --- php-8.4/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/php-8.4/Dockerfile b/php-8.4/Dockerfile index bead2dc..de5012f 100644 --- a/php-8.4/Dockerfile +++ b/php-8.4/Dockerfile @@ -2,7 +2,7 @@ FROM php:8.4-cli-alpine AS compile ENV PHP_REDIS_VERSION="6.1.0" \ PHP_SWOOLE_VERSION="v5.1.7" \ - PHP_IMAGICK_VERSION="3.7.0" \ + PHP_IMAGICK_VERSION="3.8.1" \ PHP_YAML_VERSION="2.2.4" \ PHP_MAXMINDDB_VERSION="v1.12.0" \ PHP_SCRYPT_VERSION="2.0.1" \ From 79a3efd92df9a7a744622fbf401ad817de0cd834 Mon Sep 17 00:00:00 2001 From: Chirag Aggarwal Date: Fri, 5 Dec 2025 16:18:52 +0530 Subject: [PATCH 2/3] increment test version array --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ccee0ab..60ed1d3 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - php-versions: ['8.0', '8.1', '8.2', '8.3'] # add PHP versions as required + php-versions: ['8.0', '8.1', '8.2', '8.3', '8.4'] # add PHP versions as required steps: - name: Checkout the repo uses: actions/checkout@v3 From bf44d8c715c6e440be047cd75400370c02b88624 Mon Sep 17 00:00:00 2001 From: Chirag Aggarwal Date: Fri, 5 Dec 2025 16:25:43 +0530 Subject: [PATCH 3/3] increment swoole version --- php-8.4/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/php-8.4/Dockerfile b/php-8.4/Dockerfile index de5012f..622862e 100644 --- a/php-8.4/Dockerfile +++ b/php-8.4/Dockerfile @@ -1,7 +1,7 @@ FROM php:8.4-cli-alpine AS compile ENV PHP_REDIS_VERSION="6.1.0" \ - PHP_SWOOLE_VERSION="v5.1.7" \ + PHP_SWOOLE_VERSION="v6.1.3" \ PHP_IMAGICK_VERSION="3.8.1" \ PHP_YAML_VERSION="2.2.4" \ PHP_MAXMINDDB_VERSION="v1.12.0" \