From 275c5cae3e4c5f47073d61a7541e3cd37cc61299 Mon Sep 17 00:00:00 2001 From: Dom Sekotill Date: Tue, 31 Dec 2024 00:32:33 +0000 Subject: [PATCH 1/3] Update gitlint config --- .gitlint | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitlint b/.gitlint index 4694e3a..08767b1 100644 --- a/.gitlint +++ b/.gitlint @@ -5,4 +5,7 @@ regex-style-search=True [author-valid-email] regex=@[a-zA-Z0-9][a-zA-Z0-9-]{0,61}[a-zA-Z0-9](\.[a-zA-Z0-9][a-zA-Z0-9-]{0,61}[a-zA-Z0-9])+$ +[ignore-body-lines] +regex=^(Fixes|Closes):?\s+[#][0-9]+ + # vim:ft=cfg -- GitLab From a4d83a5742603c2364b6fa4da1dd9a16735d725e Mon Sep 17 00:00:00 2001 From: Dom Sekotill Date: Tue, 31 Dec 2024 00:32:41 +0000 Subject: [PATCH 2/3] Suppress logging of health checks Closes #21 --- data/fpm.conf | 1 + 1 file changed, 1 insertion(+) diff --git a/data/fpm.conf b/data/fpm.conf index 407f3ae..f99c013 100644 --- a/data/fpm.conf +++ b/data/fpm.conf @@ -2,3 +2,4 @@ access.format = "[%{%Y-%m-%dT%H:%M:%S%z}t] %{REMOTE_ADDR}e %m %{REQUEST_URI}e %s ping.path = "/.probe" ping.response = "OK" +access.suppress_path[] = "/.probe" -- GitLab From 34438cb6cce85bfbfe151772de3423f5982ab05e Mon Sep 17 00:00:00 2001 From: Dom Sekotill Date: Tue, 31 Dec 2024 01:35:49 +0000 Subject: [PATCH 3/3] Make a broken Imagick release work with PHP 8.4 --- scripts/compile-imagick.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/scripts/compile-imagick.sh b/scripts/compile-imagick.sh index f75695a..ba7d3cb 100755 --- a/scripts/compile-imagick.sh +++ b/scripts/compile-imagick.sh @@ -46,9 +46,13 @@ get_tarball() cd $(mktemp -d) +CPPFLAGS=( + -Dphp_strtolower=zend_str_tolower +) + get_tarball | tar -xf- --strip-components=1 phpize -./configure +./configure CPPFLAGS="${CPPFLAGS[*]}" make install echo "extension=imagick.so" > /usr/local/etc/php/conf.d/imagick.ini -- GitLab