From 6facd99c181c8edbe63cd1ef226a3ce6d8b7ee2e Mon Sep 17 00:00:00 2001 From: Jose Diaz-Gonzalez Date: Fri, 21 Nov 2025 20:08:26 -0500 Subject: [PATCH] feat: upgrade pcre2 version from 10.42 to 10.47 --- bin/compile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bin/compile b/bin/compile index 213ce84..3b83faf 100755 --- a/bin/compile +++ b/bin/compile @@ -6,7 +6,8 @@ set -eo pipefail # https://nginx.org/en/download.html NGINX_VERSION="1.29.3" NGINX_TARBALL="nginx-${NGINX_VERSION}.tar.gz" -PCRE_VERSION="10.42" +# https://github.com/PCRE2Project/pcre2/releases +PCRE_VERSION="10.47" PCRE_TARBALL="pcre2-${PCRE_VERSION}.tar.gz" SIGIL_VERSION="0.10.1" SIGIL_TARBALL="gliderlabs-sigil_${SIGIL_VERSION}_linux_amd64.tgz"