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

index e00751c846d3c639cb1c2864af5056794fc5b445..ad456b0d1ee33387630278d3089a1e46c4fce644 100644 (file)
@@ -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).
     {