From: Dave Miller Date: Sat, 18 Nov 2023 08:32:48 +0000 (-0500) Subject: Bug 1560873: blacklist broken versions of Template-Toolkit (#134) X-Git-Tag: bugzilla-5.0.4.1~11 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=d2c64a9da3821bc7769ab5789ec928a26223b935;p=thirdparty%2Fbugzilla.git Bug 1560873: blacklist broken versions of Template-Toolkit (#134) --- diff --git a/Bugzilla/Install/Requirements.pm b/Bugzilla/Install/Requirements.pm index 61496d843a..3022cea3bc 100644 --- a/Bugzilla/Install/Requirements.pm +++ b/Bugzilla/Install/Requirements.pm @@ -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. {