Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion .vscode/bmo.code-snippets
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"# This Source Code Form is \"Incompatible With Secondary Licenses\", as",
"# defined by the Mozilla Public License, v. 2.0.\n",
"package ${1:${TM_FILENAME_BASE}};",
"use 5.10.1;",
"use 5.14.0;",
"use Moo;\n",
"",
"${2}",
Expand Down
2 changes: 1 addition & 1 deletion Bugzilla.pm
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

package Bugzilla;

use 5.10.1;
use 5.14.0;
use strict;
use warnings;

Expand Down
2 changes: 1 addition & 1 deletion Bugzilla/App/API.pm
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# defined by the Mozilla Public License, v. 2.0.

package Bugzilla::App::API;
use 5.10.1;
use 5.14.0;
use Mojo::Base qw( Mojolicious::Controller );
use Mojo::JSON qw( true false );

Expand Down
2 changes: 1 addition & 1 deletion Bugzilla/App/BouncedEmails.pm
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

package Bugzilla::App::BouncedEmails;

use 5.10.1;
use 5.14.0;
use Mojo::Base qw( Mojolicious::Controller );

use Bugzilla::Constants;
Expand Down
2 changes: 1 addition & 1 deletion Bugzilla/App/Command/revoke_api_keys.pm
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# defined by the Mozilla Public License, v. 2.0.

package Bugzilla::App::Command::revoke_api_keys; ## no critic (Capitalization)
use 5.10.1;
use 5.14.0;
use Mojo::Base 'Mojolicious::Command';

use Bugzilla::Constants;
Expand Down
2 changes: 1 addition & 1 deletion Bugzilla/App/OAuth2/Clients.pm
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# defined by the Mozilla Public License, v. 2.0.

package Bugzilla::App::OAuth2::Clients;
use 5.10.1;
use 5.14.0;
use Mojo::Base 'Mojolicious::Controller';

use List::Util qw(any first);
Expand Down
2 changes: 1 addition & 1 deletion Bugzilla/App/Plugin/BlockIP.pm
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
package Bugzilla::App::Plugin::BlockIP;
use 5.10.1;
use 5.14.0;
use Mojo::Base 'Mojolicious::Plugin';

use Bugzilla::Memcached;
Expand Down
2 changes: 1 addition & 1 deletion Bugzilla/App/Plugin/Glue.pm
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# defined by the Mozilla Public License, v. 2.0.

package Bugzilla::App::Plugin::Glue;
use 5.10.1;
use 5.14.0;
use Mojo::Base 'Mojolicious::Plugin';

use Try::Tiny;
Expand Down
2 changes: 1 addition & 1 deletion Bugzilla/App/Plugin/Helpers.pm
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# This Source Code Form is "Incompatible With Secondary Licenses", as
# defined by the Mozilla Public License, v. 2.0.
package Bugzilla::App::Plugin::Helpers;
use 5.10.1;
use 5.14.0;
use Mojo::Base qw(Mojolicious::Plugin);

use Bugzilla::Logging;
Expand Down
2 changes: 1 addition & 1 deletion Bugzilla/App/Plugin/Hostage.pm
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
package Bugzilla::App::Plugin::Hostage;
use 5.10.1;
use 5.14.0;
use Mojo::Base 'Mojolicious::Plugin';
use Bugzilla::Logging;

Expand Down
2 changes: 1 addition & 1 deletion Bugzilla/App/Plugin/OAuth2.pm
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# defined by the Mozilla Public License, v. 2.0.

package Bugzilla::App::Plugin::OAuth2;
use 5.10.1;
use 5.14.0;
use Mojo::Base 'Mojolicious::Plugin::OAuth2::Server';

use Bugzilla::Constants;
Expand Down
2 changes: 1 addition & 1 deletion Bugzilla/App/Plugin/SizeLimit.pm
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# defined by the Mozilla Public License, v. 2.0.

package Bugzilla::App::Plugin::SizeLimit;
use 5.10.1;
use 5.14.0;
use Mojo::Base 'Mojolicious::Plugin';
use Mojo::JSON qw(decode_json);
use Bugzilla::Logging;
Expand Down
2 changes: 1 addition & 1 deletion Bugzilla/App/SES.pm
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ package Bugzilla::App::SES;
# 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 Mojo::Base qw( Mojolicious::Controller );

use Bugzilla::Constants qw(BOUNCE_COUNT_MAX ERROR_MODE_DIE);
Expand Down
2 changes: 1 addition & 1 deletion Bugzilla/App/Stdout.pm
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# defined by the Mozilla Public License, v. 2.0.

package Bugzilla::App::Stdout;
use 5.10.1;
use 5.14.0;
use Moo;

use Bugzilla::Logging;
Expand Down
2 changes: 1 addition & 1 deletion Bugzilla/Attachment.pm
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

package Bugzilla::Attachment;

use 5.10.1;
use 5.14.0;
use strict;
use warnings;

Expand Down
2 changes: 1 addition & 1 deletion Bugzilla/Attachment/Archive.pm
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

package Bugzilla::Attachment::Archive;

use 5.10.1;
use 5.14.0;
use Moo;
use Digest::SHA qw(sha256_hex);
use Carp;
Expand Down
2 changes: 1 addition & 1 deletion Bugzilla/Attachment/PatchReader.pm
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

package Bugzilla::Attachment::PatchReader;

use 5.10.1;
use 5.14.0;
use strict;
use warnings;

Expand Down
2 changes: 1 addition & 1 deletion Bugzilla/Attachment/Storage/Base.pm
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

package Bugzilla::Attachment::Storage::Base;

use 5.10.1;
use 5.14.0;
use Moo::Role;

use Types::Standard qw(Int);
Expand Down
2 changes: 1 addition & 1 deletion Bugzilla/Attachment/Storage/Database.pm
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

package Bugzilla::Attachment::Storage::Database;

use 5.10.1;
use 5.14.0;
use Moo;

with 'Bugzilla::Attachment::Storage::Base';
Expand Down
2 changes: 1 addition & 1 deletion Bugzilla/Attachment/Storage/FileSystem.pm
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

package Bugzilla::Attachment::Storage::FileSystem;

use 5.10.1;
use 5.14.0;
use Moo;

use Bugzilla::Constants qw(bz_locations);
Expand Down
2 changes: 1 addition & 1 deletion Bugzilla/Attachment/Storage/S3.pm
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

package Bugzilla::Attachment::Storage::S3;

use 5.10.1;
use 5.14.0;
use Moo;

use Bugzilla::Error;
Expand Down
2 changes: 1 addition & 1 deletion Bugzilla/Auth.pm
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

package Bugzilla::Auth;

use 5.10.1;
use 5.14.0;
use strict;
use warnings;

Expand Down
2 changes: 1 addition & 1 deletion Bugzilla/Auth/Login.pm
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

package Bugzilla::Auth::Login;

use 5.10.1;
use 5.14.0;
use strict;
use warnings;

Expand Down
2 changes: 1 addition & 1 deletion Bugzilla/Auth/Login/APIKey.pm
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

package Bugzilla::Auth::Login::APIKey;

use 5.10.1;
use 5.14.0;
use strict;
use warnings;

Expand Down
2 changes: 1 addition & 1 deletion Bugzilla/Auth/Login/CGI.pm
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

package Bugzilla::Auth::Login::CGI;

use 5.10.1;
use 5.14.0;
use strict;
use warnings;

Expand Down
2 changes: 1 addition & 1 deletion Bugzilla/Auth/Login/Cookie.pm
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

package Bugzilla::Auth::Login::Cookie;

use 5.10.1;
use 5.14.0;
use strict;
use warnings;

Expand Down
2 changes: 1 addition & 1 deletion Bugzilla/Auth/Login/Env.pm
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

package Bugzilla::Auth::Login::Env;

use 5.10.1;
use 5.14.0;
use strict;
use warnings;

Expand Down
2 changes: 1 addition & 1 deletion Bugzilla/Auth/Login/Stack.pm
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

package Bugzilla::Auth::Login::Stack;

use 5.10.1;
use 5.14.0;
use strict;
use warnings;

Expand Down
2 changes: 1 addition & 1 deletion Bugzilla/Auth/Persist/Cookie.pm
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

package Bugzilla::Auth::Persist::Cookie;

use 5.10.1;
use 5.14.0;
use strict;
use warnings;

Expand Down
2 changes: 1 addition & 1 deletion Bugzilla/Auth/Verify.pm
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

package Bugzilla::Auth::Verify;

use 5.10.1;
use 5.14.0;
use strict;
use warnings;

Expand Down
2 changes: 1 addition & 1 deletion Bugzilla/Auth/Verify/DB.pm
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

package Bugzilla::Auth::Verify::DB;

use 5.10.1;
use 5.14.0;
use strict;
use warnings;

Expand Down
2 changes: 1 addition & 1 deletion Bugzilla/Auth/Verify/LDAP.pm
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

package Bugzilla::Auth::Verify::LDAP;

use 5.10.1;
use 5.14.0;
use strict;
use warnings;

Expand Down
2 changes: 1 addition & 1 deletion Bugzilla/Auth/Verify/RADIUS.pm
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

package Bugzilla::Auth::Verify::RADIUS;

use 5.10.1;
use 5.14.0;
use strict;
use warnings;

Expand Down
2 changes: 1 addition & 1 deletion Bugzilla/Auth/Verify/Stack.pm
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

package Bugzilla::Auth::Verify::Stack;

use 5.10.1;
use 5.14.0;
use strict;
use warnings;

Expand Down
2 changes: 1 addition & 1 deletion Bugzilla/Bloomfilter.pm
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

package Bugzilla::Bloomfilter;

use 5.10.1;
use 5.14.0;
use strict;
use warnings;

Expand Down
2 changes: 1 addition & 1 deletion Bugzilla/Bug.pm
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

package Bugzilla::Bug;

use 5.10.1;
use 5.14.0;
use strict;
use warnings;

Expand Down
2 changes: 1 addition & 1 deletion Bugzilla/BugMail.pm
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

package Bugzilla::BugMail;

use 5.10.1;
use 5.14.0;
use strict;
use warnings;

Expand Down
2 changes: 1 addition & 1 deletion Bugzilla/BugUrl.pm
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

package Bugzilla::BugUrl;

use 5.10.1;
use 5.14.0;
use strict;
use warnings;

Expand Down
2 changes: 1 addition & 1 deletion Bugzilla/BugUrl/Aha.pm
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

package Bugzilla::BugUrl::Aha;

use 5.10.1;
use 5.14.0;
use strict;
use warnings;

Expand Down
2 changes: 1 addition & 1 deletion Bugzilla/BugUrl/Bugzilla.pm
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

package Bugzilla::BugUrl::Bugzilla;

use 5.10.1;
use 5.14.0;
use strict;
use warnings;

Expand Down
2 changes: 1 addition & 1 deletion Bugzilla/BugUrl/Bugzilla/Local.pm
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

package Bugzilla::BugUrl::Bugzilla::Local;

use 5.10.1;
use 5.14.0;
use strict;
use warnings;

Expand Down
2 changes: 1 addition & 1 deletion Bugzilla/BugUrl/Chromium.pm
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

package Bugzilla::BugUrl::Chromium;

use 5.10.1;
use 5.14.0;
use strict;
use warnings;

Expand Down
2 changes: 1 addition & 1 deletion Bugzilla/BugUrl/Debian.pm
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

package Bugzilla::BugUrl::Debian;

use 5.10.1;
use 5.14.0;
use strict;
use warnings;
use base qw(Bugzilla::BugUrl);
Expand Down
2 changes: 1 addition & 1 deletion Bugzilla/BugUrl/Edge.pm
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

package Bugzilla::BugUrl::Edge;

use 5.10.1;
use 5.14.0;
use strict;
use warnings;

Expand Down
Loading
Loading