diff options
author | Dave Miller <justdave@bugzilla.org> | 2023-11-18 03:32:48 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-18 03:32:48 -0500 |
commit | d2c64a9da3821bc7769ab5789ec928a26223b935 (patch) | |
tree | c4213a43f1d77572118f51f7ecb0babc1f3cc112 | |
parent | 20124a085dd571607bc517b4affd92ae61e73627 (diff) | |
download | bugs-d2c64a9da3821bc7769ab5789ec928a26223b935.tar bugs-d2c64a9da3821bc7769ab5789ec928a26223b935.tar.gz bugs-d2c64a9da3821bc7769ab5789ec928a26223b935.tar.bz2 bugs-d2c64a9da3821bc7769ab5789ec928a26223b935.tar.xz bugs-d2c64a9da3821bc7769ab5789ec928a26223b935.zip |
Bug 1560873: blacklist broken versions of Template-Toolkit (#134)
-rw-r--r-- | Bugzilla/Install/Requirements.pm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Bugzilla/Install/Requirements.pm b/Bugzilla/Install/Requirements.pm index 61496d843..3022cea3b 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. { |