]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 1560873: blacklist broken versions of Template-Toolkit (#134)
authorDave Miller <justdave@bugzilla.org>
Sat, 18 Nov 2023 08:32:48 +0000 (03:32 -0500)
committerGitHub <noreply@github.com>
Sat, 18 Nov 2023 08:32:48 +0000 (03:32 -0500)
Bugzilla/Install/Requirements.pm

index 61496d843a17496de2016ae4615489cccb2c5d3f..3022cea3bc386394c0714ad534bc1d5137bd5ebb 100644 (file)
@@ -121,10 +121,12 @@ sub REQUIRED_MODULES {
         version => ($^V >= v5.13.3) ? '1.614' : '1.54'
     },
     # 2.24 contains several useful text virtual methods.
+    # 2.28-3.007 are broken, see https://bugzilla.mozilla.org/show_bug.cgi?id=1560873
     {
         package => 'Template-Toolkit',
         module  => 'Template',
-        version => '2.24'
+        version => '2.24',
+        blacklist => ['^2.2[89]$', '^3.00[0-7]$']
     },
     # 1.300011 has a debug mode for SMTP and automatically pass -i to sendmail.
     {