Commit 8445288a authored by Frédéric Buclin's avatar Frédéric Buclin

Bug 970283: Bump URI version to 1.55 to correctly escape single quotes in URLs

r=dkl a=justdave
parent adceb1cd
...@@ -32,8 +32,6 @@ use Bugzilla::BugUrl; ...@@ -32,8 +32,6 @@ use Bugzilla::BugUrl;
use List::MoreUtils qw(firstidx uniq part); use List::MoreUtils qw(firstidx uniq part);
use List::Util qw(min max first); use List::Util qw(min max first);
use Storable qw(dclone); use Storable qw(dclone);
use URI;
use URI::QueryParam;
use Scalar::Util qw(blessed); use Scalar::Util qw(blessed);
use parent qw(Bugzilla::Object Exporter); use parent qw(Bugzilla::Object Exporter);
......
...@@ -17,6 +17,7 @@ use Bugzilla::Error; ...@@ -17,6 +17,7 @@ use Bugzilla::Error;
use Bugzilla::Constants; use Bugzilla::Constants;
use Bugzilla::Hook; use Bugzilla::Hook;
use URI;
use URI::QueryParam; use URI::QueryParam;
############################### ###############################
......
...@@ -148,9 +148,8 @@ sub REQUIRED_MODULES { ...@@ -148,9 +148,8 @@ sub REQUIRED_MODULES {
{ {
package => 'URI', package => 'URI',
module => 'URI', module => 'URI',
# This version properly handles a semicolon as the delimiter # Follows RFC 3986 to escape characters in URI::Escape.
# in a URL query string. version => '1.55',
version => '1.37',
}, },
# 0.32 fixes several memory leaks in the XS version of some functions. # 0.32 fixes several memory leaks in the XS version of some functions.
{ {
...@@ -397,12 +396,6 @@ sub OPTIONAL_MODULES { ...@@ -397,12 +396,6 @@ sub OPTIONAL_MODULES {
# memcached # memcached
{ {
package => 'URI-Escape',
module => 'URI::Escape',
version => 0,
feature => ['memcached'],
},
{
package => 'Cache-Memcached', package => 'Cache-Memcached',
module => 'Cache::Memcached', module => 'Cache::Memcached',
version => '0', version => '0',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment