From: Dave Miller Date: Thu, 7 Sep 2023 19:13:56 +0000 (-0400) Subject: Bug 1786949: Require Perl 5.14 (#145) X-Git-Tag: bugzilla-5.2~39 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=710d4112e06a69b9cba7e64e6c761d9da0d9ca10;p=thirdparty%2Fbugzilla.git Bug 1786949: Require Perl 5.14 (#145) --- diff --git a/Bugzilla.pm b/Bugzilla.pm index 403e3de597..12d9be33f8 100644 --- a/Bugzilla.pm +++ b/Bugzilla.pm @@ -7,7 +7,7 @@ package Bugzilla; -use 5.10.1; +use 5.14.0; use strict; use warnings; @@ -461,7 +461,6 @@ sub error_mode { $class->request_cache->{error_mode} = $newval; } - # XXX - Once we require Perl 5.10.1, this test can be replaced by //. if (exists $class->request_cache->{error_mode}) { return $class->request_cache->{error_mode}; } @@ -509,7 +508,6 @@ sub usage_mode { $class->request_cache->{usage_mode} = $newval; } - # XXX - Once we require Perl 5.10.1, this test can be replaced by //. if (exists $class->request_cache->{usage_mode}) { return $class->request_cache->{usage_mode}; } diff --git a/Bugzilla/Attachment.pm b/Bugzilla/Attachment.pm index 296f59b320..4e81e31669 100644 --- a/Bugzilla/Attachment.pm +++ b/Bugzilla/Attachment.pm @@ -7,7 +7,7 @@ package Bugzilla::Attachment; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/Attachment/PatchReader.pm b/Bugzilla/Attachment/PatchReader.pm index 01ed515180..fd9a33d68f 100644 --- a/Bugzilla/Attachment/PatchReader.pm +++ b/Bugzilla/Attachment/PatchReader.pm @@ -7,7 +7,7 @@ package Bugzilla::Attachment::PatchReader; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/Auth.pm b/Bugzilla/Auth.pm index 23de9b4bd5..39145198e0 100644 --- a/Bugzilla/Auth.pm +++ b/Bugzilla/Auth.pm @@ -7,7 +7,7 @@ package Bugzilla::Auth; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/Auth/Login.pm b/Bugzilla/Auth/Login.pm index 68c7464f29..50f454c108 100644 --- a/Bugzilla/Auth/Login.pm +++ b/Bugzilla/Auth/Login.pm @@ -7,7 +7,7 @@ package Bugzilla::Auth::Login; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/Auth/Login/APIKey.pm b/Bugzilla/Auth/Login/APIKey.pm index 79c16825eb..fdb7475ffd 100644 --- a/Bugzilla/Auth/Login/APIKey.pm +++ b/Bugzilla/Auth/Login/APIKey.pm @@ -7,7 +7,7 @@ package Bugzilla::Auth::Login::APIKey; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/Auth/Login/CGI.pm b/Bugzilla/Auth/Login/CGI.pm index 17b076d162..c3152be464 100644 --- a/Bugzilla/Auth/Login/CGI.pm +++ b/Bugzilla/Auth/Login/CGI.pm @@ -7,7 +7,7 @@ package Bugzilla::Auth::Login::CGI; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/Auth/Login/Cookie.pm b/Bugzilla/Auth/Login/Cookie.pm index 1983dbd4c7..37b033036e 100644 --- a/Bugzilla/Auth/Login/Cookie.pm +++ b/Bugzilla/Auth/Login/Cookie.pm @@ -7,7 +7,7 @@ package Bugzilla::Auth::Login::Cookie; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/Auth/Login/Env.pm b/Bugzilla/Auth/Login/Env.pm index 4995fa0025..d5f8590632 100644 --- a/Bugzilla/Auth/Login/Env.pm +++ b/Bugzilla/Auth/Login/Env.pm @@ -7,7 +7,7 @@ package Bugzilla::Auth::Login::Env; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/Auth/Login/Stack.pm b/Bugzilla/Auth/Login/Stack.pm index 7786f26c81..fc356d67da 100644 --- a/Bugzilla/Auth/Login/Stack.pm +++ b/Bugzilla/Auth/Login/Stack.pm @@ -7,7 +7,7 @@ package Bugzilla::Auth::Login::Stack; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/Auth/Persist/Cookie.pm b/Bugzilla/Auth/Persist/Cookie.pm index af6b0d77d1..5712f0b455 100644 --- a/Bugzilla/Auth/Persist/Cookie.pm +++ b/Bugzilla/Auth/Persist/Cookie.pm @@ -7,7 +7,7 @@ package Bugzilla::Auth::Persist::Cookie; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/Auth/Verify.pm b/Bugzilla/Auth/Verify.pm index 639760c2b8..6fd6687f7d 100644 --- a/Bugzilla/Auth/Verify.pm +++ b/Bugzilla/Auth/Verify.pm @@ -7,7 +7,7 @@ package Bugzilla::Auth::Verify; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/Auth/Verify/DB.pm b/Bugzilla/Auth/Verify/DB.pm index cb89a35618..b8b8c2ae95 100644 --- a/Bugzilla/Auth/Verify/DB.pm +++ b/Bugzilla/Auth/Verify/DB.pm @@ -7,7 +7,7 @@ package Bugzilla::Auth::Verify::DB; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/Auth/Verify/LDAP.pm b/Bugzilla/Auth/Verify/LDAP.pm index c92a389098..c7561187f2 100644 --- a/Bugzilla/Auth/Verify/LDAP.pm +++ b/Bugzilla/Auth/Verify/LDAP.pm @@ -7,7 +7,7 @@ package Bugzilla::Auth::Verify::LDAP; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/Auth/Verify/RADIUS.pm b/Bugzilla/Auth/Verify/RADIUS.pm index a2a54b9445..a715d847d4 100644 --- a/Bugzilla/Auth/Verify/RADIUS.pm +++ b/Bugzilla/Auth/Verify/RADIUS.pm @@ -7,7 +7,7 @@ package Bugzilla::Auth::Verify::RADIUS; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/Auth/Verify/Stack.pm b/Bugzilla/Auth/Verify/Stack.pm index 9a9412915d..a54432a19b 100644 --- a/Bugzilla/Auth/Verify/Stack.pm +++ b/Bugzilla/Auth/Verify/Stack.pm @@ -7,7 +7,7 @@ package Bugzilla::Auth::Verify::Stack; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/Bug.pm b/Bugzilla/Bug.pm index bfc9ccb239..31138b67e7 100644 --- a/Bugzilla/Bug.pm +++ b/Bugzilla/Bug.pm @@ -7,7 +7,7 @@ package Bugzilla::Bug; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/BugMail.pm b/Bugzilla/BugMail.pm index 2075a71e12..3ab9716137 100644 --- a/Bugzilla/BugMail.pm +++ b/Bugzilla/BugMail.pm @@ -7,7 +7,7 @@ package Bugzilla::BugMail; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/BugUrl.pm b/Bugzilla/BugUrl.pm index 24a31b8e3f..0369ec1e16 100644 --- a/Bugzilla/BugUrl.pm +++ b/Bugzilla/BugUrl.pm @@ -7,7 +7,7 @@ package Bugzilla::BugUrl; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/BugUrl/Bugzilla.pm b/Bugzilla/BugUrl/Bugzilla.pm index 1cedb1f561..c316d8fca1 100644 --- a/Bugzilla/BugUrl/Bugzilla.pm +++ b/Bugzilla/BugUrl/Bugzilla.pm @@ -7,7 +7,7 @@ package Bugzilla::BugUrl::Bugzilla; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/BugUrl/Bugzilla/Local.pm b/Bugzilla/BugUrl/Bugzilla/Local.pm index e74985eaf7..fcfb33b6ec 100644 --- a/Bugzilla/BugUrl/Bugzilla/Local.pm +++ b/Bugzilla/BugUrl/Bugzilla/Local.pm @@ -7,7 +7,7 @@ package Bugzilla::BugUrl::Bugzilla::Local; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/BugUrl/Debian.pm b/Bugzilla/BugUrl/Debian.pm index 488d853115..d1b2633174 100644 --- a/Bugzilla/BugUrl/Debian.pm +++ b/Bugzilla/BugUrl/Debian.pm @@ -7,7 +7,7 @@ package Bugzilla::BugUrl::Debian; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/BugUrl/GitHub.pm b/Bugzilla/BugUrl/GitHub.pm index a815648127..795a8e317f 100644 --- a/Bugzilla/BugUrl/GitHub.pm +++ b/Bugzilla/BugUrl/GitHub.pm @@ -7,7 +7,7 @@ package Bugzilla::BugUrl::GitHub; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/BugUrl/Google.pm b/Bugzilla/BugUrl/Google.pm index 54c405730e..e59655d68c 100644 --- a/Bugzilla/BugUrl/Google.pm +++ b/Bugzilla/BugUrl/Google.pm @@ -7,7 +7,7 @@ package Bugzilla::BugUrl::Google; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/BugUrl/JIRA.pm b/Bugzilla/BugUrl/JIRA.pm index 6c49d71184..251f054279 100644 --- a/Bugzilla/BugUrl/JIRA.pm +++ b/Bugzilla/BugUrl/JIRA.pm @@ -7,7 +7,7 @@ package Bugzilla::BugUrl::JIRA; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/BugUrl/Launchpad.pm b/Bugzilla/BugUrl/Launchpad.pm index a4ac143824..e277957735 100644 --- a/Bugzilla/BugUrl/Launchpad.pm +++ b/Bugzilla/BugUrl/Launchpad.pm @@ -7,7 +7,7 @@ package Bugzilla::BugUrl::Launchpad; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/BugUrl/MantisBT.pm b/Bugzilla/BugUrl/MantisBT.pm index 58d3ad5fd0..8b7e66669b 100644 --- a/Bugzilla/BugUrl/MantisBT.pm +++ b/Bugzilla/BugUrl/MantisBT.pm @@ -7,7 +7,7 @@ package Bugzilla::BugUrl::MantisBT; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/BugUrl/SourceForge.pm b/Bugzilla/BugUrl/SourceForge.pm index 0c2e6f4124..a0640e1360 100644 --- a/Bugzilla/BugUrl/SourceForge.pm +++ b/Bugzilla/BugUrl/SourceForge.pm @@ -7,7 +7,7 @@ package Bugzilla::BugUrl::SourceForge; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/BugUrl/Trac.pm b/Bugzilla/BugUrl/Trac.pm index c6678b3a9d..51dd414ff9 100644 --- a/Bugzilla/BugUrl/Trac.pm +++ b/Bugzilla/BugUrl/Trac.pm @@ -7,7 +7,7 @@ package Bugzilla::BugUrl::Trac; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/BugUserLastVisit.pm b/Bugzilla/BugUserLastVisit.pm index 12b9df2c7c..052574a2f4 100644 --- a/Bugzilla/BugUserLastVisit.pm +++ b/Bugzilla/BugUserLastVisit.pm @@ -7,7 +7,7 @@ package Bugzilla::BugUserLastVisit; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/CGI.pm b/Bugzilla/CGI.pm index 8404618f6d..fa8b18b162 100644 --- a/Bugzilla/CGI.pm +++ b/Bugzilla/CGI.pm @@ -7,7 +7,7 @@ package Bugzilla::CGI; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/Chart.pm b/Bugzilla/Chart.pm index 1abf3dbe4e..551f93c7e4 100644 --- a/Bugzilla/Chart.pm +++ b/Bugzilla/Chart.pm @@ -13,7 +13,7 @@ # the same points. package Bugzilla::Chart; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/Classification.pm b/Bugzilla/Classification.pm index d374a2454e..9e7275d53e 100644 --- a/Bugzilla/Classification.pm +++ b/Bugzilla/Classification.pm @@ -7,7 +7,7 @@ package Bugzilla::Classification; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/Comment.pm b/Bugzilla/Comment.pm index ab50add430..ac5341b1e2 100644 --- a/Bugzilla/Comment.pm +++ b/Bugzilla/Comment.pm @@ -7,7 +7,7 @@ package Bugzilla::Comment; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/Comment/TagWeights.pm b/Bugzilla/Comment/TagWeights.pm index e733ed8fb7..210873c91a 100644 --- a/Bugzilla/Comment/TagWeights.pm +++ b/Bugzilla/Comment/TagWeights.pm @@ -7,7 +7,7 @@ package Bugzilla::Comment::TagWeights; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/Component.pm b/Bugzilla/Component.pm index 707745627a..de1132a532 100644 --- a/Bugzilla/Component.pm +++ b/Bugzilla/Component.pm @@ -7,7 +7,7 @@ package Bugzilla::Component; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/Config.pm b/Bugzilla/Config.pm index dd5063f895..fc604cf094 100644 --- a/Bugzilla/Config.pm +++ b/Bugzilla/Config.pm @@ -7,7 +7,7 @@ package Bugzilla::Config; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/Config/Admin.pm b/Bugzilla/Config/Admin.pm index fe19d7cf0b..44173366f5 100644 --- a/Bugzilla/Config/Admin.pm +++ b/Bugzilla/Config/Admin.pm @@ -7,7 +7,7 @@ package Bugzilla::Config::Admin; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/Config/Advanced.pm b/Bugzilla/Config/Advanced.pm index 043a892d7c..203a9f7d8a 100644 --- a/Bugzilla/Config/Advanced.pm +++ b/Bugzilla/Config/Advanced.pm @@ -7,7 +7,7 @@ package Bugzilla::Config::Advanced; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/Config/Attachment.pm b/Bugzilla/Config/Attachment.pm index 0cf4b768a9..504eb01e75 100644 --- a/Bugzilla/Config/Attachment.pm +++ b/Bugzilla/Config/Attachment.pm @@ -7,7 +7,7 @@ package Bugzilla::Config::Attachment; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/Config/Auth.pm b/Bugzilla/Config/Auth.pm index 09e81339f1..43dcda8f45 100644 --- a/Bugzilla/Config/Auth.pm +++ b/Bugzilla/Config/Auth.pm @@ -7,7 +7,7 @@ package Bugzilla::Config::Auth; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/Config/BugChange.pm b/Bugzilla/Config/BugChange.pm index ad1cafefcd..e2ddf7b566 100644 --- a/Bugzilla/Config/BugChange.pm +++ b/Bugzilla/Config/BugChange.pm @@ -7,7 +7,7 @@ package Bugzilla::Config::BugChange; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/Config/BugFields.pm b/Bugzilla/Config/BugFields.pm index 1659dc66ae..adc6fe7ccb 100644 --- a/Bugzilla/Config/BugFields.pm +++ b/Bugzilla/Config/BugFields.pm @@ -7,7 +7,7 @@ package Bugzilla::Config::BugFields; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/Config/Common.pm b/Bugzilla/Config/Common.pm index 4b0c9db642..848b2ea7da 100644 --- a/Bugzilla/Config/Common.pm +++ b/Bugzilla/Config/Common.pm @@ -7,7 +7,7 @@ package Bugzilla::Config::Common; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/Config/Core.pm b/Bugzilla/Config/Core.pm index 50af9a077a..db9e731634 100644 --- a/Bugzilla/Config/Core.pm +++ b/Bugzilla/Config/Core.pm @@ -7,7 +7,7 @@ package Bugzilla::Config::Core; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/Config/DependencyGraph.pm b/Bugzilla/Config/DependencyGraph.pm index 27bc9938dd..cded1e8d0e 100644 --- a/Bugzilla/Config/DependencyGraph.pm +++ b/Bugzilla/Config/DependencyGraph.pm @@ -7,7 +7,7 @@ package Bugzilla::Config::DependencyGraph; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/Config/General.pm b/Bugzilla/Config/General.pm index 37c648d3b7..968517d937 100644 --- a/Bugzilla/Config/General.pm +++ b/Bugzilla/Config/General.pm @@ -7,7 +7,7 @@ package Bugzilla::Config::General; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/Config/GroupSecurity.pm b/Bugzilla/Config/GroupSecurity.pm index 6602cdfea5..01cb1803f8 100644 --- a/Bugzilla/Config/GroupSecurity.pm +++ b/Bugzilla/Config/GroupSecurity.pm @@ -7,7 +7,7 @@ package Bugzilla::Config::GroupSecurity; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/Config/LDAP.pm b/Bugzilla/Config/LDAP.pm index 75f58e1415..1aac80dc84 100644 --- a/Bugzilla/Config/LDAP.pm +++ b/Bugzilla/Config/LDAP.pm @@ -7,7 +7,7 @@ package Bugzilla::Config::LDAP; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/Config/MTA.pm b/Bugzilla/Config/MTA.pm index c20083279a..f3f85a7fed 100644 --- a/Bugzilla/Config/MTA.pm +++ b/Bugzilla/Config/MTA.pm @@ -7,7 +7,7 @@ package Bugzilla::Config::MTA; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/Config/Memcached.pm b/Bugzilla/Config/Memcached.pm index 5ab3364f9e..e3f8003304 100644 --- a/Bugzilla/Config/Memcached.pm +++ b/Bugzilla/Config/Memcached.pm @@ -7,7 +7,7 @@ package Bugzilla::Config::Memcached; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/Config/Query.pm b/Bugzilla/Config/Query.pm index adfb4eaf47..346551df11 100644 --- a/Bugzilla/Config/Query.pm +++ b/Bugzilla/Config/Query.pm @@ -7,7 +7,7 @@ package Bugzilla::Config::Query; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/Config/RADIUS.pm b/Bugzilla/Config/RADIUS.pm index b0a5ddbf5b..f952785e94 100644 --- a/Bugzilla/Config/RADIUS.pm +++ b/Bugzilla/Config/RADIUS.pm @@ -7,7 +7,7 @@ package Bugzilla::Config::RADIUS; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/Config/ShadowDB.pm b/Bugzilla/Config/ShadowDB.pm index 101e4678f5..3f0e0e0219 100644 --- a/Bugzilla/Config/ShadowDB.pm +++ b/Bugzilla/Config/ShadowDB.pm @@ -7,7 +7,7 @@ package Bugzilla::Config::ShadowDB; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/Config/UserMatch.pm b/Bugzilla/Config/UserMatch.pm index a1f8a3eb2b..cbd8515fa6 100644 --- a/Bugzilla/Config/UserMatch.pm +++ b/Bugzilla/Config/UserMatch.pm @@ -7,7 +7,7 @@ package Bugzilla::Config::UserMatch; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/Constants.pm b/Bugzilla/Constants.pm index a93658b856..376efb0437 100644 --- a/Bugzilla/Constants.pm +++ b/Bugzilla/Constants.pm @@ -7,7 +7,7 @@ package Bugzilla::Constants; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/DB.pm b/Bugzilla/DB.pm index f4590474cf..0a83bcf268 100644 --- a/Bugzilla/DB.pm +++ b/Bugzilla/DB.pm @@ -7,7 +7,7 @@ package Bugzilla::DB; -use 5.10.1; +use 5.14.0; use Moo; use DBI; diff --git a/Bugzilla/DB/Mysql.pm b/Bugzilla/DB/Mysql.pm index c01415f20a..625b825394 100644 --- a/Bugzilla/DB/Mysql.pm +++ b/Bugzilla/DB/Mysql.pm @@ -21,7 +21,7 @@ For interface details see L and L. package Bugzilla::DB::Mysql; -use 5.10.1; +use 5.14.0; use Moo; extends qw(Bugzilla::DB); diff --git a/Bugzilla/DB/Oracle.pm b/Bugzilla/DB/Oracle.pm index 73ffb4b455..ac2f14a63a 100644 --- a/Bugzilla/DB/Oracle.pm +++ b/Bugzilla/DB/Oracle.pm @@ -21,7 +21,7 @@ For interface details see L and L. package Bugzilla::DB::Oracle; -use 5.10.1; +use 5.14.0; use Moo; extends qw(Bugzilla::DB); @@ -744,7 +744,7 @@ sub _get_create_trigger_ddl { package Bugzilla::DB::Oracle::st; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/DB/Pg.pm b/Bugzilla/DB/Pg.pm index ec4bf3f465..319b7b6c4e 100644 --- a/Bugzilla/DB/Pg.pm +++ b/Bugzilla/DB/Pg.pm @@ -21,7 +21,7 @@ For interface details see L and L. package Bugzilla::DB::Pg; -use 5.10.1; +use 5.14.0; use Moo; use Bugzilla::Error; diff --git a/Bugzilla/DB/QuoteIdentifier.pm b/Bugzilla/DB/QuoteIdentifier.pm index dfca191019..40baab6829 100644 --- a/Bugzilla/DB/QuoteIdentifier.pm +++ b/Bugzilla/DB/QuoteIdentifier.pm @@ -7,7 +7,7 @@ package Bugzilla::DB::QuoteIdentifier; -use 5.10.1; +use 5.14.0; use Moo; has 'db' => ( diff --git a/Bugzilla/DB/Schema.pm b/Bugzilla/DB/Schema.pm index f8a0c88b66..6245bb166c 100644 --- a/Bugzilla/DB/Schema.pm +++ b/Bugzilla/DB/Schema.pm @@ -15,7 +15,7 @@ package Bugzilla::DB::Schema; # ########################################################################### -use 5.10.1; +use 5.14.0; use Moo; use Bugzilla::Error; diff --git a/Bugzilla/DB/Schema/Mysql.pm b/Bugzilla/DB/Schema/Mysql.pm index 2ab649596f..cc555f64c8 100644 --- a/Bugzilla/DB/Schema/Mysql.pm +++ b/Bugzilla/DB/Schema/Mysql.pm @@ -13,7 +13,7 @@ package Bugzilla::DB::Schema::Mysql; # ############################################################################### -use 5.10.1; +use 5.14.0; use Moo; use Bugzilla::Error; diff --git a/Bugzilla/DB/Schema/Oracle.pm b/Bugzilla/DB/Schema/Oracle.pm index 891896efc3..6e7c54b6d9 100644 --- a/Bugzilla/DB/Schema/Oracle.pm +++ b/Bugzilla/DB/Schema/Oracle.pm @@ -13,7 +13,7 @@ package Bugzilla::DB::Schema::Oracle; # ############################################################################### -use 5.10.1; +use 5.14.0; use Moo; extends qw(Bugzilla::DB::Schema); diff --git a/Bugzilla/DB/Schema/Pg.pm b/Bugzilla/DB/Schema/Pg.pm index 6249bb6398..f81c0a46de 100644 --- a/Bugzilla/DB/Schema/Pg.pm +++ b/Bugzilla/DB/Schema/Pg.pm @@ -13,7 +13,7 @@ package Bugzilla::DB::Schema::Pg; # ############################################################################### -use 5.10.1; +use 5.14.0; use Moo; extends qw(Bugzilla::DB::Schema); diff --git a/Bugzilla/DB/Schema/Sqlite.pm b/Bugzilla/DB/Schema/Sqlite.pm index 06488818b1..131b51088b 100644 --- a/Bugzilla/DB/Schema/Sqlite.pm +++ b/Bugzilla/DB/Schema/Sqlite.pm @@ -7,7 +7,7 @@ package Bugzilla::DB::Schema::Sqlite; -use 5.10.1; +use 5.14.0; use Moo; use base qw(Bugzilla::DB::Schema); diff --git a/Bugzilla/DB/Sqlite.pm b/Bugzilla/DB/Sqlite.pm index 6d7da47292..55117eb9b1 100644 --- a/Bugzilla/DB/Sqlite.pm +++ b/Bugzilla/DB/Sqlite.pm @@ -7,7 +7,7 @@ package Bugzilla::DB::Sqlite; -use 5.10.1; +use 5.14.0; use Moo; extends qw(Bugzilla::DB); diff --git a/Bugzilla/Error.pm b/Bugzilla/Error.pm index 42b2dea04b..4a5fee2952 100644 --- a/Bugzilla/Error.pm +++ b/Bugzilla/Error.pm @@ -7,7 +7,7 @@ package Bugzilla::Error; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/Extension.pm b/Bugzilla/Extension.pm index 4e01b5d9c9..b955fa6381 100644 --- a/Bugzilla/Extension.pm +++ b/Bugzilla/Extension.pm @@ -7,7 +7,7 @@ package Bugzilla::Extension; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/Field.pm b/Bugzilla/Field.pm index cf2ba46a83..1656f917a1 100644 --- a/Bugzilla/Field.pm +++ b/Bugzilla/Field.pm @@ -57,7 +57,7 @@ in addition to what is documented here. package Bugzilla::Field; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/Field/Choice.pm b/Bugzilla/Field/Choice.pm index b96af2187f..34699fc7fc 100644 --- a/Bugzilla/Field/Choice.pm +++ b/Bugzilla/Field/Choice.pm @@ -7,7 +7,7 @@ package Bugzilla::Field::Choice; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/Field/ChoiceInterface.pm b/Bugzilla/Field/ChoiceInterface.pm index eeedfca83f..91c49fb0a0 100644 --- a/Bugzilla/Field/ChoiceInterface.pm +++ b/Bugzilla/Field/ChoiceInterface.pm @@ -7,7 +7,7 @@ package Bugzilla::Field::ChoiceInterface; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/Flag.pm b/Bugzilla/Flag.pm index 969e8bc706..8bbc477477 100644 --- a/Bugzilla/Flag.pm +++ b/Bugzilla/Flag.pm @@ -7,7 +7,7 @@ package Bugzilla::Flag; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/FlagType.pm b/Bugzilla/FlagType.pm index ade62c1150..6c05c4e897 100644 --- a/Bugzilla/FlagType.pm +++ b/Bugzilla/FlagType.pm @@ -7,7 +7,7 @@ package Bugzilla::FlagType; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/Group.pm b/Bugzilla/Group.pm index 3763e74fcb..cf10ff0a29 100644 --- a/Bugzilla/Group.pm +++ b/Bugzilla/Group.pm @@ -7,7 +7,7 @@ package Bugzilla::Group; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/Hook.pm b/Bugzilla/Hook.pm index f5c67c6920..0718d4d19c 100644 --- a/Bugzilla/Hook.pm +++ b/Bugzilla/Hook.pm @@ -7,7 +7,7 @@ package Bugzilla::Hook; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/Install.pm b/Bugzilla/Install.pm index cb05c44e96..c9bbd42ec2 100644 --- a/Bugzilla/Install.pm +++ b/Bugzilla/Install.pm @@ -15,7 +15,7 @@ package Bugzilla::Install; # make those assumptions, then it should go into one of the # packages under the Bugzilla::Install namespace. -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/Install/CPAN.pm b/Bugzilla/Install/CPAN.pm index dd6db28daf..c2df627f0e 100644 --- a/Bugzilla/Install/CPAN.pm +++ b/Bugzilla/Install/CPAN.pm @@ -7,7 +7,7 @@ package Bugzilla::Install::CPAN; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/Install/DB.pm b/Bugzilla/Install/DB.pm index 01b30b3bfa..85a751e599 100644 --- a/Bugzilla/Install/DB.pm +++ b/Bugzilla/Install/DB.pm @@ -10,7 +10,7 @@ package Bugzilla::Install::DB; # NOTE: This package may "use" any modules that it likes, # localconfig is available, and params are up to date. -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/Install/Filesystem.pm b/Bugzilla/Install/Filesystem.pm index 406e46bda9..13fee1c115 100644 --- a/Bugzilla/Install/Filesystem.pm +++ b/Bugzilla/Install/Filesystem.pm @@ -15,7 +15,7 @@ package Bugzilla::Install::Filesystem; # * Files do not have the correct permissions. # * The database does not exist. -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/Install/Localconfig.pm b/Bugzilla/Install/Localconfig.pm index e06a517488..8006530d9d 100644 --- a/Bugzilla/Install/Localconfig.pm +++ b/Bugzilla/Install/Localconfig.pm @@ -15,7 +15,7 @@ package Bugzilla::Install::Localconfig; # * Files do not have the correct permissions # * The database is not up to date -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/Install/Requirements.pm b/Bugzilla/Install/Requirements.pm index 83a1c5b7a8..a5cae14aec 100644 --- a/Bugzilla/Install/Requirements.pm +++ b/Bugzilla/Install/Requirements.pm @@ -13,7 +13,7 @@ package Bugzilla::Install::Requirements; # Subroutines may "require" and "import" from modules, but they # MUST NOT "use." -use 5.10.1; +use 5.14.0; use strict; use warnings; @@ -745,7 +745,6 @@ sub have_vers { } $vnum ||= -1; - # Must do a string comparison as $vnum may be of the form 5.10.1. my $vok = ($vnum ne '-1' && version->new($vnum) >= version->new($wanted)) ? 1 : 0; my $blacklisted; diff --git a/Bugzilla/Install/Util.pm b/Bugzilla/Install/Util.pm index 8d8b6b410c..3b021b9833 100644 --- a/Bugzilla/Install/Util.pm +++ b/Bugzilla/Install/Util.pm @@ -11,7 +11,7 @@ package Bugzilla::Install::Util; # module may require *only* Bugzilla::Constants and built-in # perl modules. -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/Job/BugMail.pm b/Bugzilla/Job/BugMail.pm index 157fd2971a..78bec19e4e 100644 --- a/Bugzilla/Job/BugMail.pm +++ b/Bugzilla/Job/BugMail.pm @@ -7,7 +7,7 @@ package Bugzilla::Job::BugMail; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/Job/Mailer.pm b/Bugzilla/Job/Mailer.pm index c2f1fea11e..904fd9eb19 100644 --- a/Bugzilla/Job/Mailer.pm +++ b/Bugzilla/Job/Mailer.pm @@ -7,7 +7,7 @@ package Bugzilla::Job::Mailer; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/JobQueue.pm b/Bugzilla/JobQueue.pm index 4777e6b0ca..1a45d471b6 100644 --- a/Bugzilla/JobQueue.pm +++ b/Bugzilla/JobQueue.pm @@ -7,7 +7,7 @@ package Bugzilla::JobQueue; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/JobQueue/Runner.pm b/Bugzilla/JobQueue/Runner.pm index d339d498b7..ec51c2353b 100644 --- a/Bugzilla/JobQueue/Runner.pm +++ b/Bugzilla/JobQueue/Runner.pm @@ -11,7 +11,7 @@ package Bugzilla::JobQueue::Runner; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/Keyword.pm b/Bugzilla/Keyword.pm index 5c17e5797e..a8be1f5389 100644 --- a/Bugzilla/Keyword.pm +++ b/Bugzilla/Keyword.pm @@ -7,7 +7,7 @@ package Bugzilla::Keyword; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/MIME.pm b/Bugzilla/MIME.pm index 6df7ce2b29..065166da27 100644 --- a/Bugzilla/MIME.pm +++ b/Bugzilla/MIME.pm @@ -7,7 +7,7 @@ package Bugzilla::MIME; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/Mailer.pm b/Bugzilla/Mailer.pm index 0783bbf16a..1cd70b1e2d 100644 --- a/Bugzilla/Mailer.pm +++ b/Bugzilla/Mailer.pm @@ -7,7 +7,7 @@ package Bugzilla::Mailer; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/Memcached.pm b/Bugzilla/Memcached.pm index 2f30c186a8..6d16336868 100644 --- a/Bugzilla/Memcached.pm +++ b/Bugzilla/Memcached.pm @@ -7,7 +7,7 @@ package Bugzilla::Memcached; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/Migrate.pm b/Bugzilla/Migrate.pm index d8189f5f3f..75ec18ebc6 100644 --- a/Bugzilla/Migrate.pm +++ b/Bugzilla/Migrate.pm @@ -7,7 +7,7 @@ package Bugzilla::Migrate; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/Migrate/Gnats.pm b/Bugzilla/Migrate/Gnats.pm index 4b53e49849..1a2110c5c4 100644 --- a/Bugzilla/Migrate/Gnats.pm +++ b/Bugzilla/Migrate/Gnats.pm @@ -7,7 +7,7 @@ package Bugzilla::Migrate::Gnats; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/Milestone.pm b/Bugzilla/Milestone.pm index 8b9288410d..149255a88e 100644 --- a/Bugzilla/Milestone.pm +++ b/Bugzilla/Milestone.pm @@ -7,7 +7,7 @@ package Bugzilla::Milestone; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/Object.pm b/Bugzilla/Object.pm index 753ad9047c..67335b8606 100644 --- a/Bugzilla/Object.pm +++ b/Bugzilla/Object.pm @@ -7,7 +7,7 @@ package Bugzilla::Object; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/Product.pm b/Bugzilla/Product.pm index f826386ca9..1a4524033d 100644 --- a/Bugzilla/Product.pm +++ b/Bugzilla/Product.pm @@ -7,7 +7,7 @@ package Bugzilla::Product; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/RNG.pm b/Bugzilla/RNG.pm index 37ac937a29..d95ab5d552 100644 --- a/Bugzilla/RNG.pm +++ b/Bugzilla/RNG.pm @@ -7,7 +7,7 @@ package Bugzilla::RNG; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/Report.pm b/Bugzilla/Report.pm index 1d44e03dde..d9a65cdd9b 100644 --- a/Bugzilla/Report.pm +++ b/Bugzilla/Report.pm @@ -7,7 +7,7 @@ package Bugzilla::Report; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/Search.pm b/Bugzilla/Search.pm index f8133ba668..52071ec0b3 100644 --- a/Bugzilla/Search.pm +++ b/Bugzilla/Search.pm @@ -7,7 +7,7 @@ package Bugzilla::Search; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/Search/Clause.pm b/Bugzilla/Search/Clause.pm index 940f88ff3a..1f61cd6800 100644 --- a/Bugzilla/Search/Clause.pm +++ b/Bugzilla/Search/Clause.pm @@ -7,7 +7,7 @@ package Bugzilla::Search::Clause; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/Search/ClauseGroup.pm b/Bugzilla/Search/ClauseGroup.pm index deecb0ce35..548da8a7cb 100644 --- a/Bugzilla/Search/ClauseGroup.pm +++ b/Bugzilla/Search/ClauseGroup.pm @@ -7,7 +7,7 @@ package Bugzilla::Search::ClauseGroup; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/Search/Condition.pm b/Bugzilla/Search/Condition.pm index 36c6c11f2e..39be9f654b 100644 --- a/Bugzilla/Search/Condition.pm +++ b/Bugzilla/Search/Condition.pm @@ -7,7 +7,7 @@ package Bugzilla::Search::Condition; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/Search/Quicksearch.pm b/Bugzilla/Search/Quicksearch.pm index 7249683202..13f35c3f0e 100644 --- a/Bugzilla/Search/Quicksearch.pm +++ b/Bugzilla/Search/Quicksearch.pm @@ -7,7 +7,7 @@ package Bugzilla::Search::Quicksearch; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/Search/Recent.pm b/Bugzilla/Search/Recent.pm index 3a5d9f244b..e6dd15a366 100644 --- a/Bugzilla/Search/Recent.pm +++ b/Bugzilla/Search/Recent.pm @@ -7,7 +7,7 @@ package Bugzilla::Search::Recent; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/Search/Saved.pm b/Bugzilla/Search/Saved.pm index 72ff822f55..20cd93804d 100644 --- a/Bugzilla/Search/Saved.pm +++ b/Bugzilla/Search/Saved.pm @@ -7,7 +7,7 @@ package Bugzilla::Search::Saved; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/Sender/Transport/Sendmail.pm b/Bugzilla/Sender/Transport/Sendmail.pm index 2c08304b98..fdc71729c7 100644 --- a/Bugzilla/Sender/Transport/Sendmail.pm +++ b/Bugzilla/Sender/Transport/Sendmail.pm @@ -7,7 +7,7 @@ package Bugzilla::Sender::Transport::Sendmail; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/Series.pm b/Bugzilla/Series.pm index ec0a16e34e..d716ad6e55 100644 --- a/Bugzilla/Series.pm +++ b/Bugzilla/Series.pm @@ -14,7 +14,7 @@ package Bugzilla::Series; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/Status.pm b/Bugzilla/Status.pm index a318de7295..21e7bcaa02 100644 --- a/Bugzilla/Status.pm +++ b/Bugzilla/Status.pm @@ -7,7 +7,7 @@ package Bugzilla::Status; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/Template.pm b/Bugzilla/Template.pm index dfe8069fe5..8a65f35aa5 100644 --- a/Bugzilla/Template.pm +++ b/Bugzilla/Template.pm @@ -8,7 +8,7 @@ package Bugzilla::Template; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/Template/Context.pm b/Bugzilla/Template/Context.pm index bbd7a01c51..90dbbda88e 100644 --- a/Bugzilla/Template/Context.pm +++ b/Bugzilla/Template/Context.pm @@ -8,7 +8,7 @@ # This exists to implement the template-before_process hook. package Bugzilla::Template::Context; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/Template/Plugin/Bugzilla.pm b/Bugzilla/Template/Plugin/Bugzilla.pm index b076a9d7c0..abe542ccdc 100644 --- a/Bugzilla/Template/Plugin/Bugzilla.pm +++ b/Bugzilla/Template/Plugin/Bugzilla.pm @@ -7,7 +7,7 @@ package Bugzilla::Template::Plugin::Bugzilla; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/Template/Plugin/Hook.pm b/Bugzilla/Template/Plugin/Hook.pm index 9ce093d2b9..e315ab79ec 100644 --- a/Bugzilla/Template/Plugin/Hook.pm +++ b/Bugzilla/Template/Plugin/Hook.pm @@ -7,7 +7,7 @@ package Bugzilla::Template::Plugin::Hook; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/Token.pm b/Bugzilla/Token.pm index 8f3de57864..66aaf8425f 100644 --- a/Bugzilla/Token.pm +++ b/Bugzilla/Token.pm @@ -7,7 +7,7 @@ package Bugzilla::Token; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/Update.pm b/Bugzilla/Update.pm index 9f92881622..516de43e8b 100644 --- a/Bugzilla/Update.pm +++ b/Bugzilla/Update.pm @@ -7,7 +7,7 @@ package Bugzilla::Update; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/User.pm b/Bugzilla/User.pm index ee765a0145..847d13c300 100644 --- a/Bugzilla/User.pm +++ b/Bugzilla/User.pm @@ -7,7 +7,7 @@ package Bugzilla::User; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/User/APIKey.pm b/Bugzilla/User/APIKey.pm index d811331df2..7b7699deeb 100644 --- a/Bugzilla/User/APIKey.pm +++ b/Bugzilla/User/APIKey.pm @@ -7,7 +7,7 @@ package Bugzilla::User::APIKey; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/User/Setting.pm b/Bugzilla/User/Setting.pm index 0f528e9466..1b2ecf25c6 100644 --- a/Bugzilla/User/Setting.pm +++ b/Bugzilla/User/Setting.pm @@ -8,7 +8,7 @@ package Bugzilla::User::Setting; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/User/Setting/Lang.pm b/Bugzilla/User/Setting/Lang.pm index 5f49bc6e4d..b8aea7e095 100644 --- a/Bugzilla/User/Setting/Lang.pm +++ b/Bugzilla/User/Setting/Lang.pm @@ -7,7 +7,7 @@ package Bugzilla::User::Setting::Lang; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/User/Setting/Skin.pm b/Bugzilla/User/Setting/Skin.pm index c28a44221e..73e3a2c536 100644 --- a/Bugzilla/User/Setting/Skin.pm +++ b/Bugzilla/User/Setting/Skin.pm @@ -8,7 +8,7 @@ package Bugzilla::User::Setting::Skin; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/User/Setting/Timezone.pm b/Bugzilla/User/Setting/Timezone.pm index 6e20f1fc27..a4069da8af 100644 --- a/Bugzilla/User/Setting/Timezone.pm +++ b/Bugzilla/User/Setting/Timezone.pm @@ -7,7 +7,7 @@ package Bugzilla::User::Setting::Timezone; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/UserAgent.pm b/Bugzilla/UserAgent.pm index 6a531136b9..aad0cae67c 100644 --- a/Bugzilla/UserAgent.pm +++ b/Bugzilla/UserAgent.pm @@ -7,7 +7,7 @@ package Bugzilla::UserAgent; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/Util.pm b/Bugzilla/Util.pm index ce0644f9b3..0f786cef69 100644 --- a/Bugzilla/Util.pm +++ b/Bugzilla/Util.pm @@ -7,7 +7,7 @@ package Bugzilla::Util; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/Version.pm b/Bugzilla/Version.pm index f4e90d5cad..a96030265b 100644 --- a/Bugzilla/Version.pm +++ b/Bugzilla/Version.pm @@ -7,7 +7,7 @@ package Bugzilla::Version; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/WebService.pm b/Bugzilla/WebService.pm index 2630e35651..16bc86e615 100644 --- a/Bugzilla/WebService.pm +++ b/Bugzilla/WebService.pm @@ -9,7 +9,7 @@ # actual RPC server, see Bugzilla::WebService::Server and its subclasses. package Bugzilla::WebService; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/WebService/Bug.pm b/Bugzilla/WebService/Bug.pm index d1a226268d..b4834d9640 100644 --- a/Bugzilla/WebService/Bug.pm +++ b/Bugzilla/WebService/Bug.pm @@ -7,7 +7,7 @@ package Bugzilla::WebService::Bug; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/WebService/BugUserLastVisit.pm b/Bugzilla/WebService/BugUserLastVisit.pm index 3937f32d99..240191383e 100644 --- a/Bugzilla/WebService/BugUserLastVisit.pm +++ b/Bugzilla/WebService/BugUserLastVisit.pm @@ -7,7 +7,7 @@ package Bugzilla::WebService::BugUserLastVisit; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/WebService/Bugzilla.pm b/Bugzilla/WebService/Bugzilla.pm index 23e0348915..721e9d0cb0 100644 --- a/Bugzilla/WebService/Bugzilla.pm +++ b/Bugzilla/WebService/Bugzilla.pm @@ -7,7 +7,7 @@ package Bugzilla::WebService::Bugzilla; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/WebService/Classification.pm b/Bugzilla/WebService/Classification.pm index 62f5936600..be7991e956 100644 --- a/Bugzilla/WebService/Classification.pm +++ b/Bugzilla/WebService/Classification.pm @@ -7,7 +7,7 @@ package Bugzilla::WebService::Classification; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/WebService/Component.pm b/Bugzilla/WebService/Component.pm index 802f40c73e..af74d599a8 100644 --- a/Bugzilla/WebService/Component.pm +++ b/Bugzilla/WebService/Component.pm @@ -7,7 +7,7 @@ package Bugzilla::WebService::Component; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/WebService/Constants.pm b/Bugzilla/WebService/Constants.pm index 74ca897924..c2736e00a7 100644 --- a/Bugzilla/WebService/Constants.pm +++ b/Bugzilla/WebService/Constants.pm @@ -7,7 +7,7 @@ package Bugzilla::WebService::Constants; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/WebService/FlagType.pm b/Bugzilla/WebService/FlagType.pm index a9515eb7a6..99767eeace 100644 --- a/Bugzilla/WebService/FlagType.pm +++ b/Bugzilla/WebService/FlagType.pm @@ -7,7 +7,7 @@ package Bugzilla::WebService::FlagType; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/WebService/Group.pm b/Bugzilla/WebService/Group.pm index b66b21f06d..fc7aed87b8 100644 --- a/Bugzilla/WebService/Group.pm +++ b/Bugzilla/WebService/Group.pm @@ -7,7 +7,7 @@ package Bugzilla::WebService::Group; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/WebService/Product.pm b/Bugzilla/WebService/Product.pm index 350dadde35..eecad472da 100644 --- a/Bugzilla/WebService/Product.pm +++ b/Bugzilla/WebService/Product.pm @@ -7,7 +7,7 @@ package Bugzilla::WebService::Product; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/WebService/Server.pm b/Bugzilla/WebService/Server.pm index f2844cdcb2..190c3d5695 100644 --- a/Bugzilla/WebService/Server.pm +++ b/Bugzilla/WebService/Server.pm @@ -7,7 +7,7 @@ package Bugzilla::WebService::Server; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/WebService/Server/JSONRPC.pm b/Bugzilla/WebService/Server/JSONRPC.pm index 7847029bab..f8f5c9e1de 100644 --- a/Bugzilla/WebService/Server/JSONRPC.pm +++ b/Bugzilla/WebService/Server/JSONRPC.pm @@ -7,7 +7,7 @@ package Bugzilla::WebService::Server::JSONRPC; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/WebService/Server/REST.pm b/Bugzilla/WebService/Server/REST.pm index 70cd82efef..2ccc3bbc13 100644 --- a/Bugzilla/WebService/Server/REST.pm +++ b/Bugzilla/WebService/Server/REST.pm @@ -7,7 +7,7 @@ package Bugzilla::WebService::Server::REST; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/WebService/Server/REST/Resources/Bug.pm b/Bugzilla/WebService/Server/REST/Resources/Bug.pm index 5cc25f4326..01a75f5ac8 100644 --- a/Bugzilla/WebService/Server/REST/Resources/Bug.pm +++ b/Bugzilla/WebService/Server/REST/Resources/Bug.pm @@ -7,7 +7,7 @@ package Bugzilla::WebService::Server::REST::Resources::Bug; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/WebService/Server/REST/Resources/BugUserLastVisit.pm b/Bugzilla/WebService/Server/REST/Resources/BugUserLastVisit.pm index 806c3f9c79..4211edb196 100644 --- a/Bugzilla/WebService/Server/REST/Resources/BugUserLastVisit.pm +++ b/Bugzilla/WebService/Server/REST/Resources/BugUserLastVisit.pm @@ -7,7 +7,7 @@ package Bugzilla::WebService::Server::REST::Resources::BugUserLastVisit; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/WebService/Server/REST/Resources/Bugzilla.pm b/Bugzilla/WebService/Server/REST/Resources/Bugzilla.pm index 072cfe2f6a..0fd6a9838d 100644 --- a/Bugzilla/WebService/Server/REST/Resources/Bugzilla.pm +++ b/Bugzilla/WebService/Server/REST/Resources/Bugzilla.pm @@ -7,7 +7,7 @@ package Bugzilla::WebService::Server::REST::Resources::Bugzilla; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/WebService/Server/REST/Resources/Classification.pm b/Bugzilla/WebService/Server/REST/Resources/Classification.pm index ed65aea5c9..f70e3cd5e2 100644 --- a/Bugzilla/WebService/Server/REST/Resources/Classification.pm +++ b/Bugzilla/WebService/Server/REST/Resources/Classification.pm @@ -7,7 +7,7 @@ package Bugzilla::WebService::Server::REST::Resources::Classification; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/WebService/Server/REST/Resources/Component.pm b/Bugzilla/WebService/Server/REST/Resources/Component.pm index 8870a0f040..d688b66b45 100644 --- a/Bugzilla/WebService/Server/REST/Resources/Component.pm +++ b/Bugzilla/WebService/Server/REST/Resources/Component.pm @@ -7,7 +7,7 @@ package Bugzilla::WebService::Server::REST::Resources::Component; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/WebService/Server/REST/Resources/FlagType.pm b/Bugzilla/WebService/Server/REST/Resources/FlagType.pm index 438c8fb308..2bc4ce6e2f 100644 --- a/Bugzilla/WebService/Server/REST/Resources/FlagType.pm +++ b/Bugzilla/WebService/Server/REST/Resources/FlagType.pm @@ -7,7 +7,7 @@ package Bugzilla::WebService::Server::REST::Resources::FlagType; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/WebService/Server/REST/Resources/Group.pm b/Bugzilla/WebService/Server/REST/Resources/Group.pm index 7f607b7d1e..d2e2604df9 100644 --- a/Bugzilla/WebService/Server/REST/Resources/Group.pm +++ b/Bugzilla/WebService/Server/REST/Resources/Group.pm @@ -7,7 +7,7 @@ package Bugzilla::WebService::Server::REST::Resources::Group; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/WebService/Server/REST/Resources/Product.pm b/Bugzilla/WebService/Server/REST/Resources/Product.pm index eabe196813..2df867e54d 100644 --- a/Bugzilla/WebService/Server/REST/Resources/Product.pm +++ b/Bugzilla/WebService/Server/REST/Resources/Product.pm @@ -7,7 +7,7 @@ package Bugzilla::WebService::Server::REST::Resources::Product; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/WebService/Server/REST/Resources/User.pm b/Bugzilla/WebService/Server/REST/Resources/User.pm index 4555b4dbc8..6b817d88e7 100644 --- a/Bugzilla/WebService/Server/REST/Resources/User.pm +++ b/Bugzilla/WebService/Server/REST/Resources/User.pm @@ -7,7 +7,7 @@ package Bugzilla::WebService::Server::REST::Resources::User; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/WebService/Server/XMLRPC.pm b/Bugzilla/WebService/Server/XMLRPC.pm index 0e48b05725..7aeed36b1c 100644 --- a/Bugzilla/WebService/Server/XMLRPC.pm +++ b/Bugzilla/WebService/Server/XMLRPC.pm @@ -7,7 +7,7 @@ package Bugzilla::WebService::Server::XMLRPC; -use 5.10.1; +use 5.14.0; use strict; use warnings; @@ -128,7 +128,7 @@ sub handle_login { # and also, in some cases, to more-usefully decode them. package Bugzilla::XMLRPC::Deserializer; -use 5.10.1; +use 5.14.0; use strict; use warnings; @@ -254,7 +254,7 @@ sub _validation_subs { package Bugzilla::XMLRPC::SOM; -use 5.10.1; +use 5.14.0; use strict; use warnings; @@ -281,7 +281,7 @@ sub paramsin { # See http://rt.cpan.org/Public/Bug/Display.html?id=32952. package Bugzilla::XMLRPC::Serializer; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/WebService/User.pm b/Bugzilla/WebService/User.pm index 2078cc9a3d..b33ba16112 100644 --- a/Bugzilla/WebService/User.pm +++ b/Bugzilla/WebService/User.pm @@ -7,7 +7,7 @@ package Bugzilla::WebService::User; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/WebService/Util.pm b/Bugzilla/WebService/Util.pm index 2b7e3de722..807daa78ce 100644 --- a/Bugzilla/WebService/Util.pm +++ b/Bugzilla/WebService/Util.pm @@ -7,7 +7,7 @@ package Bugzilla::WebService::Util; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/Whine.pm b/Bugzilla/Whine.pm index 67fc6cc5d6..d2d98a5675 100644 --- a/Bugzilla/Whine.pm +++ b/Bugzilla/Whine.pm @@ -7,7 +7,7 @@ package Bugzilla::Whine; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/Whine/Query.pm b/Bugzilla/Whine/Query.pm index 95b0ab6f17..1a12acc793 100644 --- a/Bugzilla/Whine/Query.pm +++ b/Bugzilla/Whine/Query.pm @@ -7,7 +7,7 @@ package Bugzilla::Whine::Query; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Bugzilla/Whine/Schedule.pm b/Bugzilla/Whine/Schedule.pm index 84b901b58d..1309d4bc3e 100644 --- a/Bugzilla/Whine/Schedule.pm +++ b/Bugzilla/Whine/Schedule.pm @@ -7,7 +7,7 @@ package Bugzilla::Whine::Schedule; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/Build.PL b/Build.PL index 024a560248..87646d4448 100644 --- a/Build.PL +++ b/Build.PL @@ -6,7 +6,7 @@ # This Source Code Form is "Incompatible With Secondary Licenses", as # defined by the Mozilla Public License, v. 2.0. -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/admin.cgi b/admin.cgi index 2ba0cdc7fd..f7e6d92cb5 100755 --- a/admin.cgi +++ b/admin.cgi @@ -6,7 +6,7 @@ # This Source Code Form is "Incompatible With Secondary Licenses", as # defined by the Mozilla Public License, v. 2.0. -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/attachment.cgi b/attachment.cgi index d404c85dfa..651dac6f03 100755 --- a/attachment.cgi +++ b/attachment.cgi @@ -6,7 +6,7 @@ # This Source Code Form is "Incompatible With Secondary Licenses", as # defined by the Mozilla Public License, v. 2.0. -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/buglist.cgi b/buglist.cgi index 57b5939305..df644f6d7e 100755 --- a/buglist.cgi +++ b/buglist.cgi @@ -6,7 +6,7 @@ # This Source Code Form is "Incompatible With Secondary Licenses", as # defined by the Mozilla Public License, v. 2.0. -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/chart.cgi b/chart.cgi index bfbbf300e0..0df1c5b2b2 100755 --- a/chart.cgi +++ b/chart.cgi @@ -27,7 +27,7 @@ # Bonus: # Offer subscription when you get a "series already exists" error? -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/checksetup.pl b/checksetup.pl index 8575849372..745474dce5 100755 --- a/checksetup.pl +++ b/checksetup.pl @@ -12,7 +12,7 @@ # Initialization ###################################################################### -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/clean-bug-user-last-visit.pl b/clean-bug-user-last-visit.pl index d9d9f83be2..b2f2ee187d 100755 --- a/clean-bug-user-last-visit.pl +++ b/clean-bug-user-last-visit.pl @@ -19,7 +19,7 @@ It takes no arguments and produces no output except in the case of errors. =cut -use 5.10.1; +use 5.14.0; use strict; use warnings; use lib qw(. lib); diff --git a/colchange.cgi b/colchange.cgi index c5f08b7948..281cbfca20 100755 --- a/colchange.cgi +++ b/colchange.cgi @@ -6,7 +6,7 @@ # This Source Code Form is "Incompatible With Secondary Licenses", as # defined by the Mozilla Public License, v. 2.0. -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/collectstats.pl b/collectstats.pl index f7a9264993..47ec919cb3 100755 --- a/collectstats.pl +++ b/collectstats.pl @@ -6,7 +6,7 @@ # This Source Code Form is "Incompatible With Secondary Licenses", as # defined by the Mozilla Public License, v. 2.0. -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/config.cgi b/config.cgi index 3a939803d1..33c10201f8 100755 --- a/config.cgi +++ b/config.cgi @@ -6,7 +6,7 @@ # This Source Code Form is "Incompatible With Secondary Licenses", as # defined by the Mozilla Public License, v. 2.0. -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/contrib/Bugzilla.pm b/contrib/Bugzilla.pm index e7452bbb82..6806b36ebc 100644 --- a/contrib/Bugzilla.pm +++ b/contrib/Bugzilla.pm @@ -4,7 +4,7 @@ package Bugzilla; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/contrib/bz_webservice_demo.pl b/contrib/bz_webservice_demo.pl index bf6d504ad1..c6fd77eeb8 100755 --- a/contrib/bz_webservice_demo.pl +++ b/contrib/bz_webservice_demo.pl @@ -18,7 +18,7 @@ C for detailed help =cut -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/contrib/bzdbcopy.pl b/contrib/bzdbcopy.pl index b92d9205dc..d77acb93af 100755 --- a/contrib/bzdbcopy.pl +++ b/contrib/bzdbcopy.pl @@ -6,7 +6,7 @@ # This Source Code Form is "Incompatible With Secondary Licenses", as # defined by the Mozilla Public License, v. 2.0. -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/contrib/convert-workflow.pl b/contrib/convert-workflow.pl index f25bb0ea72..bd3a1a2ee1 100755 --- a/contrib/convert-workflow.pl +++ b/contrib/convert-workflow.pl @@ -6,7 +6,7 @@ # This Source Code Form is "Incompatible With Secondary Licenses", as # defined by the Mozilla Public License, v. 2.0. -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/contrib/extension-convert.pl b/contrib/extension-convert.pl index a70888dc14..fd2daea0ee 100755 --- a/contrib/extension-convert.pl +++ b/contrib/extension-convert.pl @@ -6,7 +6,7 @@ # This Source Code Form is "Incompatible With Secondary Licenses", as # defined by the Mozilla Public License, v. 2.0. -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/contrib/fixperms.pl b/contrib/fixperms.pl index 33b042c66b..7e0d5820d8 100755 --- a/contrib/fixperms.pl +++ b/contrib/fixperms.pl @@ -6,7 +6,7 @@ # This Source Code Form is "Incompatible With Secondary Licenses", as # defined by the Mozilla Public License, v. 2.0. -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/contrib/merge-users.pl b/contrib/merge-users.pl index 02129980d2..df68a942c6 100755 --- a/contrib/merge-users.pl +++ b/contrib/merge-users.pl @@ -6,7 +6,7 @@ # This Source Code Form is "Incompatible With Secondary Licenses", as # defined by the Mozilla Public License, v. 2.0. -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/contrib/mysqld-watcher.pl b/contrib/mysqld-watcher.pl index 5dbbe320ad..57a0f1206c 100755 --- a/contrib/mysqld-watcher.pl +++ b/contrib/mysqld-watcher.pl @@ -9,7 +9,7 @@ # mysqld-watcher.pl - a script that watches the running instance of # mysqld and kills off any long-running SELECTs against the shadow_db # -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/contrib/perl-fmt b/contrib/perl-fmt index 7ac47eeb80..2aef4184a4 100755 --- a/contrib/perl-fmt +++ b/contrib/perl-fmt @@ -6,7 +6,7 @@ # This Source Code Form is "Incompatible With Secondary Licenses", as # defined by the Mozilla Public License, v. 2.0. -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/contrib/recode.pl b/contrib/recode.pl index fdb3ae0acb..8b3b8818d5 100755 --- a/contrib/recode.pl +++ b/contrib/recode.pl @@ -6,7 +6,7 @@ # This Source Code Form is "Incompatible With Secondary Licenses", as # defined by the Mozilla Public License, v. 2.0. -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/contrib/sendbugmail.pl b/contrib/sendbugmail.pl index b1b5fa8a53..bd34d3daf5 100755 --- a/contrib/sendbugmail.pl +++ b/contrib/sendbugmail.pl @@ -6,7 +6,7 @@ # This Source Code Form is "Incompatible With Secondary Licenses", as # defined by the Mozilla Public License, v. 2.0. -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/contrib/sendunsentbugmail.pl b/contrib/sendunsentbugmail.pl index 58bde594c9..2a68d843b4 100755 --- a/contrib/sendunsentbugmail.pl +++ b/contrib/sendunsentbugmail.pl @@ -6,7 +6,7 @@ # This Source Code Form is "Incompatible With Secondary Licenses", as # defined by the Mozilla Public License, v. 2.0. -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/contrib/syncLDAP.pl b/contrib/syncLDAP.pl index 4c75bbc1fb..8e82e00f72 100755 --- a/contrib/syncLDAP.pl +++ b/contrib/syncLDAP.pl @@ -6,7 +6,7 @@ # This Source Code Form is "Incompatible With Secondary Licenses", as # defined by the Mozilla Public License, v. 2.0. -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/createaccount.cgi b/createaccount.cgi index 0251114e80..b60ae4bb37 100755 --- a/createaccount.cgi +++ b/createaccount.cgi @@ -6,7 +6,7 @@ # This Source Code Form is "Incompatible With Secondary Licenses", as # defined by the Mozilla Public License, v. 2.0. -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/describecomponents.cgi b/describecomponents.cgi index 19e1af4a5f..8817dbae95 100755 --- a/describecomponents.cgi +++ b/describecomponents.cgi @@ -6,7 +6,7 @@ # This Source Code Form is "Incompatible With Secondary Licenses", as # defined by the Mozilla Public License, v. 2.0. -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/describekeywords.cgi b/describekeywords.cgi index ac18d5f227..d6f07650ee 100755 --- a/describekeywords.cgi +++ b/describekeywords.cgi @@ -6,7 +6,7 @@ # This Source Code Form is "Incompatible With Secondary Licenses", as # defined by the Mozilla Public License, v. 2.0. -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/docs/en/rst/conf.py b/docs/en/rst/conf.py index 2e37edd17e..b2bf9ec5e5 100644 --- a/docs/en/rst/conf.py +++ b/docs/en/rst/conf.py @@ -113,7 +113,7 @@ rst_prolog = """ .. role:: field :class: field -.. |min-perl-ver| replace:: 5.10.1 +.. |min-perl-ver| replace:: 5.14.0 """ rst_epilog = """ diff --git a/docs/lib/Pod/Simple/HTML/Bugzilla.pm b/docs/lib/Pod/Simple/HTML/Bugzilla.pm index c95b031cfa..cb29b0bf9c 100644 --- a/docs/lib/Pod/Simple/HTML/Bugzilla.pm +++ b/docs/lib/Pod/Simple/HTML/Bugzilla.pm @@ -7,7 +7,7 @@ package Pod::Simple::HTML::Bugzilla; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/docs/lib/Pod/Simple/HTMLBatch/Bugzilla.pm b/docs/lib/Pod/Simple/HTMLBatch/Bugzilla.pm index d800e176e1..a156f4d83d 100644 --- a/docs/lib/Pod/Simple/HTMLBatch/Bugzilla.pm +++ b/docs/lib/Pod/Simple/HTMLBatch/Bugzilla.pm @@ -7,7 +7,7 @@ package Pod::Simple::HTMLBatch::Bugzilla; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/docs/makedocs.pl b/docs/makedocs.pl index a95954c36a..c29b2adcc2 100755 --- a/docs/makedocs.pl +++ b/docs/makedocs.pl @@ -23,7 +23,7 @@ # All these TeX packages together are close to a gig :-| But after you've # installed them, you can remove texlive-latex-extra-doc to save 400MB. -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/duplicates.cgi b/duplicates.cgi index 5f22d00840..dff002d6d0 100755 --- a/duplicates.cgi +++ b/duplicates.cgi @@ -6,7 +6,7 @@ # This Source Code Form is "Incompatible With Secondary Licenses", as # defined by the Mozilla Public License, v. 2.0. -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/editclassifications.cgi b/editclassifications.cgi index b2797af3d5..b9cb36cbd1 100755 --- a/editclassifications.cgi +++ b/editclassifications.cgi @@ -7,7 +7,7 @@ # defined by the Mozilla Public License, v. 2.0. -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/editcomponents.cgi b/editcomponents.cgi index c0e3b30c0b..4997bd0d9b 100755 --- a/editcomponents.cgi +++ b/editcomponents.cgi @@ -6,7 +6,7 @@ # This Source Code Form is "Incompatible With Secondary Licenses", as # defined by the Mozilla Public License, v. 2.0. -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/editfields.cgi b/editfields.cgi index 633887db26..57f32ac2e4 100755 --- a/editfields.cgi +++ b/editfields.cgi @@ -6,7 +6,7 @@ # This Source Code Form is "Incompatible With Secondary Licenses", as # defined by the Mozilla Public License, v. 2.0. -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/editflagtypes.cgi b/editflagtypes.cgi index edb031fcde..03bbb44246 100755 --- a/editflagtypes.cgi +++ b/editflagtypes.cgi @@ -6,7 +6,7 @@ # This Source Code Form is "Incompatible With Secondary Licenses", as # defined by the Mozilla Public License, v. 2.0. -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/editgroups.cgi b/editgroups.cgi index b93254ebc3..f52f548f0c 100755 --- a/editgroups.cgi +++ b/editgroups.cgi @@ -6,7 +6,7 @@ # This Source Code Form is "Incompatible With Secondary Licenses", as # defined by the Mozilla Public License, v. 2.0. -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/editkeywords.cgi b/editkeywords.cgi index 6b308c15de..ea55270d79 100755 --- a/editkeywords.cgi +++ b/editkeywords.cgi @@ -6,7 +6,7 @@ # This Source Code Form is "Incompatible With Secondary Licenses", as # defined by the Mozilla Public License, v. 2.0. -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/editmilestones.cgi b/editmilestones.cgi index c5f2e8686c..2565ccbb5c 100755 --- a/editmilestones.cgi +++ b/editmilestones.cgi @@ -6,7 +6,7 @@ # This Source Code Form is "Incompatible With Secondary Licenses", as # defined by the Mozilla Public License, v. 2.0. -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/editparams.cgi b/editparams.cgi index eb34bd53ad..2ce0de99cf 100755 --- a/editparams.cgi +++ b/editparams.cgi @@ -6,7 +6,7 @@ # This Source Code Form is "Incompatible With Secondary Licenses", as # defined by the Mozilla Public License, v. 2.0. -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/editproducts.cgi b/editproducts.cgi index f98225e6f5..53f07d6515 100755 --- a/editproducts.cgi +++ b/editproducts.cgi @@ -6,7 +6,7 @@ # This Source Code Form is "Incompatible With Secondary Licenses", as # defined by the Mozilla Public License, v. 2.0. -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/editsettings.cgi b/editsettings.cgi index 3f0ab68275..4d148a919b 100755 --- a/editsettings.cgi +++ b/editsettings.cgi @@ -6,7 +6,7 @@ # This Source Code Form is "Incompatible With Secondary Licenses", as # defined by the Mozilla Public License, v. 2.0. -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/editusers.cgi b/editusers.cgi index 4db7e4441f..3d3734a55a 100755 --- a/editusers.cgi +++ b/editusers.cgi @@ -6,7 +6,7 @@ # This Source Code Form is "Incompatible With Secondary Licenses", as # defined by the Mozilla Public License, v. 2.0. -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/editvalues.cgi b/editvalues.cgi index 59e4d639f1..2827b19377 100755 --- a/editvalues.cgi +++ b/editvalues.cgi @@ -6,7 +6,7 @@ # This Source Code Form is "Incompatible With Secondary Licenses", as # defined by the Mozilla Public License, v. 2.0. -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/editversions.cgi b/editversions.cgi index 23de88071c..707e998d6c 100755 --- a/editversions.cgi +++ b/editversions.cgi @@ -6,7 +6,7 @@ # This Source Code Form is "Incompatible With Secondary Licenses", as # defined by the Mozilla Public License, v. 2.0. -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/editwhines.cgi b/editwhines.cgi index c677273bd6..4b8da9b6e0 100755 --- a/editwhines.cgi +++ b/editwhines.cgi @@ -10,7 +10,7 @@ # Script Initialization ################################################################################ -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/editworkflow.cgi b/editworkflow.cgi index 81b665e423..019dfb74fc 100755 --- a/editworkflow.cgi +++ b/editworkflow.cgi @@ -6,7 +6,7 @@ # This Source Code Form is "Incompatible With Secondary Licenses", as # defined by the Mozilla Public License, v. 2.0. -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/email_in.pl b/email_in.pl index a03935830b..5260a8b814 100755 --- a/email_in.pl +++ b/email_in.pl @@ -6,7 +6,7 @@ # This Source Code Form is "Incompatible With Secondary Licenses", as # defined by the Mozilla Public License, v. 2.0. -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/enter_bug.cgi b/enter_bug.cgi index b4f6095009..1ec06d02b2 100755 --- a/enter_bug.cgi +++ b/enter_bug.cgi @@ -16,7 +16,7 @@ # ############################################################################## -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/extensions/BmpConvert/Config.pm b/extensions/BmpConvert/Config.pm index ed2df6197b..aabb8142e0 100644 --- a/extensions/BmpConvert/Config.pm +++ b/extensions/BmpConvert/Config.pm @@ -7,7 +7,7 @@ package Bugzilla::Extension::BmpConvert; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/extensions/BmpConvert/Extension.pm b/extensions/BmpConvert/Extension.pm index 313a734fe0..64d011feee 100644 --- a/extensions/BmpConvert/Extension.pm +++ b/extensions/BmpConvert/Extension.pm @@ -7,7 +7,7 @@ package Bugzilla::Extension::BmpConvert; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/extensions/Example/Config.pm b/extensions/Example/Config.pm index 696da2de91..34d6659dbf 100644 --- a/extensions/Example/Config.pm +++ b/extensions/Example/Config.pm @@ -7,7 +7,7 @@ package Bugzilla::Extension::Example; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/extensions/Example/Extension.pm b/extensions/Example/Extension.pm index 227c132658..8201781f76 100644 --- a/extensions/Example/Extension.pm +++ b/extensions/Example/Extension.pm @@ -7,7 +7,7 @@ package Bugzilla::Extension::Example; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/extensions/Example/lib/Auth/Login.pm b/extensions/Example/lib/Auth/Login.pm index 6f3a19f3ae..71a0b7371b 100644 --- a/extensions/Example/lib/Auth/Login.pm +++ b/extensions/Example/lib/Auth/Login.pm @@ -7,7 +7,7 @@ package Bugzilla::Extension::Example::Auth::Login; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/extensions/Example/lib/Auth/Verify.pm b/extensions/Example/lib/Auth/Verify.pm index b82f09d11d..401a003156 100644 --- a/extensions/Example/lib/Auth/Verify.pm +++ b/extensions/Example/lib/Auth/Verify.pm @@ -7,7 +7,7 @@ package Bugzilla::Extension::Example::Auth::Verify; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/extensions/Example/lib/Config.pm b/extensions/Example/lib/Config.pm index 360a57510c..d7d7ace72c 100644 --- a/extensions/Example/lib/Config.pm +++ b/extensions/Example/lib/Config.pm @@ -7,7 +7,7 @@ package Bugzilla::Extension::Example::Config; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/extensions/Example/lib/Util.pm b/extensions/Example/lib/Util.pm index ccc349c9c5..88a9a5a843 100644 --- a/extensions/Example/lib/Util.pm +++ b/extensions/Example/lib/Util.pm @@ -7,7 +7,7 @@ package Bugzilla::Extension::Example::Util; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/extensions/Example/lib/WebService.pm b/extensions/Example/lib/WebService.pm index f50c6e6cb5..b11edc5783 100644 --- a/extensions/Example/lib/WebService.pm +++ b/extensions/Example/lib/WebService.pm @@ -7,7 +7,7 @@ package Bugzilla::Extension::Example::WebService; -use 5.10.1; +use 5.14.0; use strict; use warnings; use base qw(Bugzilla::WebService); diff --git a/extensions/MoreBugUrl/Config.pm b/extensions/MoreBugUrl/Config.pm index f8175bb4cf..0fea92c0fe 100644 --- a/extensions/MoreBugUrl/Config.pm +++ b/extensions/MoreBugUrl/Config.pm @@ -7,7 +7,7 @@ package Bugzilla::Extension::MoreBugUrl; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/extensions/MoreBugUrl/Extension.pm b/extensions/MoreBugUrl/Extension.pm index 625d452502..42244d0d97 100644 --- a/extensions/MoreBugUrl/Extension.pm +++ b/extensions/MoreBugUrl/Extension.pm @@ -7,7 +7,7 @@ package Bugzilla::Extension::MoreBugUrl; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/extensions/MoreBugUrl/lib/BitBucket.pm b/extensions/MoreBugUrl/lib/BitBucket.pm index 9b30735648..6a38092989 100644 --- a/extensions/MoreBugUrl/lib/BitBucket.pm +++ b/extensions/MoreBugUrl/lib/BitBucket.pm @@ -7,7 +7,7 @@ package Bugzilla::Extension::MoreBugUrl::BitBucket; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/extensions/MoreBugUrl/lib/GetSatisfaction.pm b/extensions/MoreBugUrl/lib/GetSatisfaction.pm index d69a6c736c..6d62b9b6a3 100644 --- a/extensions/MoreBugUrl/lib/GetSatisfaction.pm +++ b/extensions/MoreBugUrl/lib/GetSatisfaction.pm @@ -7,7 +7,7 @@ package Bugzilla::Extension::MoreBugUrl::GetSatisfaction; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/extensions/MoreBugUrl/lib/PHP.pm b/extensions/MoreBugUrl/lib/PHP.pm index 29fcc662f5..e326d8222b 100644 --- a/extensions/MoreBugUrl/lib/PHP.pm +++ b/extensions/MoreBugUrl/lib/PHP.pm @@ -7,7 +7,7 @@ package Bugzilla::Extension::MoreBugUrl::PHP; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/extensions/MoreBugUrl/lib/RT.pm b/extensions/MoreBugUrl/lib/RT.pm index 52aab48d1f..d23675d6e7 100644 --- a/extensions/MoreBugUrl/lib/RT.pm +++ b/extensions/MoreBugUrl/lib/RT.pm @@ -7,7 +7,7 @@ package Bugzilla::Extension::MoreBugUrl::RT; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/extensions/MoreBugUrl/lib/Redmine.pm b/extensions/MoreBugUrl/lib/Redmine.pm index 577d08bbb2..e21ba2e569 100644 --- a/extensions/MoreBugUrl/lib/Redmine.pm +++ b/extensions/MoreBugUrl/lib/Redmine.pm @@ -7,7 +7,7 @@ package Bugzilla::Extension::MoreBugUrl::Redmine; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/extensions/MoreBugUrl/lib/ReviewBoard.pm b/extensions/MoreBugUrl/lib/ReviewBoard.pm index 49c904523e..1da4c4c9ea 100644 --- a/extensions/MoreBugUrl/lib/ReviewBoard.pm +++ b/extensions/MoreBugUrl/lib/ReviewBoard.pm @@ -7,7 +7,7 @@ package Bugzilla::Extension::MoreBugUrl::ReviewBoard; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/extensions/MoreBugUrl/lib/Rietveld.pm b/extensions/MoreBugUrl/lib/Rietveld.pm index de3cafefa9..7febde2374 100644 --- a/extensions/MoreBugUrl/lib/Rietveld.pm +++ b/extensions/MoreBugUrl/lib/Rietveld.pm @@ -7,7 +7,7 @@ package Bugzilla::Extension::MoreBugUrl::Rietveld; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/extensions/MoreBugUrl/lib/Savane.pm b/extensions/MoreBugUrl/lib/Savane.pm index a0ea2f825a..69fa10a9d9 100644 --- a/extensions/MoreBugUrl/lib/Savane.pm +++ b/extensions/MoreBugUrl/lib/Savane.pm @@ -7,7 +7,7 @@ package Bugzilla::Extension::MoreBugUrl::Savane; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/extensions/OldBugMove/Config.pm b/extensions/OldBugMove/Config.pm index 681cbae2df..851e4ea0b5 100644 --- a/extensions/OldBugMove/Config.pm +++ b/extensions/OldBugMove/Config.pm @@ -7,7 +7,7 @@ package Bugzilla::Extension::OldBugMove; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/extensions/OldBugMove/Extension.pm b/extensions/OldBugMove/Extension.pm index cee2a57848..05f77f2fd3 100644 --- a/extensions/OldBugMove/Extension.pm +++ b/extensions/OldBugMove/Extension.pm @@ -7,7 +7,7 @@ package Bugzilla::Extension::OldBugMove; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/extensions/OldBugMove/lib/Params.pm b/extensions/OldBugMove/lib/Params.pm index e1bab048b8..f6a61c0ebd 100644 --- a/extensions/OldBugMove/lib/Params.pm +++ b/extensions/OldBugMove/lib/Params.pm @@ -7,7 +7,7 @@ package Bugzilla::Extension::OldBugMove::Params; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/extensions/Voting/Config.pm b/extensions/Voting/Config.pm index d72caa3ccb..81625f85c6 100644 --- a/extensions/Voting/Config.pm +++ b/extensions/Voting/Config.pm @@ -7,7 +7,7 @@ package Bugzilla::Extension::Voting; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/extensions/Voting/Extension.pm b/extensions/Voting/Extension.pm index 7beefb990f..f8674837a6 100644 --- a/extensions/Voting/Extension.pm +++ b/extensions/Voting/Extension.pm @@ -7,7 +7,7 @@ package Bugzilla::Extension::Voting; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/extensions/create.pl b/extensions/create.pl index f2aa3f9333..60667b47c9 100755 --- a/extensions/create.pl +++ b/extensions/create.pl @@ -6,7 +6,7 @@ # This Source Code Form is "Incompatible With Secondary Licenses", as # defined by the Mozilla Public License, v. 2.0. -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/importxml.pl b/importxml.pl index a79a579eba..3be5bd2b72 100755 --- a/importxml.pl +++ b/importxml.pl @@ -10,7 +10,7 @@ # a new bug into bugzilla. Everything before the beginning ) { - $found_use_perl = 1 if $file_line =~ m/^\s*use 5.10.1/; + $found_use_perl = 1 if $file_line =~ m/^\s*use 5.14.0/; $found_use_strict = 1 if $file_line =~ $enables_strict_re; $found_use_warnings = 1 if $file_line =~ $enables_warnings_re; last if ($found_use_perl && $found_use_strict && $found_use_warnings); } close(FILE); if ($found_use_perl) { - ok(1, "$file requires Perl 5.10.1"); + ok(1, "$file requires Perl 5.14.0"); } else { - ok(0, "$file DOES NOT require Perl 5.10.1 --WARNING"); + ok(0, "$file DOES NOT require Perl 5.14.0 --WARNING"); } if ($found_use_strict) { diff --git a/t/003safesys.t b/t/003safesys.t index dcad67f1a3..759c7231c5 100644 --- a/t/003safesys.t +++ b/t/003safesys.t @@ -10,7 +10,7 @@ #Bugzilla Test 3# ###Safesystem#### -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/t/004template.t b/t/004template.t index 413c92e420..1e8475e214 100644 --- a/t/004template.t +++ b/t/004template.t @@ -9,7 +9,7 @@ #Bugzilla Test 4# ####Templates#### -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/t/005whitespace.t b/t/005whitespace.t index 8b013cf89b..fffb4361cb 100644 --- a/t/005whitespace.t +++ b/t/005whitespace.t @@ -9,7 +9,7 @@ #Bugzilla Test 5# #####no_tabs##### -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/t/006spellcheck.t b/t/006spellcheck.t index cbbb259a0d..587b5a1b7b 100644 --- a/t/006spellcheck.t +++ b/t/006spellcheck.t @@ -10,7 +10,7 @@ #Bugzilla Test 6# ####Spelling##### -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/t/007util.t b/t/007util.t index 8d4bae59c7..8b655fa59f 100644 --- a/t/007util.t +++ b/t/007util.t @@ -9,7 +9,7 @@ #Bugzilla Test 7# #####Util.pm##### -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/t/008filter.t b/t/008filter.t index b60a975792..3541d5ff0e 100644 --- a/t/008filter.t +++ b/t/008filter.t @@ -15,7 +15,7 @@ # Sample exploit code: '>"> -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/t/009bugwords.t b/t/009bugwords.t index 5f4d274dc3..7bd762af16 100644 --- a/t/009bugwords.t +++ b/t/009bugwords.t @@ -15,7 +15,7 @@ # "[% terms.bug %]". This test makes sure the relevant words aren't used # bare. -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/t/010dependencies.t b/t/010dependencies.t index dce928245b..552ead1114 100644 --- a/t/010dependencies.t +++ b/t/010dependencies.t @@ -10,7 +10,7 @@ #Bugzilla Test 10# ## dependencies ## -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/t/011pod.t b/t/011pod.t index d4a48e9c5a..bfd4cedd83 100644 --- a/t/011pod.t +++ b/t/011pod.t @@ -10,7 +10,7 @@ #Bugzilla Test 11# ##POD validation## -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/t/012throwables.t b/t/012throwables.t index 6b092d8c29..36bee57df0 100644 --- a/t/012throwables.t +++ b/t/012throwables.t @@ -10,7 +10,7 @@ #Bugzilla Test 12# ######Errors###### -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/t/013dbschema.t b/t/013dbschema.t index a1a4aceb27..63003265ff 100644 --- a/t/013dbschema.t +++ b/t/013dbschema.t @@ -12,7 +12,7 @@ # Check the Bugzilla database schema to ensure no field names conflict # with SQL reserved words. -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/t/Support/Files.pm b/t/Support/Files.pm index 72737ac1f4..3ed3653f67 100644 --- a/t/Support/Files.pm +++ b/t/Support/Files.pm @@ -8,7 +8,7 @@ package Support::Files; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/t/Support/Systemexec.pm b/t/Support/Systemexec.pm index d5e0f91b1e..202c6467f3 100644 --- a/t/Support/Systemexec.pm +++ b/t/Support/Systemexec.pm @@ -7,7 +7,7 @@ package Support::Systemexec; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/t/Support/Templates.pm b/t/Support/Templates.pm index 3e186b5896..c45bba21b2 100644 --- a/t/Support/Templates.pm +++ b/t/Support/Templates.pm @@ -7,7 +7,7 @@ package Support::Templates; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/template/en/default/extensions/config.pm.tmpl b/template/en/default/extensions/config.pm.tmpl index 68ed260c1f..599f9ea598 100644 --- a/template/en/default/extensions/config.pm.tmpl +++ b/template/en/default/extensions/config.pm.tmpl @@ -14,7 +14,7 @@ package Bugzilla::Extension::[% name %]; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/template/en/default/extensions/extension.pm.tmpl b/template/en/default/extensions/extension.pm.tmpl index 823440421e..985d28ccc0 100644 --- a/template/en/default/extensions/extension.pm.tmpl +++ b/template/en/default/extensions/extension.pm.tmpl @@ -14,7 +14,7 @@ package Bugzilla::Extension::[% name %]; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/template/en/default/extensions/util.pm.tmpl b/template/en/default/extensions/util.pm.tmpl index 3baab57fd0..6e14428a66 100644 --- a/template/en/default/extensions/util.pm.tmpl +++ b/template/en/default/extensions/util.pm.tmpl @@ -14,7 +14,7 @@ package Bugzilla::Extension::[% name %]::Util; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/testagent.cgi b/testagent.cgi index d9d5afd1a0..7e97f07dc3 100755 --- a/testagent.cgi +++ b/testagent.cgi @@ -10,7 +10,7 @@ # are being run instead of shown. This script does not rely on database access # or correct params. -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/testserver.pl b/testserver.pl index 3c01a550ee..316322d420 100755 --- a/testserver.pl +++ b/testserver.pl @@ -10,7 +10,7 @@ # as its only argument. It attempts to troubleshoot as many installation # issues as possible. -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/token.cgi b/token.cgi index cb52479b27..4a7f26a89b 100755 --- a/token.cgi +++ b/token.cgi @@ -6,7 +6,7 @@ # This Source Code Form is "Incompatible With Secondary Licenses", as # defined by the Mozilla Public License, v. 2.0. -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/userprefs.cgi b/userprefs.cgi index 4c2ad1f15e..c96e7670fd 100755 --- a/userprefs.cgi +++ b/userprefs.cgi @@ -6,7 +6,7 @@ # This Source Code Form is "Incompatible With Secondary Licenses", as # defined by the Mozilla Public License, v. 2.0. -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/votes.cgi b/votes.cgi index 83f36dc6bd..6373f2b91a 100755 --- a/votes.cgi +++ b/votes.cgi @@ -9,7 +9,7 @@ # This script remains as a backwards-compatibility URL for before # the time that Voting was an extension. -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/whine.pl b/whine.pl index 691df886fd..cb10ea9a5f 100755 --- a/whine.pl +++ b/whine.pl @@ -10,7 +10,7 @@ # Script Initialization ################################################################################ -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/whineatnews.pl b/whineatnews.pl index 07a74a3874..8b785d0309 100755 --- a/whineatnews.pl +++ b/whineatnews.pl @@ -14,7 +14,7 @@ # param. (We have NEW and REOPENED in there to keep compatibility with old # Bugzillas.) -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/xmlrpc.cgi b/xmlrpc.cgi index c0931cb419..4b52300135 100755 --- a/xmlrpc.cgi +++ b/xmlrpc.cgi @@ -6,7 +6,7 @@ # This Source Code Form is "Incompatible With Secondary Licenses", as # defined by the Mozilla Public License, v. 2.0. -use 5.10.1; +use 5.14.0; use strict; use warnings;