Skip to content

Commit fbe6007

Browse files
fox91claude
andcommitted
build(deps): update PECL extensions to latest versions
Update 17 PECL extensions across all PHP versions (8.1-8.4) and OS distributions (bookworm, alpine3.22): Major updates: - mongodb: 1.20.0 → 2.1.4 Notable updates: - redis: 6.1.0 → 6.3.0 - grpc: 1.67.0 → 1.76.0 - xdebug: 3.3.2/3.4.0beta1 → 3.4.7 (now stable) - timezonedb: 2024.2 → 2025.2.2 - protobuf: 4.27.5 → 4.33.1 Other updates: - apcu: 5.1.24 → 5.1.27 - ast: 1.1.2 → 1.1.3 - ds: 1.5.0 → 1.6.0 - gearman: 2.1.2 → 2.1.4 - imagick: 3.7.0 → 3.8.0 - mailparse: 3.1.8 → 3.1.9 - memcached: 3.3.0 → 3.4.0 - uuid: 1.2.1 → 1.3.0 - yaml: 2.2.4 → 2.3.0 - zip: 1.22.4 → 1.22.7 - zstd: 0.13.3 → 0.15.2 All extensions verified compatible with PHP 8.1-8.4. Updated README.md to reflect new versions. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 3b0b55e commit fbe6007

File tree

131 files changed

+148
-148
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

131 files changed

+148
-148
lines changed

8.1/alpine3.22/pecl_apcu/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM php:8.1-alpine3.22
33
LABEL maintainer="Andrea Falco <andrea@falco.sh>"
44

55
# PHP ext-apcu
6-
ARG PHPEXT_APCU_VERSION=5.1.24
6+
ARG PHPEXT_APCU_VERSION=5.1.27
77
RUN set -eux; \
88
pecl bundle -d /usr/src/php/ext apcu-${PHPEXT_APCU_VERSION}; \
99
docker-php-ext-install -j$(nproc) apcu; \

8.1/alpine3.22/pecl_ast/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM php:8.1-alpine3.22
33
LABEL maintainer="Andrea Falco <andrea@falco.sh>"
44

55
# PHP ext-ast
6-
ARG PHPEXT_AST_VERSION=1.1.2
6+
ARG PHPEXT_AST_VERSION=1.1.3
77
RUN set -eux; \
88
pecl bundle -d /usr/src/php/ext ast-${PHPEXT_AST_VERSION}; \
99
docker-php-ext-install -j$(nproc) ast; \

8.1/alpine3.22/pecl_ds/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM php:8.1-alpine3.22
33
LABEL maintainer="Andrea Falco <andrea@falco.sh>"
44

55
# PHP ext-ds
6-
ARG PHPEXT_DS_VERSION=1.5.0
6+
ARG PHPEXT_DS_VERSION=1.6.0
77
RUN set -eux; \
88
pecl bundle -d /usr/src/php/ext ds-${PHPEXT_DS_VERSION}; \
99
docker-php-ext-install -j$(nproc) ds; \

8.1/alpine3.22/pecl_gearman/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM php:8.1-alpine3.22
33
LABEL maintainer="Andrea Falco <andrea@falco.sh>"
44

55
# PHP ext-gearman
6-
ARG PHPEXT_GEARMAN_VERSION=2.1.2
6+
ARG PHPEXT_GEARMAN_VERSION=2.1.4
77
RUN set -eux; \
88
{ \
99
echo 'https://dl-cdn.alpinelinux.org/alpine/edge/main'; \

8.1/alpine3.22/pecl_grpc/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM php:8.1-alpine3.22
33
LABEL maintainer="Andrea Falco <andrea@falco.sh>"
44

55
# PHP ext-grpc
6-
ARG PHPEXT_GRPC_VERSION=1.67.0
6+
ARG PHPEXT_GRPC_VERSION=1.76.0
77
RUN set -eux; \
88
persistentDeps=" \
99
libstdc++ \

8.1/alpine3.22/pecl_imagick/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM php:8.1-alpine3.22
33
LABEL maintainer="Andrea Falco <andrea@falco.sh>"
44

55
# PHP ext-imagick
6-
ARG PHPEXT_IMAGICK_VERSION=3.7.0
6+
ARG PHPEXT_IMAGICK_VERSION=3.8.0
77
RUN set -eux; \
88
persistentDeps=" \
99
imagemagick-libs \

8.1/alpine3.22/pecl_mailparse/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM php:8.1-alpine3.22
33
LABEL maintainer="Andrea Falco <andrea@falco.sh>"
44

55
# PHP ext-mailparse
6-
ARG PHPEXT_MAILPARSE_VERSION=3.1.8
6+
ARG PHPEXT_MAILPARSE_VERSION=3.1.9
77
RUN set -eux; \
88
pecl bundle -d /usr/src/php/ext mailparse-${PHPEXT_MAILPARSE_VERSION}; \
99
docker-php-ext-install -j$(nproc) mailparse; \

8.1/alpine3.22/pecl_memcached/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM php:8.1-alpine3.22
33
LABEL maintainer="Andrea Falco <andrea@falco.sh>"
44

55
# PHP ext-memcached
6-
ARG PHPEXT_MEMCACHED_VERSION=3.3.0
6+
ARG PHPEXT_MEMCACHED_VERSION=3.4.0
77
RUN set -eux; \
88
persistentDeps=" \
99
libmemcached \

8.1/alpine3.22/pecl_mongodb/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM php:8.1-alpine3.22
33
LABEL maintainer="Andrea Falco <andrea@falco.sh>"
44

55
# PHP ext-mongodb
6-
ARG PHPEXT_MONGODB_VERSION=1.20.0
6+
ARG PHPEXT_MONGODB_VERSION=2.1.4
77
RUN set -eux; \
88
persistentDeps=" \
99
openssl \

8.1/alpine3.22/pecl_protobuf/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM php:8.1-alpine3.22
33
LABEL maintainer="Andrea Falco <andrea@falco.sh>"
44

55
# PHP ext-protobuf
6-
ARG PHPEXT_PROTOBUF_VERSION=4.27.5
6+
ARG PHPEXT_PROTOBUF_VERSION=4.33.1
77
RUN set -eux; \
88
pecl bundle -d /usr/src/php/ext protobuf-${PHPEXT_PROTOBUF_VERSION}; \
99
docker-php-ext-install -j$(nproc) protobuf; \

0 commit comments

Comments
 (0)