From d681f2fc477f6cd79edf3bc9e0a5edaa64765542 Mon Sep 17 00:00:00 2001 From: Luca Comellini Date: Thu, 4 Sep 2025 10:32:05 -0700 Subject: [PATCH 1/3] Update to libpcre2 --- build/Dockerfile | 2 +- test/Dockerfile-test | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build/Dockerfile b/build/Dockerfile index daf2573f..ed4a061d 100644 --- a/build/Dockerfile +++ b/build/Dockerfile @@ -13,7 +13,7 @@ RUN apt-get update && \ libtool \ ssh \ wget \ - libpcre3 libpcre3-dev \ + libpcre2-posix3 libpcre2-dev \ zlib1g-dev ENV CFLAGS="-fPIC" diff --git a/test/Dockerfile-test b/test/Dockerfile-test index 8d35623d..b3504eca 100644 --- a/test/Dockerfile-test +++ b/test/Dockerfile-test @@ -14,7 +14,7 @@ RUN set -x \ git \ gnupg2 \ jq \ - libpcre3 libpcre3-dev \ + libpcre2-posix3 libpcre2-dev \ libssl-dev \ python3 \ software-properties-common \ From 89c97b06693baf54cb71a3ecdf25064b7e416600 Mon Sep 17 00:00:00 2001 From: Luca Comellini Date: Thu, 4 Sep 2025 11:00:20 -0700 Subject: [PATCH 2/3] Drop legacy versions --- .github/workflows/ci.yml | 9 --------- 1 file changed, 9 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c1a1565b..d5730a65 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -40,20 +40,11 @@ jobs: matrix: nginx_version: [ - 1.15.12, - 1.16.1, - 1.17.10, - 1.18.0, - 1.19.10, - 1.20.2, 1.21.6, 1.22.1, 1.23.4, 1.24.0, 1.25.5, - 1.26.0, - 1.26.1, - 1.26.2, 1.26.3, 1.27.0, 1.27.1, From 02b4135a13a24cf3aa6a5378b403e155ada3b7e7 Mon Sep 17 00:00:00 2001 From: Luca Comellini Date: Thu, 4 Sep 2025 11:01:47 -0700 Subject: [PATCH 3/3] code review --- build/Dockerfile | 2 +- test/Dockerfile-test | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build/Dockerfile b/build/Dockerfile index ed4a061d..179139a1 100644 --- a/build/Dockerfile +++ b/build/Dockerfile @@ -13,7 +13,7 @@ RUN apt-get update && \ libtool \ ssh \ wget \ - libpcre2-posix3 libpcre2-dev \ + libpcre2-dev \ zlib1g-dev ENV CFLAGS="-fPIC" diff --git a/test/Dockerfile-test b/test/Dockerfile-test index b3504eca..aa12c939 100644 --- a/test/Dockerfile-test +++ b/test/Dockerfile-test @@ -14,7 +14,7 @@ RUN set -x \ git \ gnupg2 \ jq \ - libpcre2-posix3 libpcre2-dev \ + libpcre2-dev \ libssl-dev \ python3 \ software-properties-common \