From 415fbce955691ecc5ace734c9eae8b17c0b214a7 Mon Sep 17 00:00:00 2001 From: Eric Nemchik Date: Sun, 19 Jul 2026 20:02:36 -0500 Subject: [PATCH 01/14] Rebase to 3.24 Signed-off-by: Eric Nemchik --- Dockerfile | 64 +++++++++++++++++++++++----------------------- Dockerfile.aarch64 | 64 +++++++++++++++++++++++----------------------- readme-vars.yml | 1 + 3 files changed, 65 insertions(+), 64 deletions(-) diff --git a/Dockerfile b/Dockerfile index 0213595..461683b 100755 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ # syntax=docker/dockerfile:1 -FROM ghcr.io/linuxserver/baseimage-alpine-nginx:3.22 +FROM ghcr.io/linuxserver/baseimage-alpine-nginx:3.24 # set version label ARG BUILD_DATE @@ -49,36 +49,36 @@ RUN \ nginx-mod-stream \ nginx-mod-stream-geoip2 \ nginx-vim \ - php84-bcmath \ - php84-bz2 \ - php84-dom \ - php84-exif \ - php84-ftp \ - php84-gd \ - php84-gmp \ - php84-imap \ - php84-intl \ - php84-ldap \ - php84-mysqli \ - php84-mysqlnd \ - php84-opcache \ - php84-pdo_mysql \ - php84-pdo_odbc \ - php84-pdo_pgsql \ - php84-pdo_sqlite \ - php84-pear \ - php84-pecl-apcu \ - php84-pecl-memcached \ - php84-pecl-redis \ - php84-pgsql \ - php84-posix \ - php84-soap \ - php84-sockets \ - php84-sodium \ - php84-sqlite3 \ - php84-tokenizer \ - php84-xmlreader \ - php84-xsl \ + php85-bcmath \ + php85-bz2 \ + php85-dom \ + php85-exif \ + php85-ftp \ + php85-gd \ + php85-gmp \ + php85-imap \ + php85-intl \ + php85-ldap \ + php85-mysqli \ + php85-mysqlnd \ + php85-opcache \ + php85-pdo_mysql \ + php85-pdo_odbc \ + php85-pdo_pgsql \ + php85-pdo_sqlite \ + php85-pear \ + php85-pecl-apcu \ + php85-pecl-memcached \ + php85-pecl-redis \ + php85-pgsql \ + php85-posix \ + php85-soap \ + php85-sockets \ + php85-sodium \ + php85-sqlite3 \ + php85-tokenizer \ + php85-xmlreader \ + php85-xsl \ whois && \ echo "**** install certbot plugins ****" && \ if [ -z ${CERTBOT_VERSION+x} ]; then \ @@ -88,7 +88,7 @@ RUN \ pip install -U --no-cache-dir \ pip \ wheel && \ - pip install -U --no-cache-dir --find-links https://wheel-index.linuxserver.io/alpine-3.22/ \ + pip install -U --no-cache-dir --find-links https://wheel-index.linuxserver.io/alpine-3.24/ \ certbot==${CERTBOT_VERSION} \ certbot-dns-acmedns \ certbot-dns-aliyun \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index aeaf4cd..aa67e60 100755 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -1,6 +1,6 @@ # syntax=docker/dockerfile:1 -FROM ghcr.io/linuxserver/baseimage-alpine-nginx:arm64v8-3.22 +FROM ghcr.io/linuxserver/baseimage-alpine-nginx:arm64v8-3.24 # set version label ARG BUILD_DATE @@ -49,36 +49,36 @@ RUN \ nginx-mod-stream \ nginx-mod-stream-geoip2 \ nginx-vim \ - php84-bcmath \ - php84-bz2 \ - php84-dom \ - php84-exif \ - php84-ftp \ - php84-gd \ - php84-gmp \ - php84-imap \ - php84-intl \ - php84-ldap \ - php84-mysqli \ - php84-mysqlnd \ - php84-opcache \ - php84-pdo_mysql \ - php84-pdo_odbc \ - php84-pdo_pgsql \ - php84-pdo_sqlite \ - php84-pear \ - php84-pecl-apcu \ - php84-pecl-memcached \ - php84-pecl-redis \ - php84-pgsql \ - php84-posix \ - php84-soap \ - php84-sockets \ - php84-sodium \ - php84-sqlite3 \ - php84-tokenizer \ - php84-xmlreader \ - php84-xsl \ + php85-bcmath \ + php85-bz2 \ + php85-dom \ + php85-exif \ + php85-ftp \ + php85-gd \ + php85-gmp \ + php85-imap \ + php85-intl \ + php85-ldap \ + php85-mysqli \ + php85-mysqlnd \ + php85-opcache \ + php85-pdo_mysql \ + php85-pdo_odbc \ + php85-pdo_pgsql \ + php85-pdo_sqlite \ + php85-pear \ + php85-pecl-apcu \ + php85-pecl-memcached \ + php85-pecl-redis \ + php85-pgsql \ + php85-posix \ + php85-soap \ + php85-sockets \ + php85-sodium \ + php85-sqlite3 \ + php85-tokenizer \ + php85-xmlreader \ + php85-xsl \ whois && \ echo "**** install certbot plugins ****" && \ if [ -z ${CERTBOT_VERSION+x} ]; then \ @@ -88,7 +88,7 @@ RUN \ pip install -U --no-cache-dir \ pip \ wheel && \ - pip install -U --no-cache-dir --find-links https://wheel-index.linuxserver.io/alpine-3.22/ \ + pip install -U --no-cache-dir --find-links https://wheel-index.linuxserver.io/alpine-3.24/ \ certbot==${CERTBOT_VERSION} \ certbot-dns-acmedns \ certbot-dns-aliyun \ diff --git a/readme-vars.yml b/readme-vars.yml index 5c3a963..5c7d270 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -220,6 +220,7 @@ init_diagram: | "swag:latest" <- Base Images # changelog changelogs: + - {date: "19.07.26:", desc: "Rebase to Alpine 3.24 with PHP 8.5."} - {date: "10.07.26:", desc: "Add support for Let's Encrypt cert profiles. Run certbot twice daily with a random delay."} - {date: "19.06.26:", desc: "Add support for mijn.host dns validation."} - {date: "01.06.26:", desc: "Remove obsolete old cert check logic."} From fb016e60ee460a124a78742ce416aa8308aa82ee Mon Sep 17 00:00:00 2001 From: Eric Nemchik Date: Sun, 19 Jul 2026 21:13:30 -0500 Subject: [PATCH 02/14] Remove unnecessary PHP extensions from Dockerfiles Signed-off-by: Eric Nemchik --- Dockerfile | 2 -- Dockerfile.aarch64 | 2 -- 2 files changed, 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 461683b..21f8b4f 100755 --- a/Dockerfile +++ b/Dockerfile @@ -56,12 +56,10 @@ RUN \ php85-ftp \ php85-gd \ php85-gmp \ - php85-imap \ php85-intl \ php85-ldap \ php85-mysqli \ php85-mysqlnd \ - php85-opcache \ php85-pdo_mysql \ php85-pdo_odbc \ php85-pdo_pgsql \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index aa67e60..92786b0 100755 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -56,12 +56,10 @@ RUN \ php85-ftp \ php85-gd \ php85-gmp \ - php85-imap \ php85-intl \ php85-ldap \ php85-mysqli \ php85-mysqlnd \ - php85-opcache \ php85-pdo_mysql \ php85-pdo_odbc \ php85-pdo_pgsql \ From 55a01c005cc2d080e8862f98dca5b0bcb3b06422 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 25 Jul 2026 05:48:28 +0000 Subject: [PATCH 03/14] Bot Updating Package Versions --- package_versions.txt | 64 ++++++++++++++++++++++---------------------- 1 file changed, 32 insertions(+), 32 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index bf7ed7f..e605478 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -6,7 +6,7 @@ alpine-baselayout 3.7.0-r0 apk alpine-baselayout-data 3.7.0-r0 apk alpine-keys 2.5-r0 apk alpine-release 3.22.5-r0 apk -annotated-types 0.7.0 python +annotated-types 0.8.0 python anyio 4.14.2 python aom-libs 3.12.1-r0 apk apache2-utils 2.4.68-r0 apk @@ -23,8 +23,8 @@ azure-mgmt-dns 9.0.0 python backports-tarfile 1.2.0 python bash 5.2.37-r0 apk beautifulsoup4 4.15.0 python -boto3 1.43.51 python -botocore 1.43.51 python +boto3 1.43.56 python +botocore 1.43.56 python brotli-libs 1.1.0-r2 apk bs4 0.0.2 python busybox 1.37.0-r20 apk @@ -87,7 +87,7 @@ cli UNKNOWN binary cli-32 UNKNOWN binary cli-64 UNKNOWN binary cli-arm64 UNKNOWN binary -cloudflare 5.5.0 python +cloudflare 5.6.0 python composer 2.10.2 binary configargparse 1.7 python configobj 5.0.8 python @@ -96,7 +96,7 @@ coreutils-env 9.7-r1 apk coreutils-fmt 9.7-r1 apk coreutils-sha512sum 9.7-r1 apk cryptography 46.0.0 python -curl 8.14.1-r2 apk +curl 8.14.1-r3 apk distro 1.9.0 python dns-lexicon 3.25.2 python dnslib 0.9.26 python @@ -105,7 +105,7 @@ domeneshop 0.4.4 python fail2ban 1.1.0 python fail2ban 1.1.0-r3 apk fail2ban-pyc 1.1.0-r3 apk -filelock 3.30.3 python +filelock 3.32.0 python findutils 4.10.0-r0 apk fontconfig 2.15.0-r3 apk freetype 2.13.3-r0 apk @@ -124,7 +124,7 @@ gnupg-wks-client 2.4.9-r0 apk gnutls 3.8.13-r0 apk google-api-core 2.30.3 python google-api-python-client 2.198.0 python -google-auth 2.56.0 python +google-auth 2.56.2 python google-auth-httplib2 0.4.0 python googleapis-common-protos 1.75.0 python gpg 2.4.9-r0 apk @@ -137,7 +137,7 @@ gui-32 UNKNOWN binary gui-64 UNKNOWN binary gui-arm64 UNKNOWN binary h11 0.16.0 python -hcloud 2.22.0 python +hcloud 2.23.0 python httpcore 1.0.9 python httplib2 0.32.0 python httpx 0.28.1 python @@ -168,7 +168,7 @@ libavif 1.3.0-r0 apk libbsd 0.12.2-r0 apk libbz2 1.0.8-r6 apk libcrypto3 3.5.7-r0 apk -libcurl 8.14.1-r2 apk +libcurl 8.14.1-r3 apk libdav1d 1.5.1-r0 apk libedit 20250104.3.1-r1 apk libevent 2.1.13-r0 apk @@ -240,25 +240,25 @@ ncurses-terminfo-base 6.5_p20250503-r0 apk netcat-openbsd 1.229.1-r0 apk nettle 3.10.2-r0 apk nghttp2-libs 1.69.0-r0 apk -nginx 1.28.3-r5 apk -nginx-mod-devel-kit 1.28.3-r5 apk -nginx-mod-http-brotli 1.28.3-r5 apk -nginx-mod-http-dav-ext 1.28.3-r5 apk -nginx-mod-http-echo 1.28.3-r5 apk -nginx-mod-http-fancyindex 1.28.3-r5 apk -nginx-mod-http-geoip2 1.28.3-r5 apk -nginx-mod-http-headers-more 1.28.3-r5 apk -nginx-mod-http-image-filter 1.28.3-r5 apk -nginx-mod-http-perl 1.28.3-r5 apk -nginx-mod-http-redis2 1.28.3-r5 apk -nginx-mod-http-set-misc 1.28.3-r5 apk -nginx-mod-http-upload-progress 1.28.3-r5 apk -nginx-mod-http-xslt-filter 1.28.3-r5 apk -nginx-mod-mail 1.28.3-r5 apk -nginx-mod-rtmp 1.28.3-r5 apk -nginx-mod-stream 1.28.3-r5 apk -nginx-mod-stream-geoip2 1.28.3-r5 apk -nginx-vim 1.28.3-r5 apk +nginx 1.28.3-r7 apk +nginx-mod-devel-kit 1.28.3-r7 apk +nginx-mod-http-brotli 1.28.3-r7 apk +nginx-mod-http-dav-ext 1.28.3-r7 apk +nginx-mod-http-echo 1.28.3-r7 apk +nginx-mod-http-fancyindex 1.28.3-r7 apk +nginx-mod-http-geoip2 1.28.3-r7 apk +nginx-mod-http-headers-more 1.28.3-r7 apk +nginx-mod-http-image-filter 1.28.3-r7 apk +nginx-mod-http-perl 1.28.3-r7 apk +nginx-mod-http-redis2 1.28.3-r7 apk +nginx-mod-http-set-misc 1.28.3-r7 apk +nginx-mod-http-upload-progress 1.28.3-r7 apk +nginx-mod-http-xslt-filter 1.28.3-r7 apk +nginx-mod-mail 1.28.3-r7 apk +nginx-mod-rtmp 1.28.3-r7 apk +nginx-mod-stream 1.28.3-r7 apk +nginx-mod-stream-geoip2 1.28.3-r7 apk +nginx-vim 1.28.3-r7 apk npth 1.8-r0 apk oniguruma 6.9.10-r0 apk openssl 3.5.7-r0 apk @@ -324,7 +324,7 @@ pkb-client 2.3.1 python platformdirs 4.2.2 python popt 1.19-r4 apk procps-ng 4.0.4-r3 apk -proto-plus 1.28.1 python +proto-plus 1.28.2 python protobuf 7.35.1 python pyacmedns 0.4 python pyasn1 0.6.4 python @@ -353,14 +353,14 @@ requests-file 3.0.1 python requests-mock 1.12.1 python requests-unixsocket 0.4.1 python ruff 0.6.3 python -s3transfer 0.19.1 python +s3transfer 0.19.2 python scanelf 1.3.8-r1 apk setuptools 74.0.0 python shadow 4.17.3-r0 apk six 1.16.0 python skalibs-libs 2.14.4.0-r0 apk sniffio 1.3.1 python -soupsieve 2.8.4 python +soupsieve 2.9.1 python sqlite-libs 3.49.2-r1 apk ssl_client 1.37.0-r20 apk tiff 4.7.1-r0 apk @@ -370,7 +370,7 @@ typeguard 4.3.0 python typing-extensions 4.12.2 python typing-extensions 4.16.0 python typing-inspection 0.4.2 python -tzdata 2026b-r0 apk +tzdata 2026c-r0 apk unixodbc 2.3.12-r0 apk uritemplate 4.2.0 python urllib3 2.2.2 python From 733910a7a7f7a457f7f524c0ee6d865033dc5ff1 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 1 Aug 2026 06:00:50 +0000 Subject: [PATCH 04/14] Bot Updating Package Versions --- package_versions.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index e605478..72a6fe4 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -23,8 +23,8 @@ azure-mgmt-dns 9.0.0 python backports-tarfile 1.2.0 python bash 5.2.37-r0 apk beautifulsoup4 4.15.0 python -boto3 1.43.56 python -botocore 1.43.56 python +boto3 1.43.62 python +botocore 1.43.62 python brotli-libs 1.1.0-r2 apk bs4 0.0.2 python busybox 1.37.0-r20 apk @@ -105,7 +105,7 @@ domeneshop 0.4.4 python fail2ban 1.1.0 python fail2ban 1.1.0-r3 apk fail2ban-pyc 1.1.0-r3 apk -filelock 3.32.0 python +filelock 3.32.2 python findutils 4.10.0-r0 apk fontconfig 2.15.0-r3 apk freetype 2.13.3-r0 apk @@ -319,7 +319,7 @@ php84-xmlwriter 8.4.16-r0 apk php84-xsl 8.4.16-r0 apk php84-zip 8.4.16-r0 apk pinentry 1.3.1-r0 apk -pip 26.1.2 python +pip 26.2 python pkb-client 2.3.1 python platformdirs 4.2.2 python popt 1.19-r4 apk From 55a8c4fa888d31a84131b3081d7b9eeda8a17d9d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 8 Aug 2026 04:15:45 +0000 Subject: [PATCH 05/14] Bot Updating Package Versions --- package_versions.txt | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 72a6fe4..9fbebe4 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -23,8 +23,8 @@ azure-mgmt-dns 9.0.0 python backports-tarfile 1.2.0 python bash 5.2.37-r0 apk beautifulsoup4 4.15.0 python -boto3 1.43.62 python -botocore 1.43.62 python +boto3 1.43.67 python +botocore 1.43.67 python brotli-libs 1.1.0-r2 apk bs4 0.0.2 python busybox 1.37.0-r20 apk @@ -124,9 +124,9 @@ gnupg-wks-client 2.4.9-r0 apk gnutls 3.8.13-r0 apk google-api-core 2.30.3 python google-api-python-client 2.198.0 python -google-auth 2.56.2 python -google-auth-httplib2 0.4.0 python -googleapis-common-protos 1.75.0 python +google-auth 2.56.3 python +google-auth-httplib2 0.4.1 python +googleapis-common-protos 1.75.1 python gpg 2.4.9-r0 apk gpg-agent 2.4.9-r0 apk gpg-wks-server 2.4.9-r0 apk @@ -264,7 +264,7 @@ oniguruma 6.9.10-r0 apk openssl 3.5.7-r0 apk p11-kit 0.26.2-r0 apk packaging 24.1 python -packaging 26.2 python +packaging 26.3 python parsedatetime 2.6 python pcre2 10.46-r0 apk perl 5.40.4-r0 apk @@ -319,12 +319,12 @@ php84-xmlwriter 8.4.16-r0 apk php84-xsl 8.4.16-r0 apk php84-zip 8.4.16-r0 apk pinentry 1.3.1-r0 apk -pip 26.2 python +pip 26.2.1 python pkb-client 2.3.1 python platformdirs 4.2.2 python popt 1.19-r4 apk procps-ng 4.0.4-r3 apk -proto-plus 1.28.2 python +proto-plus 1.28.3 python protobuf 7.35.1 python pyacmedns 0.4 python pyasn1 0.6.4 python @@ -360,7 +360,7 @@ shadow 4.17.3-r0 apk six 1.16.0 python skalibs-libs 2.14.4.0-r0 apk sniffio 1.3.1 python -soupsieve 2.9.1 python +soupsieve 2.9.2 python sqlite-libs 3.49.2-r1 apk ssl_client 1.37.0-r20 apk tiff 4.7.1-r0 apk From 9bd4e3771e182edfa61a2c1db438eae46f464cbe Mon Sep 17 00:00:00 2001 From: EVO <45015615+EVOTk@users.noreply.github.com> Date: Sat, 8 Aug 2026 19:55:04 +0200 Subject: [PATCH 06/14] Update ovh.ini Update the broken link --- root/defaults/dns-conf/ovh.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/root/defaults/dns-conf/ovh.ini b/root/defaults/dns-conf/ovh.ini index f8fef57..1d474ee 100644 --- a/root/defaults/dns-conf/ovh.ini +++ b/root/defaults/dns-conf/ovh.ini @@ -1,4 +1,4 @@ -# Instructions: https://github.com/certbot/certbot/blob/master/certbot-dns-ovh/certbot_dns_ovh/__init__.py#L20 +# Instructions: https://github.com/certbot/certbot/blob/main/certbot-dns-ovh/src/certbot_dns_ovh/__init__.py#L24 # Replace with your values dns_ovh_endpoint = ovh-eu dns_ovh_application_key = MDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAw From 8bccad2000bf8d1469207f36ce08234ac82590df Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 15 Aug 2026 03:44:37 +0000 Subject: [PATCH 07/14] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 9fbebe4..895755d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -12,7 +12,7 @@ aom-libs 3.12.1-r0 apk apache2-utils 2.4.68-r0 apk apk-tools 2.14.10-r0 apk apr 1.7.5-r0 apk -apr-util 1.6.3-r1 apk +apr-util 1.6.4-r0 apk argon2-libs 20190702-r5 apk autocommand 2.2.2 python azure-common 1.1.28 python @@ -23,8 +23,8 @@ azure-mgmt-dns 9.0.0 python backports-tarfile 1.2.0 python bash 5.2.37-r0 apk beautifulsoup4 4.15.0 python -boto3 1.43.67 python -botocore 1.43.67 python +boto3 1.43.72 python +botocore 1.43.72 python brotli-libs 1.1.0-r2 apk bs4 0.0.2 python busybox 1.37.0-r20 apk @@ -50,7 +50,7 @@ certbot-dns-dnspod 0.1.0 python certbot-dns-do 0.31.0 python certbot-dns-domeneshop 0.2.9 python certbot-dns-dreamhost 1.0 python -certbot-dns-duckdns 1.8.0 python +certbot-dns-duckdns 1.9.0 python certbot-dns-dynudns 0.0.6 python certbot-dns-freedns 0.2.0 python certbot-dns-gehirn 5.7.0 python @@ -60,7 +60,7 @@ certbot-dns-google 5.7.0 python certbot-dns-he 1.0.0 python certbot-dns-hetzner 4.0.0 python certbot-dns-hetzner-cloud 1.0.5 python -certbot-dns-infomaniak 0.2.4 python +certbot-dns-infomaniak 0.3.2 python certbot-dns-inwx 3.0.3 python certbot-dns-ionos 2024.11.9 python certbot-dns-linode 5.7.0 python @@ -105,7 +105,7 @@ domeneshop 0.4.4 python fail2ban 1.1.0 python fail2ban 1.1.0-r3 apk fail2ban-pyc 1.1.0-r3 apk -filelock 3.32.2 python +filelock 3.32.3 python findutils 4.10.0-r0 apk fontconfig 2.15.0-r3 apk freetype 2.13.3-r0 apk @@ -364,12 +364,12 @@ soupsieve 2.9.2 python sqlite-libs 3.49.2-r1 apk ssl_client 1.37.0-r20 apk tiff 4.7.1-r0 apk -tldextract 5.3.1 python +tldextract 5.3.2 python tomli 2.0.1 python typeguard 4.3.0 python typing-extensions 4.12.2 python typing-extensions 4.16.0 python -typing-inspection 0.4.2 python +typing-inspection 0.4.4 python tzdata 2026c-r0 apk unixodbc 2.3.12-r0 apk uritemplate 4.2.0 python From 0b432781514ddf2bbf48753c176497ff1936c371 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 16 Aug 2026 15:11:31 +0000 Subject: [PATCH 08/14] Bot Updating Templated Files --- readme-vars.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme-vars.yml b/readme-vars.yml index 5c7d270..d1da599 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -215,7 +215,7 @@ init_diagram: | svc-swag-auto-reload -> legacy-services } Base Images: { - "baseimage-alpine-nginx:3.22" <- "baseimage-alpine:3.22" + "baseimage-alpine-nginx:3.24" <- "baseimage-alpine:3.24" } "swag:latest" <- Base Images # changelog From 478c1fa9640c329dcbd2f1e922e490d720daae9b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 16 Aug 2026 15:17:05 +0000 Subject: [PATCH 09/14] Bot Updating Templated Files --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index d039eb6..afda872 100644 --- a/README.md +++ b/README.md @@ -436,6 +436,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions +* **19.07.26:** - Rebase to Alpine 3.24 with PHP 8.5. * **10.07.26:** - Add support for Let's Encrypt cert profiles. Run certbot twice daily with a random delay. * **19.06.26:** - Add support for mijn.host dns validation. * **01.06.26:** - Remove obsolete old cert check logic. From f86ef34abd881abe36677b863a8d5f4e22009a91 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 16 Aug 2026 15:24:50 +0000 Subject: [PATCH 10/14] Bot Updating Package Versions --- package_versions.txt | 767 +++++++++++++++++++++---------------------- 1 file changed, 382 insertions(+), 385 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 895755d..3707a9c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,385 +1,382 @@ -NAME VERSION TYPE -Simple Launcher 1.1.0.14 binary (+5 duplicates) -acl-libs 2.3.2-r1 apk -acme 5.7.0 python -alpine-baselayout 3.7.0-r0 apk -alpine-baselayout-data 3.7.0-r0 apk -alpine-keys 2.5-r0 apk -alpine-release 3.22.5-r0 apk -annotated-types 0.8.0 python -anyio 4.14.2 python -aom-libs 3.12.1-r0 apk -apache2-utils 2.4.68-r0 apk -apk-tools 2.14.10-r0 apk -apr 1.7.5-r0 apk -apr-util 1.6.4-r0 apk -argon2-libs 20190702-r5 apk -autocommand 2.2.2 python -azure-common 1.1.28 python -azure-core 1.41.0 python -azure-identity 1.25.3 python -azure-mgmt-core 1.6.0 python -azure-mgmt-dns 9.0.0 python -backports-tarfile 1.2.0 python -bash 5.2.37-r0 apk -beautifulsoup4 4.15.0 python -boto3 1.43.72 python -botocore 1.43.72 python -brotli-libs 1.1.0-r2 apk -bs4 0.0.2 python -busybox 1.37.0-r20 apk -busybox-binsh 1.37.0-r20 apk -c-ares 1.34.8-r0 apk -c-client 2007f-r15 apk -ca-certificates 20260611-r0 apk -ca-certificates-bundle 20260611-r0 apk -catatonit 0.2.1-r0 apk -certbot 5.7.0 python -certbot-dns-acmedns 0.1.0 python -certbot-dns-aliyun 2.0.0 python -certbot-dns-azure 1.5.0 python -certbot-dns-bunny 3.0.0 python -certbot-dns-cloudflare 5.7.0 python -certbot-dns-cpanel 0.4.0 python -certbot-dns-desec 1.3.2 python -certbot-dns-digitalocean 5.7.0 python -certbot-dns-directadmin 1.0.15 python -certbot-dns-dnsimple 5.7.0 python -certbot-dns-dnsmadeeasy 5.7.0 python -certbot-dns-dnspod 0.1.0 python -certbot-dns-do 0.31.0 python -certbot-dns-domeneshop 0.2.9 python -certbot-dns-dreamhost 1.0 python -certbot-dns-duckdns 1.9.0 python -certbot-dns-dynudns 0.0.6 python -certbot-dns-freedns 0.2.0 python -certbot-dns-gehirn 5.7.0 python -certbot-dns-glesys 2.1.0 python -certbot-dns-godaddy 2.8.0 python -certbot-dns-google 5.7.0 python -certbot-dns-he 1.0.0 python -certbot-dns-hetzner 4.0.0 python -certbot-dns-hetzner-cloud 1.0.5 python -certbot-dns-infomaniak 0.3.2 python -certbot-dns-inwx 3.0.3 python -certbot-dns-ionos 2024.11.9 python -certbot-dns-linode 5.7.0 python -certbot-dns-loopia 1.0.1 python -certbot-dns-luadns 5.7.0 python -certbot-dns-mijn-host 0.0.9 python -certbot-dns-namecheap 1.0.0 python -certbot-dns-netcup 2.0.3 python -certbot-dns-njalla 2.0.2 python -certbot-dns-nsone 5.7.0 python -certbot-dns-ovh 5.7.0 python -certbot-dns-porkbun 0.11.0 python -certbot-dns-rfc2136 5.7.0 python -certbot-dns-route53 5.7.0 python -certbot-dns-sakuracloud 5.7.0 python -certbot-dns-standalone 1.2.1 python -certbot-dns-transip 0.5.2 python -certbot-dns-vultr 1.1.0 python -certbot-plugin-gandi 1.5.0 python -certifi 2024.8.30 python -cffi 1.17.0 python -charset-normalizer 3.3.2 python -cli UNKNOWN binary -cli-32 UNKNOWN binary -cli-64 UNKNOWN binary -cli-arm64 UNKNOWN binary -cloudflare 5.6.0 python -composer 2.10.2 binary -configargparse 1.7 python -configobj 5.0.8 python -coreutils 9.7-r1 apk -coreutils-env 9.7-r1 apk -coreutils-fmt 9.7-r1 apk -coreutils-sha512sum 9.7-r1 apk -cryptography 46.0.0 python -curl 8.14.1-r3 apk -distro 1.9.0 python -dns-lexicon 3.25.2 python -dnslib 0.9.26 python -dnspython 2.8.0 python -domeneshop 0.4.4 python -fail2ban 1.1.0 python -fail2ban 1.1.0-r3 apk -fail2ban-pyc 1.1.0-r3 apk -filelock 3.32.3 python -findutils 4.10.0-r0 apk -fontconfig 2.15.0-r3 apk -freetype 2.13.3-r0 apk -future 1.0.0 python -gdbm 1.24-r0 apk -git 2.49.1-r0 apk -git-init-template 2.49.1-r0 apk -git-perl 2.49.1-r0 apk -gmp 6.3.0-r3 apk -gnupg 2.4.9-r0 apk -gnupg-dirmngr 2.4.9-r0 apk -gnupg-gpgconf 2.4.9-r0 apk -gnupg-keyboxd 2.4.9-r0 apk -gnupg-utils 2.4.9-r0 apk -gnupg-wks-client 2.4.9-r0 apk -gnutls 3.8.13-r0 apk -google-api-core 2.30.3 python -google-api-python-client 2.198.0 python -google-auth 2.56.3 python -google-auth-httplib2 0.4.1 python -googleapis-common-protos 1.75.1 python -gpg 2.4.9-r0 apk -gpg-agent 2.4.9-r0 apk -gpg-wks-server 2.4.9-r0 apk -gpgsm 2.4.9-r0 apk -gpgv 2.4.9-r0 apk -gui UNKNOWN binary -gui-32 UNKNOWN binary -gui-64 UNKNOWN binary -gui-arm64 UNKNOWN binary -h11 0.16.0 python -hcloud 2.23.0 python -httpcore 1.0.9 python -httplib2 0.32.0 python -httpx 0.28.1 python -icu-data-en 76.1-r1 apk -icu-libs 76.1-r1 apk -idna 3.8 python -importlib-metadata 8.0.0 python -importlib-resources 6.4.0 python -inflect 7.3.1 python -inotify-tools 4.23.9.0-r0 apk -inotify-tools-libs 4.23.9.0-r0 apk -inwx-domrobot 3.2.0 python -iptables 1.8.11-r1 apk -iptables-legacy 1.8.11-r1 apk -isodate 0.7.2 python -jaraco-context 5.3.0 python -jaraco-functools 4.0.1 python -jaraco-text 3.12.1 python -jinja2 3.1.6 python -jmespath 1.1.0 python -josepy 2.2.0 python -jq 1.8.1-r0 apk -jsonpickle 4.1.2 python -libapk2 2.14.10-r0 apk -libassuan 2.5.7-r0 apk -libattr 2.5.2-r2 apk -libavif 1.3.0-r0 apk -libbsd 0.12.2-r0 apk -libbz2 1.0.8-r6 apk -libcrypto3 3.5.7-r0 apk -libcurl 8.14.1-r3 apk -libdav1d 1.5.1-r0 apk -libedit 20250104.3.1-r1 apk -libevent 2.1.13-r0 apk -libexpat 2.8.2-r0 apk -libffi 3.4.8-r0 apk -libgcc 14.2.0-r6 apk -libgcrypt 1.10.3-r1 apk -libgd 2.3.3-r10 apk -libgpg-error 1.55-r0 apk -libice 1.1.2-r0 apk -libidn2 2.3.7-r0 apk -libintl 0.24.1-r0 apk -libip4tc 1.8.11-r1 apk -libip6tc 1.8.11-r1 apk -libjpeg-turbo 3.1.0-r0 apk -libksba 1.6.7-r0 apk -libldap 2.6.8-r0 apk -libmaxminddb-libs 1.9.1-r0 apk -libmd 1.1.0-r0 apk -libmemcached-libs 1.1.4-r1 apk -libmnl 1.0.5-r2 apk -libncursesw 6.5_p20250503-r0 apk -libnftnl 1.2.9-r0 apk -libpanelw 6.5_p20250503-r0 apk -libpng 1.6.57-r0 apk -libpq 17.10-r0 apk -libproc2 4.0.4-r3 apk -libpsl 0.21.5-r3 apk -libsasl 2.1.28-r8 apk -libseccomp 2.6.0-r0 apk -libsharpyuv 1.5.0-r0 apk -libsm 1.2.5-r0 apk -libsodium 1.0.20-r1 apk -libssl3 3.5.7-r0 apk -libstdc++ 14.2.0-r6 apk -libtasn1 4.21.0-r0 apk -libunistring 1.3-r0 apk -libuuid 2.41-r9 apk -libwebp 1.5.0-r0 apk -libx11 1.8.11-r0 apk -libxau 1.0.12-r0 apk -libxcb 1.17.0-r0 apk -libxdmcp 1.1.5-r1 apk -libxext 1.3.6-r2 apk -libxml2 2.13.9-r1 apk -libxpm 3.5.19-r0 apk -libxslt 1.1.43-r3 apk -libxt 1.3.1-r0 apk -libxtables 1.8.11-r1 apk -libyuv 0.0.1887.20251502-r1 apk -libzip 1.11.4-r0 apk -linux-pam 1.7.0-r4 apk -logrotate 3.21.0-r1 apk -loopialib 0.2.0 python -lxml 6.1.1 python -lz4-libs 1.10.0-r0 apk -markupsafe 3.0.3 python -memcached 1.6.32-r0 apk -mock 5.2.0 python -more-itertools 10.3.0 python -mpdecimal 4.0.1-r0 apk -msal 1.37.0 python -msal-extensions 1.3.1 python -musl 1.2.5-r12 apk -musl-utils 1.2.5-r12 apk -my-test-package 1.0 python -nano 8.4-r0 apk -ncurses-terminfo-base 6.5_p20250503-r0 apk -netcat-openbsd 1.229.1-r0 apk -nettle 3.10.2-r0 apk -nghttp2-libs 1.69.0-r0 apk -nginx 1.28.3-r7 apk -nginx-mod-devel-kit 1.28.3-r7 apk -nginx-mod-http-brotli 1.28.3-r7 apk -nginx-mod-http-dav-ext 1.28.3-r7 apk -nginx-mod-http-echo 1.28.3-r7 apk -nginx-mod-http-fancyindex 1.28.3-r7 apk -nginx-mod-http-geoip2 1.28.3-r7 apk -nginx-mod-http-headers-more 1.28.3-r7 apk -nginx-mod-http-image-filter 1.28.3-r7 apk -nginx-mod-http-perl 1.28.3-r7 apk -nginx-mod-http-redis2 1.28.3-r7 apk -nginx-mod-http-set-misc 1.28.3-r7 apk -nginx-mod-http-upload-progress 1.28.3-r7 apk -nginx-mod-http-xslt-filter 1.28.3-r7 apk -nginx-mod-mail 1.28.3-r7 apk -nginx-mod-rtmp 1.28.3-r7 apk -nginx-mod-stream 1.28.3-r7 apk -nginx-mod-stream-geoip2 1.28.3-r7 apk -nginx-vim 1.28.3-r7 apk -npth 1.8-r0 apk -oniguruma 6.9.10-r0 apk -openssl 3.5.7-r0 apk -p11-kit 0.26.2-r0 apk -packaging 24.1 python -packaging 26.3 python -parsedatetime 2.6 python -pcre2 10.46-r0 apk -perl 5.40.4-r0 apk -perl-error 0.17030-r0 apk -perl-git 2.49.1-r0 apk -php84 8.4.16-r0 apk -php84-bcmath 8.4.16-r0 apk -php84-bz2 8.4.16-r0 apk -php84-common 8.4.16-r0 apk -php84-ctype 8.4.16-r0 apk -php84-curl 8.4.16-r0 apk -php84-dom 8.4.16-r0 apk -php84-exif 8.4.16-r0 apk -php84-fileinfo 8.4.16-r0 apk -php84-fpm 8.4.16-r0 apk -php84-ftp 8.4.16-r0 apk -php84-gd 8.4.16-r0 apk -php84-gmp 8.4.16-r0 apk -php84-iconv 8.4.16-r0 apk -php84-intl 8.4.16-r0 apk -php84-ldap 8.4.16-r0 apk -php84-mbstring 8.4.16-r0 apk -php84-mysqli 8.4.16-r0 apk -php84-mysqlnd 8.4.16-r0 apk -php84-opcache 8.4.16-r0 apk -php84-openssl 8.4.16-r0 apk -php84-pdo 8.4.16-r0 apk -php84-pdo_mysql 8.4.16-r0 apk -php84-pdo_odbc 8.4.16-r0 apk -php84-pdo_pgsql 8.4.16-r0 apk -php84-pdo_sqlite 8.4.16-r0 apk -php84-pear 8.4.16-r0 apk -php84-pecl-apcu 5.1.27-r0 apk -php84-pecl-igbinary 3.2.16-r1 apk -php84-pecl-imap 1.0.3-r0 apk -php84-pecl-memcached 3.3.0-r0 apk -php84-pecl-msgpack 3.0.0-r0 apk -php84-pecl-redis 6.3.0-r0 apk -php84-pgsql 8.4.16-r0 apk -php84-phar 8.4.16-r0 apk -php84-posix 8.4.16-r0 apk -php84-session 8.4.16-r0 apk -php84-simplexml 8.4.16-r0 apk -php84-soap 8.4.16-r0 apk -php84-sockets 8.4.16-r0 apk -php84-sodium 8.4.16-r0 apk -php84-sqlite3 8.4.16-r0 apk -php84-tokenizer 8.4.16-r0 apk -php84-xml 8.4.16-r0 apk -php84-xmlreader 8.4.16-r0 apk -php84-xmlwriter 8.4.16-r0 apk -php84-xsl 8.4.16-r0 apk -php84-zip 8.4.16-r0 apk -pinentry 1.3.1-r0 apk -pip 26.2.1 python -pkb-client 2.3.1 python -platformdirs 4.2.2 python -popt 1.19-r4 apk -procps-ng 4.0.4-r3 apk -proto-plus 1.28.3 python -protobuf 7.35.1 python -pyacmedns 0.4 python -pyasn1 0.6.4 python -pyasn1-modules 0.4.2 python -pyc 3.12.13-r0 apk -pycparser 2.22 python -pydantic 2.13.4 python -pydantic-core 2.46.4 python -pyjwt 2.13.0 python -pynamecheap 0.0.3 python -pyopenssl 26.2.0 python -pyotp 2.10.0 python -pyparsing 3.3.2 python -pyrfc3339 1.1 python -python-dateutil 2.9.0.post0 python -python-digitalocean 1.17.0 python -python-transip 0.6.0 python -python3 3.12.13-r0 apk -python3-pyc 3.12.13-r0 apk -python3-pycache-pyc0 3.12.13-r0 apk -pytz 2024.1 python -pyyaml 6.0.3 python -readline 8.2.13-r1 apk -requests 2.32.3 python -requests-file 3.0.1 python -requests-mock 1.12.1 python -requests-unixsocket 0.4.1 python -ruff 0.6.3 python -s3transfer 0.19.2 python -scanelf 1.3.8-r1 apk -setuptools 74.0.0 python -shadow 4.17.3-r0 apk -six 1.16.0 python -skalibs-libs 2.14.4.0-r0 apk -sniffio 1.3.1 python -soupsieve 2.9.2 python -sqlite-libs 3.49.2-r1 apk -ssl_client 1.37.0-r20 apk -tiff 4.7.1-r0 apk -tldextract 5.3.2 python -tomli 2.0.1 python -typeguard 4.3.0 python -typing-extensions 4.12.2 python -typing-extensions 4.16.0 python -typing-inspection 0.4.4 python -tzdata 2026c-r0 apk -unixodbc 2.3.12-r0 apk -uritemplate 4.2.0 python -urllib3 2.2.2 python -utmps-libs 0.1.3.1-r0 apk -wheel 0.43.0 python -wheel 0.44.0 python -whois 5.6.3-r0 apk -xz-libs 5.8.3-r0 apk -zipp 3.19.2 python -zlib 1.3.2-r0 apk -zope-interface 8.5 python -zstd-libs 1.5.7-r0 apk +NAME VERSION TYPE +Simple Launcher 1.1.0.14 binary (+5 duplicates) +acl-libs 2.3.2-r1 apk +acme 5.7.0 python +alpine-baselayout 3.7.2-r1 apk +alpine-baselayout-data 3.7.2-r1 apk +alpine-keys 2.6-r0 apk +alpine-release 3.24.1-r0 apk +annotated-types 0.8.0 python +anyio 4.14.2 python +aom-libs 3.14.1-r0 apk +apache2-utils 2.4.68-r0 apk +apk-tools 3.0.7-r0 apk +apr 1.7.6-r0 apk +apr-util 1.6.4-r0 apk +argon2-libs 20190702-r5 apk +autocommand 2.2.2 python +azure-common 1.1.28 python +azure-core 1.41.0 python +azure-identity 1.25.3 python +azure-mgmt-core 1.6.0 python +azure-mgmt-dns 9.0.0 python +backports-tarfile 1.2.0 python +bash 5.3.9-r1 apk +beautifulsoup4 4.15.0 python +boto3 1.43.72 python +botocore 1.43.72 python +brotli-libs 1.2.0-r1 apk +bs4 0.0.2 python +busybox 1.37.0-r31 apk +busybox-binsh 1.37.0-r31 apk +c-ares 1.34.8-r0 apk +ca-certificates 20260611-r0 apk +ca-certificates-bundle 20260611-r0 apk +catatonit 0.2.1-r0 apk +certbot 5.7.0 python +certbot-dns-acmedns 0.1.0 python +certbot-dns-aliyun 2.0.0 python +certbot-dns-azure 1.5.0 python +certbot-dns-bunny 3.0.0 python +certbot-dns-cloudflare 5.7.0 python +certbot-dns-cpanel 0.4.0 python +certbot-dns-desec 1.3.2 python +certbot-dns-digitalocean 5.7.0 python +certbot-dns-directadmin 1.0.15 python +certbot-dns-dnsimple 5.7.0 python +certbot-dns-dnsmadeeasy 5.7.0 python +certbot-dns-dnspod 0.1.0 python +certbot-dns-do 0.31.0 python +certbot-dns-domeneshop 0.2.9 python +certbot-dns-dreamhost 1.0 python +certbot-dns-duckdns 1.9.0 python +certbot-dns-dynudns 0.0.6 python +certbot-dns-freedns 0.2.0 python +certbot-dns-gehirn 5.7.0 python +certbot-dns-glesys 2.1.0 python +certbot-dns-godaddy 2.8.0 python +certbot-dns-google 5.7.0 python +certbot-dns-he 1.0.0 python +certbot-dns-hetzner 4.0.0 python +certbot-dns-hetzner-cloud 1.0.5 python +certbot-dns-infomaniak 0.3.2 python +certbot-dns-inwx 3.0.3 python +certbot-dns-ionos 2024.11.9 python +certbot-dns-linode 5.7.0 python +certbot-dns-loopia 1.0.1 python +certbot-dns-luadns 5.7.0 python +certbot-dns-mijn-host 0.0.9 python +certbot-dns-namecheap 1.0.0 python +certbot-dns-netcup 2.0.3 python +certbot-dns-njalla 2.0.2 python +certbot-dns-nsone 5.7.0 python +certbot-dns-ovh 5.7.0 python +certbot-dns-porkbun 0.11.0 python +certbot-dns-rfc2136 5.7.0 python +certbot-dns-route53 5.7.0 python +certbot-dns-sakuracloud 5.7.0 python +certbot-dns-standalone 1.2.1 python +certbot-dns-transip 0.5.2 python +certbot-dns-vultr 1.1.0 python +certbot-plugin-gandi 1.5.0 python +certifi 2024.8.30 python +cffi 1.17.0 python +charset-normalizer 3.3.2 python +cli UNKNOWN binary +cli-32 UNKNOWN binary +cli-64 UNKNOWN binary +cli-arm64 UNKNOWN binary +cloudflare 5.6.0 python +composer 2.10.2 binary +configargparse 1.7 python +configobj 5.0.8 python +coreutils 9.11-r0 apk +coreutils-env 9.11-r0 apk +coreutils-fmt 9.11-r0 apk +coreutils-sha512sum 9.11-r0 apk +cryptography 45.0.7 python +curl 8.21.0-r0 apk +distro 1.9.0 python +dns-lexicon 3.25.2 python +dnslib 0.9.26 python +dnspython 2.8.0 python +domeneshop 0.4.4 python +fail2ban 1.1.0 python +fail2ban 1.1.0-r3 apk +fail2ban-pyc 1.1.0-r3 apk +filelock 3.32.3 python +findutils 4.10.0-r1 apk +fontconfig 2.17.1-r1 apk +freetype 2.14.3-r0 apk +future 1.0.0 python +gdbm 1.26-r0 apk +git 2.54.0-r0 apk +git-init-template 2.54.0-r0 apk +git-perl 2.54.0-r0 apk +gmp 6.3.0-r4 apk +gnupg 2.4.9-r1 apk +gnupg-dirmngr 2.4.9-r1 apk +gnupg-gpgconf 2.4.9-r1 apk +gnupg-keyboxd 2.4.9-r1 apk +gnupg-utils 2.4.9-r1 apk +gnupg-wks-client 2.4.9-r1 apk +gnutls 3.8.13-r0 apk +google-api-core 2.30.3 python +google-api-python-client 2.198.0 python +google-auth 2.56.3 python +google-auth-httplib2 0.4.1 python +googleapis-common-protos 1.75.1 python +gpg 2.4.9-r1 apk +gpg-agent 2.4.9-r1 apk +gpg-wks-server 2.4.9-r1 apk +gpgsm 2.4.9-r1 apk +gpgv 2.4.9-r1 apk +gui UNKNOWN binary +gui-32 UNKNOWN binary +gui-64 UNKNOWN binary +gui-arm64 UNKNOWN binary +h11 0.16.0 python +hcloud 2.23.0 python +httpcore 1.0.9 python +httplib2 0.32.0 python +httpx 0.28.1 python +icu-data-en 78.1-r0 apk +icu-libs 78.1-r0 apk +idna 3.8 python +importlib-metadata 8.0.0 python +importlib-resources 6.4.0 python +inflect 7.3.1 python +inotify-tools 4.23.9.0-r0 apk +inotify-tools-libs 4.23.9.0-r0 apk +inwx-domrobot 3.2.0 python +iptables 1.8.13-r0 apk +iptables-legacy 1.8.13-r0 apk +isodate 0.7.2 python +jaraco-context 5.3.0 python +jaraco-functools 4.0.1 python +jaraco-text 3.12.1 python +jinja2 3.1.6 python +jmespath 1.1.0 python +josepy 2.2.0 python +jq 1.8.1-r0 apk +jsonpickle 4.1.2 python +libapk 3.0.7-r0 apk +libassuan 3.0.2-r0 apk +libattr 2.5.2-r2 apk +libavif 1.4.1-r0 apk +libbsd 0.12.2-r0 apk +libbz2 1.0.8-r6 apk +libcrypto3 3.5.7-r0 apk +libcurl 8.21.0-r0 apk +libdav1d 1.5.3-r0 apk +libedit 20260508.3.1-r1 apk +libevent 2.1.13-r0 apk +libexpat 2.8.2-r0 apk +libffi 3.5.2-r1 apk +libgcc 15.2.0-r5 apk +libgcrypt 1.12.2-r0 apk +libgd 2.3.3-r10 apk +libgpg-error 1.61-r0 apk +libice 1.1.2-r0 apk +libidn2 2.3.8-r0 apk +libintl 1.0-r0 apk +libip4tc 1.8.13-r0 apk +libip6tc 1.8.13-r0 apk +libjpeg-turbo 3.1.3-r0 apk +libksba 1.7.0-r0 apk +libldap 2.6.14-r0 apk +libmaxminddb-libs 1.13.3-r0 apk +libmd 1.2.0-r0 apk +libmemcached-libs 1.1.4-r1 apk +libmnl 1.0.5-r2 apk +libncursesw 6.6_p20260516-r0 apk +libnftnl 1.3.1-r0 apk +libpanelw 6.6_p20260516-r0 apk +libpng 1.6.58-r1 apk +libpq 18.6-r0 apk +libproc2 4.0.6-r0 apk +libpsl 0.21.5-r3 apk +libsasl 2.1.28-r9 apk +libseccomp 2.6.0-r2 apk +libsharpyuv 1.6.0-r0 apk +libsm 1.2.6-r0 apk +libsodium 1.0.22-r0 apk +libssl3 3.5.7-r0 apk +libstdc++ 15.2.0-r5 apk +libtasn1 4.21.0-r0 apk +libunistring 1.4.2-r0 apk +libuuid 2.42.1-r0 apk +libwebp 1.6.0-r0 apk +libx11 1.8.13-r0 apk +libxau 1.0.12-r0 apk +libxcb 1.17.0-r2 apk +libxdmcp 1.1.5-r1 apk +libxext 1.3.7-r0 apk +libxml2 2.13.9-r2 apk +libxpm 3.5.19-r0 apk +libxslt 1.1.43-r3 apk +libxt 1.3.1-r0 apk +libxtables 1.8.13-r0 apk +libyuv 0.0.1928-r0 apk +libzip 1.11.4-r2 apk +linux-pam 1.7.1-r2 apk +logrotate 3.22.0-r0 apk +loopialib 0.2.0 python +lxml 6.1.1 python +lz4-libs 1.10.0-r1 apk +markupsafe 3.0.3 python +memcached 1.6.42-r0 apk +mock 5.2.0 python +more-itertools 10.3.0 python +mpdecimal 4.0.1-r0 apk +msal 1.37.0 python +msal-extensions 1.3.1 python +musl 1.2.6-r2 apk +musl-utils 1.2.6-r2 apk +my-test-package 1.0 python +nano 9.2-r0 apk +ncurses-terminfo-base 6.6_p20260516-r0 apk +netcat-openbsd 1.234.1-r0 apk +nettle 3.10.2-r0 apk +nghttp2-libs 1.69.0-r0 apk +nginx 1.30.4-r1 apk +nginx-mod-devel-kit 1.30.4-r1 apk +nginx-mod-http-brotli 1.30.4-r1 apk +nginx-mod-http-dav-ext 1.30.4-r1 apk +nginx-mod-http-echo 1.30.4-r1 apk +nginx-mod-http-fancyindex 1.30.4-r1 apk +nginx-mod-http-geoip2 1.30.4-r1 apk +nginx-mod-http-headers-more 1.30.4-r1 apk +nginx-mod-http-image-filter 1.30.4-r1 apk +nginx-mod-http-perl 1.30.4-r1 apk +nginx-mod-http-redis2 1.30.4-r1 apk +nginx-mod-http-set-misc 1.30.4-r1 apk +nginx-mod-http-upload-progress 1.30.4-r1 apk +nginx-mod-http-xslt-filter 1.30.4-r1 apk +nginx-mod-mail 1.30.4-r1 apk +nginx-mod-rtmp 1.30.4-r1 apk +nginx-mod-stream 1.30.4-r1 apk +nginx-mod-stream-geoip2 1.30.4-r1 apk +nginx-vim 1.30.4-r1 apk +npth 1.8-r0 apk +oniguruma 6.9.10-r0 apk +openssl 3.5.7-r0 apk +p11-kit 0.26.2-r0 apk +packaging 24.1 python +packaging 26.3 python +parsedatetime 2.6 python +pcre2 10.47-r1 apk +perl 5.42.2-r0 apk +perl-error 0.17030-r0 apk +perl-git 2.54.0-r0 apk +php85 8.5.9-r0 apk +php85-bcmath 8.5.9-r0 apk +php85-bz2 8.5.9-r0 apk +php85-common 8.5.9-r0 apk +php85-ctype 8.5.9-r0 apk +php85-curl 8.5.9-r0 apk +php85-dom 8.5.9-r0 apk +php85-exif 8.5.9-r0 apk +php85-fileinfo 8.5.9-r0 apk +php85-fpm 8.5.9-r0 apk +php85-ftp 8.5.9-r0 apk +php85-gd 8.5.9-r0 apk +php85-gmp 8.5.9-r0 apk +php85-iconv 8.5.9-r0 apk +php85-intl 8.5.9-r0 apk +php85-ldap 8.5.9-r0 apk +php85-mbstring 8.5.9-r0 apk +php85-mysqli 8.5.9-r0 apk +php85-mysqlnd 8.5.9-r0 apk +php85-openssl 8.5.9-r0 apk +php85-pdo 8.5.9-r0 apk +php85-pdo_mysql 8.5.9-r0 apk +php85-pdo_odbc 8.5.9-r0 apk +php85-pdo_pgsql 8.5.9-r0 apk +php85-pdo_sqlite 8.5.9-r0 apk +php85-pear 8.5.9-r0 apk +php85-pecl-apcu 5.1.28-r0 apk +php85-pecl-igbinary 3.2.17_rc1-r0 apk +php85-pecl-memcached 3.4.0-r0 apk +php85-pecl-msgpack 3.0.1-r0 apk +php85-pecl-redis 6.3.0-r0 apk +php85-pgsql 8.5.9-r0 apk +php85-phar 8.5.9-r0 apk +php85-posix 8.5.9-r0 apk +php85-session 8.5.9-r0 apk +php85-simplexml 8.5.9-r0 apk +php85-soap 8.5.9-r0 apk +php85-sockets 8.5.9-r0 apk +php85-sodium 8.5.9-r0 apk +php85-sqlite3 8.5.9-r0 apk +php85-tokenizer 8.5.9-r0 apk +php85-xml 8.5.9-r0 apk +php85-xmlreader 8.5.9-r0 apk +php85-xmlwriter 8.5.9-r0 apk +php85-xsl 8.5.9-r0 apk +php85-zip 8.5.9-r0 apk +pinentry 1.3.2-r0 apk +pip 26.2.1 python +pkb-client 2.3.1 python +platformdirs 4.2.2 python +popt 1.19-r4 apk +procps-ng 4.0.6-r0 apk +proto-plus 1.28.3 python +protobuf 7.35.1 python +pyacmedns 0.4 python +pyasn1 0.6.4 python +pyasn1-modules 0.4.2 python +pyc 3.14.7-r1 apk +pycparser 2.22 python +pydantic 2.13.4 python +pydantic-core 2.46.4 python +pyjwt 2.13.0 python +pynamecheap 0.0.3 python +pyopenssl 25.3.0 python +pyotp 2.10.0 python +pyparsing 3.3.2 python +pyrfc3339 1.1 python +python-dateutil 2.9.0.post0 python +python-digitalocean 1.17.0 python +python-transip 0.6.0 python +python3 3.14.7-r1 apk +python3-pyc 3.14.7-r1 apk +python3-pycache-pyc0 3.14.7-r1 apk +pytz 2024.1 python +pyyaml 6.0.3 python +readline 8.3.3-r1 apk +requests 2.32.3 python +requests-file 3.0.1 python +requests-mock 1.12.1 python +requests-unixsocket 0.4.1 python +ruff 0.6.3 python +s3transfer 0.19.2 python +scanelf 1.3.9-r1 apk +setuptools 74.0.0 python +shadow 4.18.0-r1 apk +six 1.16.0 python +skalibs-libs 2.15.0.0-r0 apk +sniffio 1.3.1 python +soupsieve 2.9.2 python +sqlite-libs 3.53.2-r0 apk +ssl_client 1.37.0-r31 apk +tiff 4.7.1-r0 apk +tldextract 5.3.2 python +tomli 2.0.1 python +typeguard 4.3.0 python +typing-extensions 4.12.2 python +typing-extensions 4.16.0 python +typing-inspection 0.4.4 python +tzdata 2026c-r0 apk +unixodbc 2.3.14-r1 apk +uritemplate 4.2.0 python +urllib3 2.2.2 python +utmps-libs 0.1.3.3-r0 apk +wheel 0.43.0 python +wheel 0.44.0 python +whois 5.6.6-r0 apk +xz-libs 5.8.3-r0 apk +zipp 3.19.2 python +zlib 1.3.2-r0 apk +zope-interface 8.5 python +zstd-libs 1.5.7-r2 apk From 671b9697be45d09569c7a8e8b78535aa7ad7fdd5 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 22 Aug 2026 03:46:57 +0000 Subject: [PATCH 11/14] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 3707a9c..9e20562 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -23,8 +23,8 @@ azure-mgmt-dns 9.0.0 python backports-tarfile 1.2.0 python bash 5.3.9-r1 apk beautifulsoup4 4.15.0 python -boto3 1.43.72 python -botocore 1.43.72 python +boto3 1.43.78 python +botocore 1.43.78 python brotli-libs 1.2.0-r1 apk bs4 0.0.2 python busybox 1.37.0-r31 apk @@ -122,7 +122,7 @@ gnupg-utils 2.4.9-r1 apk gnupg-wks-client 2.4.9-r1 apk gnutls 3.8.13-r0 apk google-api-core 2.30.3 python -google-api-python-client 2.198.0 python +google-api-python-client 2.199.0 python google-auth 2.56.3 python google-auth-httplib2 0.4.1 python googleapis-common-protos 1.75.1 python @@ -171,7 +171,7 @@ libcurl 8.21.0-r0 apk libdav1d 1.5.3-r0 apk libedit 20260508.3.1-r1 apk libevent 2.1.13-r0 apk -libexpat 2.8.2-r0 apk +libexpat 2.8.3-r0 apk libffi 3.5.2-r1 apk libgcc 15.2.0-r5 apk libgcrypt 1.12.2-r0 apk @@ -222,7 +222,7 @@ libzip 1.11.4-r2 apk linux-pam 1.7.1-r2 apk logrotate 3.22.0-r0 apk loopialib 0.2.0 python -lxml 6.1.1 python +lxml 6.1.2 python lz4-libs 1.10.0-r1 apk markupsafe 3.0.3 python memcached 1.6.42-r0 apk @@ -322,7 +322,7 @@ platformdirs 4.2.2 python popt 1.19-r4 apk procps-ng 4.0.6-r0 apk proto-plus 1.28.3 python -protobuf 7.35.1 python +protobuf 7.36.0 python pyacmedns 0.4 python pyasn1 0.6.4 python pyasn1-modules 0.4.2 python @@ -358,7 +358,7 @@ six 1.16.0 python skalibs-libs 2.15.0.0-r0 apk sniffio 1.3.1 python soupsieve 2.9.2 python -sqlite-libs 3.53.2-r0 apk +sqlite-libs 3.53.4-r0 apk ssl_client 1.37.0-r31 apk tiff 4.7.1-r0 apk tldextract 5.3.2 python @@ -378,5 +378,5 @@ whois 5.6.6-r0 apk xz-libs 5.8.3-r0 apk zipp 3.19.2 python zlib 1.3.2-r0 apk -zope-interface 8.5 python +zope-interface 8.6 python zstd-libs 1.5.7-r2 apk From 00c7817e5078e13fe5c00d65ce774171a1e91f87 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 29 Aug 2026 09:53:31 +0000 Subject: [PATCH 12/14] Bot Updating Package Versions --- package_versions.txt | 91 ++++++++++++++++++++------------------------ 1 file changed, 42 insertions(+), 49 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 9e20562..e4acf23 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -23,8 +23,8 @@ azure-mgmt-dns 9.0.0 python backports-tarfile 1.2.0 python bash 5.3.9-r1 apk beautifulsoup4 4.15.0 python -boto3 1.43.78 python -botocore 1.43.78 python +boto3 1.43.83 python +botocore 1.43.83 python brotli-libs 1.2.0-r1 apk bs4 0.0.2 python busybox 1.37.0-r31 apk @@ -59,13 +59,13 @@ certbot-dns-google 5.7.0 python certbot-dns-he 1.0.0 python certbot-dns-hetzner 4.0.0 python certbot-dns-hetzner-cloud 1.0.5 python -certbot-dns-infomaniak 0.3.2 python +certbot-dns-infomaniak 0.3.3 python certbot-dns-inwx 3.0.3 python certbot-dns-ionos 2024.11.9 python certbot-dns-linode 5.7.0 python certbot-dns-loopia 1.0.1 python certbot-dns-luadns 5.7.0 python -certbot-dns-mijn-host 0.0.9 python +certbot-dns-mijn-host 0.0.10 python certbot-dns-namecheap 1.0.0 python certbot-dns-netcup 2.0.3 python certbot-dns-njalla 2.0.2 python @@ -79,22 +79,22 @@ certbot-dns-standalone 1.2.1 python certbot-dns-transip 0.5.2 python certbot-dns-vultr 1.1.0 python certbot-plugin-gandi 1.5.0 python -certifi 2024.8.30 python -cffi 1.17.0 python -charset-normalizer 3.3.2 python +certifi 2026.7.22 python +cffi 2.1.1 python +charset-normalizer 3.5.1 python cli UNKNOWN binary cli-32 UNKNOWN binary cli-64 UNKNOWN binary cli-arm64 UNKNOWN binary cloudflare 5.6.0 python -composer 2.10.2 binary -configargparse 1.7 python -configobj 5.0.8 python +composer 2.10.3 binary +configargparse 1.7.5 python +configobj 5.0.9 python coreutils 9.11-r0 apk coreutils-env 9.11-r0 apk coreutils-fmt 9.11-r0 apk coreutils-sha512sum 9.11-r0 apk -cryptography 45.0.7 python +cryptography 50.0.1 python curl 8.21.0-r0 apk distro 1.9.0 python dns-lexicon 3.25.2 python @@ -104,7 +104,7 @@ domeneshop 0.4.4 python fail2ban 1.1.0 python fail2ban 1.1.0-r3 apk fail2ban-pyc 1.1.0-r3 apk -filelock 3.32.3 python +filelock 3.32.4 python findutils 4.10.0-r1 apk fontconfig 2.17.1-r1 apk freetype 2.14.3-r0 apk @@ -121,11 +121,11 @@ gnupg-keyboxd 2.4.9-r1 apk gnupg-utils 2.4.9-r1 apk gnupg-wks-client 2.4.9-r1 apk gnutls 3.8.13-r0 apk -google-api-core 2.30.3 python +google-api-core 2.34.0 python google-api-python-client 2.199.0 python -google-auth 2.56.3 python -google-auth-httplib2 0.4.1 python -googleapis-common-protos 1.75.1 python +google-auth 2.57.0 python +google-auth-httplib2 0.4.2 python +googleapis-common-protos 1.75.2 python gpg 2.4.9-r1 apk gpg-agent 2.4.9-r1 apk gpg-wks-server 2.4.9-r1 apk @@ -142,19 +142,17 @@ httplib2 0.32.0 python httpx 0.28.1 python icu-data-en 78.1-r0 apk icu-libs 78.1-r0 apk -idna 3.8 python -importlib-metadata 8.0.0 python -importlib-resources 6.4.0 python -inflect 7.3.1 python +idna 3.19 python +importlib-metadata 8.7.1 python inotify-tools 4.23.9.0-r0 apk inotify-tools-libs 4.23.9.0-r0 apk inwx-domrobot 3.2.0 python iptables 1.8.13-r0 apk iptables-legacy 1.8.13-r0 apk isodate 0.7.2 python -jaraco-context 5.3.0 python -jaraco-functools 4.0.1 python -jaraco-text 3.12.1 python +jaraco-context 6.1.0 python +jaraco-functools 4.4.0 python +jaraco-text 4.0.0 python jinja2 3.1.6 python jmespath 1.1.0 python josepy 2.2.0 python @@ -166,7 +164,7 @@ libattr 2.5.2-r2 apk libavif 1.4.1-r0 apk libbsd 0.12.2-r0 apk libbz2 1.0.8-r6 apk -libcrypto3 3.5.7-r0 apk +libcrypto3 3.5.8-r0 apk libcurl 8.21.0-r0 apk libdav1d 1.5.3-r0 apk libedit 20260508.3.1-r1 apk @@ -201,7 +199,7 @@ libseccomp 2.6.0-r2 apk libsharpyuv 1.6.0-r0 apk libsm 1.2.6-r0 apk libsodium 1.0.22-r0 apk -libssl3 3.5.7-r0 apk +libssl3 3.5.8-r0 apk libstdc++ 15.2.0-r5 apk libtasn1 4.21.0-r0 apk libunistring 1.4.2-r0 apk @@ -227,13 +225,12 @@ lz4-libs 1.10.0-r1 apk markupsafe 3.0.3 python memcached 1.6.42-r0 apk mock 5.2.0 python -more-itertools 10.3.0 python +more-itertools 10.8.0 python mpdecimal 4.0.1-r0 apk -msal 1.37.0 python +msal 1.38.0 python msal-extensions 1.3.1 python musl 1.2.6-r2 apk musl-utils 1.2.6-r2 apk -my-test-package 1.0 python nano 9.2-r0 apk ncurses-terminfo-base 6.6_p20260516-r0 apk netcat-openbsd 1.234.1-r0 apk @@ -260,9 +257,9 @@ nginx-mod-stream-geoip2 1.30.4-r1 apk nginx-vim 1.30.4-r1 apk npth 1.8-r0 apk oniguruma 6.9.10-r0 apk -openssl 3.5.7-r0 apk +openssl 3.5.8-r0 apk p11-kit 0.26.2-r0 apk -packaging 24.1 python +packaging 26.0 python packaging 26.3 python parsedatetime 2.6 python pcre2 10.47-r1 apk @@ -318,43 +315,41 @@ php85-zip 8.5.9-r0 apk pinentry 1.3.2-r0 apk pip 26.2.1 python pkb-client 2.3.1 python -platformdirs 4.2.2 python +platformdirs 4.4.0 python popt 1.19-r4 apk procps-ng 4.0.6-r0 apk -proto-plus 1.28.3 python +proto-plus 1.28.4 python protobuf 7.36.0 python pyacmedns 0.4 python pyasn1 0.6.4 python pyasn1-modules 0.4.2 python pyc 3.14.7-r1 apk -pycparser 2.22 python -pydantic 2.13.4 python -pydantic-core 2.46.4 python +pycparser 3.0 python +pydantic 2.13.5 python +pydantic-core 2.46.5 python pyjwt 2.13.0 python pynamecheap 0.0.3 python -pyopenssl 25.3.0 python +pyopenssl 26.4.0 python pyotp 2.10.0 python pyparsing 3.3.2 python -pyrfc3339 1.1 python +pyrfc3339 2.1.0 python python-dateutil 2.9.0.post0 python python-digitalocean 1.17.0 python python-transip 0.6.0 python python3 3.14.7-r1 apk python3-pyc 3.14.7-r1 apk python3-pycache-pyc0 3.14.7-r1 apk -pytz 2024.1 python pyyaml 6.0.3 python readline 8.3.3-r1 apk -requests 2.32.3 python +requests 2.34.2 python requests-file 3.0.1 python requests-mock 1.12.1 python requests-unixsocket 0.4.1 python -ruff 0.6.3 python s3transfer 0.19.2 python scanelf 1.3.9-r1 apk -setuptools 74.0.0 python +setuptools 84.0.0 python shadow 4.18.0-r1 apk -six 1.16.0 python +six 1.17.0 python skalibs-libs 2.15.0.0-r0 apk sniffio 1.3.1 python soupsieve 2.9.2 python @@ -362,21 +357,19 @@ sqlite-libs 3.53.4-r0 apk ssl_client 1.37.0-r31 apk tiff 4.7.1-r0 apk tldextract 5.3.2 python -tomli 2.0.1 python -typeguard 4.3.0 python -typing-extensions 4.12.2 python +tomli 2.4.0 python typing-extensions 4.16.0 python typing-inspection 0.4.4 python tzdata 2026c-r0 apk unixodbc 2.3.14-r1 apk uritemplate 4.2.0 python -urllib3 2.2.2 python +urllib3 2.7.0 python utmps-libs 0.1.3.3-r0 apk -wheel 0.43.0 python -wheel 0.44.0 python +wheel 0.46.3 python +wheel 0.48.0 python whois 5.6.6-r0 apk xz-libs 5.8.3-r0 apk -zipp 3.19.2 python +zipp 3.23.0 python zlib 1.3.2-r0 apk zope-interface 8.6 python zstd-libs 1.5.7-r2 apk From d9c0e3241612d029efcd9185aca04cd0f8e76f08 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 1 Sep 2026 21:44:26 +0000 Subject: [PATCH 13/14] Bot Updating Package Versions --- package_versions.txt | 122 +++++++++++++++++++++---------------------- 1 file changed, 61 insertions(+), 61 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index e4acf23..6fe91b3 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,7 +1,7 @@ NAME VERSION TYPE Simple Launcher 1.1.0.14 binary (+5 duplicates) acl-libs 2.3.2-r1 apk -acme 5.7.0 python +acme 5.8.0 python alpine-baselayout 3.7.2-r1 apk alpine-baselayout-data 3.7.2-r1 apk alpine-keys 2.6-r0 apk @@ -23,8 +23,8 @@ azure-mgmt-dns 9.0.0 python backports-tarfile 1.2.0 python bash 5.3.9-r1 apk beautifulsoup4 4.15.0 python -boto3 1.43.83 python -botocore 1.43.83 python +boto3 1.43.86 python +botocore 1.43.86 python brotli-libs 1.2.0-r1 apk bs4 0.0.2 python busybox 1.37.0-r31 apk @@ -33,18 +33,18 @@ c-ares 1.34.8-r0 apk ca-certificates 20260611-r0 apk ca-certificates-bundle 20260611-r0 apk catatonit 0.2.1-r0 apk -certbot 5.7.0 python +certbot 5.8.0 python certbot-dns-acmedns 0.1.0 python certbot-dns-aliyun 2.0.0 python certbot-dns-azure 1.5.0 python certbot-dns-bunny 3.0.0 python -certbot-dns-cloudflare 5.7.0 python +certbot-dns-cloudflare 5.8.0 python certbot-dns-cpanel 0.4.0 python certbot-dns-desec 1.3.2 python -certbot-dns-digitalocean 5.7.0 python +certbot-dns-digitalocean 5.8.0 python certbot-dns-directadmin 1.0.15 python -certbot-dns-dnsimple 5.7.0 python -certbot-dns-dnsmadeeasy 5.7.0 python +certbot-dns-dnsimple 5.8.0 python +certbot-dns-dnsmadeeasy 5.8.0 python certbot-dns-dnspod 0.1.0 python certbot-dns-do 0.31.0 python certbot-dns-domeneshop 0.2.9 python @@ -52,29 +52,29 @@ certbot-dns-dreamhost 1.0 python certbot-dns-duckdns 1.9.0 python certbot-dns-dynudns 0.0.6 python certbot-dns-freedns 0.2.0 python -certbot-dns-gehirn 5.7.0 python +certbot-dns-gehirn 5.8.0 python certbot-dns-glesys 2.1.0 python certbot-dns-godaddy 2.8.0 python -certbot-dns-google 5.7.0 python +certbot-dns-google 5.8.0 python certbot-dns-he 1.0.0 python certbot-dns-hetzner 4.0.0 python certbot-dns-hetzner-cloud 1.0.5 python certbot-dns-infomaniak 0.3.3 python certbot-dns-inwx 3.0.3 python certbot-dns-ionos 2024.11.9 python -certbot-dns-linode 5.7.0 python +certbot-dns-linode 5.8.0 python certbot-dns-loopia 1.0.1 python -certbot-dns-luadns 5.7.0 python +certbot-dns-luadns 5.8.0 python certbot-dns-mijn-host 0.0.10 python certbot-dns-namecheap 1.0.0 python certbot-dns-netcup 2.0.3 python certbot-dns-njalla 2.0.2 python -certbot-dns-nsone 5.7.0 python -certbot-dns-ovh 5.7.0 python +certbot-dns-nsone 5.8.0 python +certbot-dns-ovh 5.8.0 python certbot-dns-porkbun 0.11.0 python -certbot-dns-rfc2136 5.7.0 python -certbot-dns-route53 5.7.0 python -certbot-dns-sakuracloud 5.7.0 python +certbot-dns-rfc2136 5.8.0 python +certbot-dns-route53 5.8.0 python +certbot-dns-sakuracloud 5.8.0 python certbot-dns-standalone 1.2.1 python certbot-dns-transip 0.5.2 python certbot-dns-vultr 1.1.0 python @@ -104,7 +104,7 @@ domeneshop 0.4.4 python fail2ban 1.1.0 python fail2ban 1.1.0-r3 apk fail2ban-pyc 1.1.0-r3 apk -filelock 3.32.4 python +filelock 3.32.5 python findutils 4.10.0-r1 apk fontconfig 2.17.1-r1 apk freetype 2.14.3-r0 apk @@ -122,7 +122,7 @@ gnupg-utils 2.4.9-r1 apk gnupg-wks-client 2.4.9-r1 apk gnutls 3.8.13-r0 apk google-api-core 2.34.0 python -google-api-python-client 2.199.0 python +google-api-python-client 2.200.0 python google-auth 2.57.0 python google-auth-httplib2 0.4.2 python googleapis-common-protos 1.75.2 python @@ -266,52 +266,52 @@ pcre2 10.47-r1 apk perl 5.42.2-r0 apk perl-error 0.17030-r0 apk perl-git 2.54.0-r0 apk -php85 8.5.9-r0 apk -php85-bcmath 8.5.9-r0 apk -php85-bz2 8.5.9-r0 apk -php85-common 8.5.9-r0 apk -php85-ctype 8.5.9-r0 apk -php85-curl 8.5.9-r0 apk -php85-dom 8.5.9-r0 apk -php85-exif 8.5.9-r0 apk -php85-fileinfo 8.5.9-r0 apk -php85-fpm 8.5.9-r0 apk -php85-ftp 8.5.9-r0 apk -php85-gd 8.5.9-r0 apk -php85-gmp 8.5.9-r0 apk -php85-iconv 8.5.9-r0 apk -php85-intl 8.5.9-r0 apk -php85-ldap 8.5.9-r0 apk -php85-mbstring 8.5.9-r0 apk -php85-mysqli 8.5.9-r0 apk -php85-mysqlnd 8.5.9-r0 apk -php85-openssl 8.5.9-r0 apk -php85-pdo 8.5.9-r0 apk -php85-pdo_mysql 8.5.9-r0 apk -php85-pdo_odbc 8.5.9-r0 apk -php85-pdo_pgsql 8.5.9-r0 apk -php85-pdo_sqlite 8.5.9-r0 apk -php85-pear 8.5.9-r0 apk +php85 8.5.10-r0 apk +php85-bcmath 8.5.10-r0 apk +php85-bz2 8.5.10-r0 apk +php85-common 8.5.10-r0 apk +php85-ctype 8.5.10-r0 apk +php85-curl 8.5.10-r0 apk +php85-dom 8.5.10-r0 apk +php85-exif 8.5.10-r0 apk +php85-fileinfo 8.5.10-r0 apk +php85-fpm 8.5.10-r0 apk +php85-ftp 8.5.10-r0 apk +php85-gd 8.5.10-r0 apk +php85-gmp 8.5.10-r0 apk +php85-iconv 8.5.10-r0 apk +php85-intl 8.5.10-r0 apk +php85-ldap 8.5.10-r0 apk +php85-mbstring 8.5.10-r0 apk +php85-mysqli 8.5.10-r0 apk +php85-mysqlnd 8.5.10-r0 apk +php85-openssl 8.5.10-r0 apk +php85-pdo 8.5.10-r0 apk +php85-pdo_mysql 8.5.10-r0 apk +php85-pdo_odbc 8.5.10-r0 apk +php85-pdo_pgsql 8.5.10-r0 apk +php85-pdo_sqlite 8.5.10-r0 apk +php85-pear 8.5.10-r0 apk php85-pecl-apcu 5.1.28-r0 apk php85-pecl-igbinary 3.2.17_rc1-r0 apk php85-pecl-memcached 3.4.0-r0 apk php85-pecl-msgpack 3.0.1-r0 apk php85-pecl-redis 6.3.0-r0 apk -php85-pgsql 8.5.9-r0 apk -php85-phar 8.5.9-r0 apk -php85-posix 8.5.9-r0 apk -php85-session 8.5.9-r0 apk -php85-simplexml 8.5.9-r0 apk -php85-soap 8.5.9-r0 apk -php85-sockets 8.5.9-r0 apk -php85-sodium 8.5.9-r0 apk -php85-sqlite3 8.5.9-r0 apk -php85-tokenizer 8.5.9-r0 apk -php85-xml 8.5.9-r0 apk -php85-xmlreader 8.5.9-r0 apk -php85-xmlwriter 8.5.9-r0 apk -php85-xsl 8.5.9-r0 apk -php85-zip 8.5.9-r0 apk +php85-pgsql 8.5.10-r0 apk +php85-phar 8.5.10-r0 apk +php85-posix 8.5.10-r0 apk +php85-session 8.5.10-r0 apk +php85-simplexml 8.5.10-r0 apk +php85-soap 8.5.10-r0 apk +php85-sockets 8.5.10-r0 apk +php85-sodium 8.5.10-r0 apk +php85-sqlite3 8.5.10-r0 apk +php85-tokenizer 8.5.10-r0 apk +php85-xml 8.5.10-r0 apk +php85-xmlreader 8.5.10-r0 apk +php85-xmlwriter 8.5.10-r0 apk +php85-xsl 8.5.10-r0 apk +php85-zip 8.5.10-r0 apk pinentry 1.3.2-r0 apk pip 26.2.1 python pkb-client 2.3.1 python @@ -319,7 +319,7 @@ platformdirs 4.4.0 python popt 1.19-r4 apk procps-ng 4.0.6-r0 apk proto-plus 1.28.4 python -protobuf 7.36.0 python +protobuf 7.36.1 python pyacmedns 0.4 python pyasn1 0.6.4 python pyasn1-modules 0.4.2 python From f0c3932e7e332abce2d0a56f5f1d827e17067a7a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 5 Sep 2026 07:33:15 +0000 Subject: [PATCH 14/14] Bot Updating Package Versions --- package_versions.txt | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 6fe91b3..1b5428f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -7,7 +7,7 @@ alpine-baselayout-data 3.7.2-r1 apk alpine-keys 2.6-r0 apk alpine-release 3.24.1-r0 apk annotated-types 0.8.0 python -anyio 4.14.2 python +anyio 4.15.0 python aom-libs 3.14.1-r0 apk apache2-utils 2.4.68-r0 apk apk-tools 3.0.7-r0 apk @@ -23,8 +23,8 @@ azure-mgmt-dns 9.0.0 python backports-tarfile 1.2.0 python bash 5.3.9-r1 apk beautifulsoup4 4.15.0 python -boto3 1.43.86 python -botocore 1.43.86 python +boto3 1.43.89 python +botocore 1.43.89 python brotli-libs 1.2.0-r1 apk bs4 0.0.2 python busybox 1.37.0-r31 apk @@ -86,7 +86,7 @@ cli UNKNOWN binary cli-32 UNKNOWN binary cli-64 UNKNOWN binary cli-arm64 UNKNOWN binary -cloudflare 5.6.0 python +cloudflare 5.7.0 python composer 2.10.3 binary configargparse 1.7.5 python configobj 5.0.9 python @@ -121,11 +121,11 @@ gnupg-keyboxd 2.4.9-r1 apk gnupg-utils 2.4.9-r1 apk gnupg-wks-client 2.4.9-r1 apk gnutls 3.8.13-r0 apk -google-api-core 2.34.0 python +google-api-core 2.36.0 python google-api-python-client 2.200.0 python -google-auth 2.57.0 python +google-auth 2.57.1 python google-auth-httplib2 0.4.2 python -googleapis-common-protos 1.75.2 python +googleapis-common-protos 1.75.3 python gpg 2.4.9-r1 apk gpg-agent 2.4.9-r1 apk gpg-wks-server 2.4.9-r1 apk @@ -169,7 +169,7 @@ libcurl 8.21.0-r0 apk libdav1d 1.5.3-r0 apk libedit 20260508.3.1-r1 apk libevent 2.1.13-r0 apk -libexpat 2.8.3-r0 apk +libexpat 2.8.4-r0 apk libffi 3.5.2-r1 apk libgcc 15.2.0-r5 apk libgcrypt 1.12.2-r0 apk @@ -220,7 +220,7 @@ libzip 1.11.4-r2 apk linux-pam 1.7.1-r2 apk logrotate 3.22.0-r0 apk loopialib 0.2.0 python -lxml 6.1.2 python +lxml 6.1.3 python lz4-libs 1.10.0-r1 apk markupsafe 3.0.3 python memcached 1.6.42-r0 apk @@ -258,11 +258,12 @@ nginx-vim 1.30.4-r1 apk npth 1.8-r0 apk oniguruma 6.9.10-r0 apk openssl 3.5.8-r0 apk +opentelemetry-api 1.44.0 python p11-kit 0.26.2-r0 apk packaging 26.0 python packaging 26.3 python parsedatetime 2.6 python -pcre2 10.47-r1 apk +pcre2 10.48-r0 apk perl 5.42.2-r0 apk perl-error 0.17030-r0 apk perl-git 2.54.0-r0 apk