From 50398663c779effa622e6d95fb7a67f6eb30d047 Mon Sep 17 00:00:00 2001 From: Katrin Fischer Date: Sun, 7 Jun 2015 23:45:10 +0200 Subject: [PATCH] Bug 8686: Raise required version of URI::Escape to 3.31 Raises the minimum required version of URI::Escape from 1.36 to 3.31. TEST PLAN --------- 1) git branch -b bug_8686 origin/master 2) ./koha_perl_deps.pl -a | grep URI -- it will list 1.36 required 3) git bz apply 8686 4) ./koha_perl_deps.pl -a | grep URI -- it will list 3.31 required 5) koha qa test tools NOTE: Also default in Ubuntu 14.04 LTS, not just Wheezy as noted in comment #15. Signed-off-by: Mark Tompsett Signed-off-by: Jonathan Druart Signoff based on Nicole's comment (bug 9990 comment 6): "This stops happening if you upgrade URI::Escape to 3.31. We should make it clear in the Perl Modules page that an upgrade is needed." --- C4/Installer/PerlDependencies.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/C4/Installer/PerlDependencies.pm b/C4/Installer/PerlDependencies.pm index 57c5972..9ddeca8 100644 --- a/C4/Installer/PerlDependencies.pm +++ b/C4/Installer/PerlDependencies.pm @@ -112,7 +112,7 @@ our $PERL_DEPS = { 'URI::Escape' => { 'usage' => 'Core', 'required' => '1', - 'min_ver' => '1.36' + 'min_ver' => '3.31' }, 'Unicode::Normalize' => { 'usage' => 'Core', -- 2.1.0