From 0eb9920602db3713e6825c67133fe81b6ed2f19f Mon Sep 17 00:00:00 2001 From: TrueCharts-Admin Date: Fri, 17 Apr 2026 15:29:48 +0000 Subject: [PATCH 1/3] =?UTF-8?q?BREAKING=20CHANGE(deps):=20Update=20mikespu?= =?UTF-8?q?b-org/seblucas-cops=203.8.2=20=E2=86=92=204.3.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/cops/docker-bake.hcl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/cops/docker-bake.hcl b/apps/cops/docker-bake.hcl index d244a09f0..c55f15f26 100644 --- a/apps/cops/docker-bake.hcl +++ b/apps/cops/docker-bake.hcl @@ -6,7 +6,7 @@ variable "APP" { variable "VERSION" { // renovate: datasource=github-releases depName=mikespub-org/seblucas-cops versioning=loose - default = "3.8.2" + default = "4.3.1" } variable "LICENSE" { From 62c189c7c60cc6e3dd4119cacd9f5210ddb65ebb Mon Sep 17 00:00:00 2001 From: "anthropic-code-agent[bot]" <242468646+Claude@users.noreply.github.com> Date: Sat, 18 Apr 2026 07:03:17 +0000 Subject: [PATCH 2/3] fix(cops): Update PHP version to 8.4 for COPS 4.x compatibility Agent-Logs-Url: https://github.com/trueforge-org/containerforge/sessions/5c73d655-ab31-46a5-a9cf-6fd8bfb9c023 Co-authored-by: Crow-Control <7613738+Crow-Control@users.noreply.github.com> --- apps/cops/Dockerfile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/apps/cops/Dockerfile b/apps/cops/Dockerfile index 9e8813337..5c3a43493 100644 --- a/apps/cops/Dockerfile +++ b/apps/cops/Dockerfile @@ -10,14 +10,14 @@ RUN \ echo "**** install runtime packages ****" && \ apt-get update && \ apt-get install -y --no-install-recommends \ - php8.3-xml \ - php8.3-gd \ - php8.3-intl \ + php8.4-xml \ + php8.4-gd \ + php8.4-intl \ composer \ - php8.3-zip \ - php8.3-sqlite3 && \ + php8.4-zip \ + php8.4-sqlite3 && \ echo "**** configure php-fpm to pass env vars ****" && \ - if [ -f /etc/php/8.3/fpm/pool.d/www.conf ]; then sed -E -i 's/^;?clear_env ?=.*$/clear_env = no/g' /etc/php/8.3/fpm/pool.d/www.conf && if ! grep -qxF 'clear_env = no' /etc/php/8.3/fpm/pool.d/www.conf; then echo 'clear_env = no' >> /etc/php/8.3/fpm/pool.d/www.conf; fi && echo "env[PATH] = /usr/local/bin:/usr/bin:/bin" >> /etc/php/8.3/fpm/php-fpm.conf; fi && \ + if [ -f /etc/php/8.4/fpm/pool.d/www.conf ]; then sed -E -i 's/^;?clear_env ?=.*$/clear_env = no/g' /etc/php/8.4/fpm/pool.d/www.conf && if ! grep -qxF 'clear_env = no' /etc/php/8.4/fpm/pool.d/www.conf; then echo 'clear_env = no' >> /etc/php/8.4/fpm/pool.d/www.conf; fi && echo "env[PATH] = /usr/local/bin:/usr/bin:/bin" >> /etc/php/8.4/fpm/php-fpm.conf; fi && \ echo "**** install cops ****" && \ curl -fL -o \ /tmp/cops.tar.gz \ From 53630ec9911fa1090dec8fa3a927800f8031c7c6 Mon Sep 17 00:00:00 2001 From: "anthropic-code-agent[bot]" <242468646+Claude@users.noreply.github.com> Date: Sat, 18 Apr 2026 07:10:31 +0000 Subject: [PATCH 3/3] fix(cops): Add ondrej/php PPA for PHP 8.4 availability on Ubuntu 24.04 Agent-Logs-Url: https://github.com/trueforge-org/containerforge/sessions/69a744fc-1a32-425c-b217-dfde78c7cdef Co-authored-by: Crow-Control <7613738+Crow-Control@users.noreply.github.com> --- apps/cops/Dockerfile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/apps/cops/Dockerfile b/apps/cops/Dockerfile index 5c3a43493..28e2fc795 100644 --- a/apps/cops/Dockerfile +++ b/apps/cops/Dockerfile @@ -9,10 +9,15 @@ USER root RUN \ echo "**** install runtime packages ****" && \ apt-get update && \ + apt-get install -y --no-install-recommends \ + software-properties-common && \ + add-apt-repository ppa:ondrej/php -y && \ + apt-get update && \ apt-get install -y --no-install-recommends \ php8.4-xml \ php8.4-gd \ php8.4-intl \ + php8.4-fpm \ composer \ php8.4-zip \ php8.4-sqlite3 && \