From: Dave Miller Date: Sat, 18 Nov 2023 08:33:38 +0000 (-0500) Subject: Bug 1560873: blacklist broken versions of Template-Toolkit (#133) X-Git-Tag: bugzilla-4.4.14~7 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c5d993b1ca6fb60c0a9220a98ffd9a3b8035261a;p=thirdparty%2Fbugzilla.git Bug 1560873: blacklist broken versions of Template-Toolkit (#133) --- diff --git a/Bugzilla/Install/Requirements.pm b/Bugzilla/Install/Requirements.pm index e00751c846..ad456b0d1e 100644 --- a/Bugzilla/Install/Requirements.pm +++ b/Bugzilla/Install/Requirements.pm @@ -129,10 +129,12 @@ sub REQUIRED_MODULES { }, # 2.22 fixes various problems related to UTF8 strings in hash keys, # as well as line endings on Windows. + # 2.28-3.007 are broken, see https://bugzilla.mozilla.org/show_bug.cgi?id=1560873 { package => 'Template-Toolkit', module => 'Template', - version => '2.22' + version => '2.22', + blacklist => ['^2.2[89]$', '^3.00[0-7]$'] }, # 2.04 implement the "Test" method (to write to data/mailer.testfile). {