diff options
author | Dave Miller <justdave@mozilla.com> | 2014-06-04 19:21:18 +0200 |
---|---|---|
committer | Dave Miller <justdave@mozilla.com> | 2014-06-04 19:21:18 +0200 |
commit | 15b70d2e88e112a7764d8b2c90794b1860c4a234 (patch) | |
tree | 4f5ee342350aea561b4fe7f4edd2ab2651690eb1 /Bugzilla | |
parent | f3a176d18144027a813ec60ce8811fe85083551e (diff) | |
download | bugzilla-15b70d2e88e112a7764d8b2c90794b1860c4a234.tar.gz bugzilla-15b70d2e88e112a7764d8b2c90794b1860c4a234.tar.xz |
Bug 803201 - Bump minimum requirement for DateTime and
DateTime::TimeZone to correctly detect the local timezone
Patch by Frédéric Buclin <LpSolit@gmail.com>
r=dkl, a=justdave
Diffstat (limited to 'Bugzilla')
-rw-r--r-- | Bugzilla/Install/Requirements.pm | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/Bugzilla/Install/Requirements.pm b/Bugzilla/Install/Requirements.pm index f1071564d..d9e49017d 100644 --- a/Bugzilla/Install/Requirements.pm +++ b/Bugzilla/Install/Requirements.pm @@ -105,20 +105,18 @@ sub REQUIRED_MODULES { module => 'Date::Format', version => '2.23' }, - # 0.28 fixed some important bugs in DateTime. + # 0.75 fixes a warning thrown with Perl 5.17 and newer. { package => 'DateTime', module => 'DateTime', - version => '0.28' + version => '0.75' }, - # 0.79 is required to work on Windows Vista and Windows Server 2008. - # As correctly detecting the flavor of Windows is not easy, - # we require this version for all Windows installations. - # 0.71 fixes a major bug affecting all platforms. + # 1.64 fixes a taint issue preventing the local timezone from + # being determined on some systems. { package => 'DateTime-TimeZone', module => 'DateTime::TimeZone', - version => ON_WINDOWS ? '0.79' : '0.71' + version => '1.64' }, # 1.54 is required for Perl 5.10+. It also makes DBD::Oracle happy. { |