diff options
author | Dylan William Hardison <dylan@hardison.net> | 2017-06-14 20:57:03 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-14 20:57:03 +0200 |
commit | 8bb543cad58777a76a1a12d60e26b6923b9089e9 (patch) | |
tree | 1c92b4a0b6f15684457a1d177de8c86f20b91e50 | |
parent | 37120e7086d59c771f290d6d916a1fe5cd71d7fa (diff) | |
download | bugzilla-8bb543cad58777a76a1a12d60e26b6923b9089e9.tar.gz bugzilla-8bb543cad58777a76a1a12d60e26b6923b9089e9.tar.xz |
Bug 1372653 - Upgrade LWP to 6.26 & add dependency for LWP::Protocol::https 6.07
* fix order
* I mean 7
-rwxr-xr-x | Makefile.PL | 4 | ||||
-rw-r--r-- | extensions/Persona/Config.pm | 5 |
2 files changed, 2 insertions, 7 deletions
diff --git a/Makefile.PL b/Makefile.PL index cd2c46fd2..bc0bdd332 100755 --- a/Makefile.PL +++ b/Makefile.PL @@ -49,8 +49,8 @@ my %requires = ( 'Email::Send' => '1.911', 'File::Slurp' => '9999.13', 'JSON::XS' => '2.01', - 'LWP::Protocol::connect' => 0, - 'LWP::UserAgent' => '5.835', + 'LWP::Protocol::https' => '6.07', + 'LWP::UserAgent' => '6.26', 'List::MoreUtils' => $^V > v5.10.1 ? '0.418' : '0.22', 'Math::Random::ISAAC' => '1.0.1', 'Module::Metadata' => '1.000033', diff --git a/extensions/Persona/Config.pm b/extensions/Persona/Config.pm index a839b38ab..fa878bb05 100644 --- a/extensions/Persona/Config.pm +++ b/extensions/Persona/Config.pm @@ -19,11 +19,6 @@ use constant REQUIRED_MODULES => [ module => 'JSON', version => 0, }, - { - package => 'libwww-perl', - module => 'LWP::UserAgent', - version => 0, - }, ]; use constant OPTIONAL_MODULES => [ |