Skip to content

Commit

Permalink
Bug 1560873: blacklist broken versions of Template-Toolkit (#134)
Browse files Browse the repository at this point in the history
  • Loading branch information
justdave committed Nov 18, 2023
1 parent 20124a0 commit d2c64a9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Bugzilla/Install/Requirements.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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.
{
Expand Down

0 comments on commit d2c64a9

Please sign in to comment.