Skip to content

Commit 5a01667

Browse files
fox91claude
andcommitted
fix: update system package versions for Debian Trixie
Debian Trixie has updated several library packages with version bumps and t64 suffix additions for 64-bit time_t support. Changes: - libzip4 → libzip5 (version bump) - libhiredis0.14 → libhiredis1.1.0 (version bump) - libsnmp40 → libsnmp40t64 (t64 suffix for time64 support) - libmemcached11 → libmemcached11t64 (t64 suffix) - libmemcachedutil2 → libmemcachedutil2t64 (t64 suffix) Affects 30 Dockerfiles across PHP 8.1-8.5 on Trixie: - zip, pecl_zip, pecl_memcache (libzip) - phpiredis (libhiredis) - snmp (libsnmp) - pecl_memcached (libmemcached, libmemcachedutil) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 9828335 commit 5a01667

File tree

31 files changed

+49
-40
lines changed

31 files changed

+49
-40
lines changed

.claude/settings.local.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"permissions": {
3+
"allow": [
4+
"WebFetch(domain:packages.debian.org)"
5+
],
6+
"deny": [],
7+
"ask": []
8+
}
9+
}

8.1/trixie/pecl_memcache/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ LABEL maintainer="Andrea Falco <andrea@falco.sh>"
66
ARG PHPEXT_MEMCACHE_VERSION=8.2
77
RUN set -eux; \
88
persistentDeps=" \
9-
libzip4 \
9+
libzip5 \
1010
"; \
1111
buildDeps=" \
1212
libzip-dev \

8.1/trixie/pecl_memcached/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ LABEL maintainer="Andrea Falco <andrea@falco.sh>"
66
ARG PHPEXT_MEMCACHED_VERSION=3.4.0
77
RUN set -eux; \
88
persistentDeps=" \
9-
libmemcached11 \
10-
libmemcachedutil2 \
11-
libzip4 \
9+
libmemcached11t64 \
10+
libmemcachedutil2t64 \
11+
libzip5 \
1212
"; \
1313
buildDeps=" \
1414
libmemcached-dev \

8.1/trixie/pecl_zip/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ LABEL maintainer="Andrea Falco <andrea@falco.sh>"
66
ARG PHPEXT_ZIP_VERSION=1.22.7
77
RUN set -eux; \
88
persistentDeps=" \
9-
libzip4 \
9+
libzip5 \
1010
"; \
1111
buildDeps=" \
1212
libzip-dev \

8.1/trixie/phpiredis/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ LABEL maintainer="Andrea Falco <andrea@falco.sh>"
66
ARG PHPEXT_PHPIREDIS_VERSION=1.0.1
77
RUN set -eux; \
88
persistentDeps=" \
9-
libhiredis0.14 \
9+
libhiredis1.1.0 \
1010
"; \
1111
buildDeps=" \
1212
libhiredis-dev \

8.1/trixie/snmp/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ LABEL maintainer="Andrea Falco <andrea@falco.sh>"
55
# PHP ext-snmp
66
RUN set -eux; \
77
persistentDeps=" \
8-
libsnmp40 \
8+
libsnmp40t64 \
99
snmp-mibs-downloader \
1010
"; \
1111
buildDeps=" \

8.1/trixie/zip/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ LABEL maintainer="Andrea Falco <andrea@falco.sh>"
55
# PHP ext-zip
66
RUN set -eux; \
77
persistentDeps=" \
8-
libzip4 \
8+
libzip5 \
99
"; \
1010
buildDeps=" \
1111
libzip-dev \

8.2/trixie/pecl_memcache/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ LABEL maintainer="Andrea Falco <andrea@falco.sh>"
66
ARG PHPEXT_MEMCACHE_VERSION=8.2
77
RUN set -eux; \
88
persistentDeps=" \
9-
libzip4 \
9+
libzip5 \
1010
"; \
1111
buildDeps=" \
1212
libzip-dev \

8.2/trixie/pecl_memcached/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ LABEL maintainer="Andrea Falco <andrea@falco.sh>"
66
ARG PHPEXT_MEMCACHED_VERSION=3.4.0
77
RUN set -eux; \
88
persistentDeps=" \
9-
libmemcached11 \
10-
libmemcachedutil2 \
11-
libzip4 \
9+
libmemcached11t64 \
10+
libmemcachedutil2t64 \
11+
libzip5 \
1212
"; \
1313
buildDeps=" \
1414
libmemcached-dev \

8.2/trixie/pecl_zip/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ LABEL maintainer="Andrea Falco <andrea@falco.sh>"
66
ARG PHPEXT_ZIP_VERSION=1.22.7
77
RUN set -eux; \
88
persistentDeps=" \
9-
libzip4 \
9+
libzip5 \
1010
"; \
1111
buildDeps=" \
1212
libzip-dev \

0 commit comments

Comments
 (0)