From 19e86264f9ba51b9da8eedbfdf2d1a1257424ba3 Mon Sep 17 00:00:00 2001 From: Matt Simerson Date: Fri, 14 Feb 2020 22:44:46 -0800 Subject: [PATCH] move HTTP::Tiny into deps (#176) * move HTTP::Tiny into deps --- Build.PL | 2 +- Changes.md | 4 +++ Makefile.PL | 3 +- README.md | 2 +- lib/Mail/DMARC.pm | 4 +-- lib/Mail/DMARC/Base.pm | 4 +-- lib/Mail/DMARC/HTTP.pm | 4 +-- lib/Mail/DMARC/Policy.pm | 4 +-- lib/Mail/DMARC/PurePerl.pm | 4 +-- lib/Mail/DMARC/Report.pm | 4 +-- lib/Mail/DMARC/Report/Aggregate.pm | 4 +-- lib/Mail/DMARC/Report/Aggregate/Metadata.pm | 4 +-- lib/Mail/DMARC/Report/Aggregate/Record.pm | 4 +-- .../Report/Aggregate/Record/Auth_Results.pm | 4 +-- .../Aggregate/Record/Auth_Results/DKIM.pm | 4 +-- .../Aggregate/Record/Auth_Results/SPF.pm | 4 +-- .../Report/Aggregate/Record/Identifiers.pm | 4 +-- lib/Mail/DMARC/Report/Aggregate/Record/Row.pm | 4 +-- .../Aggregate/Record/Row/Policy_Evaluated.pm | 4 +-- lib/Mail/DMARC/Report/Receive.pm | 4 +-- lib/Mail/DMARC/Report/Send.pm | 4 +-- lib/Mail/DMARC/Report/Send/HTTP.pm | 4 +-- lib/Mail/DMARC/Report/Send/SMTP.pm | 4 +-- lib/Mail/DMARC/Report/Store.pm | 4 +-- lib/Mail/DMARC/Report/Store/SQL.pm | 4 +-- .../DMARC/Report/Store/SQL/Grammars/MySQL.pm | 4 +-- .../Report/Store/SQL/Grammars/PostgreSQL.pm | 4 +-- .../DMARC/Report/Store/SQL/Grammars/SQLite.pm | 4 +-- lib/Mail/DMARC/Report/URI.pm | 4 +-- lib/Mail/DMARC/Result.pm | 4 +-- lib/Mail/DMARC/Result/Reason.pm | 4 +-- share/public_suffix_list | 34 ++++++++++++++----- 32 files changed, 87 insertions(+), 66 deletions(-) diff --git a/Build.PL b/Build.PL index 49a3113b..8c61a179 100644 --- a/Build.PL +++ b/Build.PL @@ -40,6 +40,7 @@ my $module_build_args = { "English" => 0, "File::ShareDir" => 0, "Getopt::Long" => 0, + "HTTP::Tiny" => 0, "IO::Compress::Gzip" => 0, "IO::Compress::Zip" => 0, "IO::File" => 0, @@ -89,7 +90,6 @@ my $module_build_args = { "requires" => { "CGI" => 0, "HTTP::Request" => 0, - "HTTP::Tiny" => 0, "JSON" => 0, "LWP::UserAgent" => 0, "Net::HTTP" => 0, diff --git a/Changes.md b/Changes.md index 680e052e..cfb4ecd8 100644 --- a/Changes.md +++ b/Changes.md @@ -1,4 +1,8 @@ +### 1.20200214 + +- move HTTP::Tiny into deps (used for PSL updates) + ### 1.20200116 - skip HTTP tests when optional JSON not installed #171 diff --git a/Makefile.PL b/Makefile.PL index a2a412ef..f0d8cf17 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -37,7 +37,6 @@ my %META = ( "recommends" => { "CGI" => 0, "HTTP::Request" => 0, - "HTTP::Tiny" => 0, "JSON" => 0, "LWP::UserAgent" => 0, "Mail::DKIM::PrivateKey" => 0, @@ -60,6 +59,7 @@ my %META = ( "English" => 0, "File::ShareDir" => 0, "Getopt::Long" => 0, + "HTTP::Tiny" => 0, "IO::Compress::Gzip" => 0, "IO::Compress::Zip" => 0, "IO::File" => 0, @@ -128,7 +128,6 @@ my %META = ( "requires" => { "CGI" => 0, "HTTP::Request" => 0, - "HTTP::Tiny" => 0, "JSON" => 0, "Net::HTTP" => 0, "Net::Server::HTTP" => 0, diff --git a/README.md b/README.md index ddf4ea0f..dff2893b 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ Mail::DMARC - Perl implementation of DMARC # VERSION -version 1.20200116 +version 1.20200214 # SYNOPSIS diff --git a/lib/Mail/DMARC.pm b/lib/Mail/DMARC.pm index ded4dc00..c053030a 100644 --- a/lib/Mail/DMARC.pm +++ b/lib/Mail/DMARC.pm @@ -2,7 +2,7 @@ package Mail::DMARC; use strict; use warnings; -our $VERSION = '1.20200116'; +our $VERSION = '1.20200214'; use Carp; our $psl_loads = 0; @@ -309,7 +309,7 @@ Mail::DMARC - Perl implementation of DMARC =head1 VERSION -version 1.20200116 +version 1.20200214 =head1 SYNOPSIS diff --git a/lib/Mail/DMARC/Base.pm b/lib/Mail/DMARC/Base.pm index 14e7d148..77f80939 100644 --- a/lib/Mail/DMARC/Base.pm +++ b/lib/Mail/DMARC/Base.pm @@ -1,5 +1,5 @@ package Mail::DMARC::Base; -our $VERSION = '1.20200116'; +our $VERSION = '1.20200214'; use strict; use warnings; @@ -313,7 +313,7 @@ Mail::DMARC::Base - DMARC utility functions =head1 VERSION -version 1.20200116 +version 1.20200214 =head1 METHODS diff --git a/lib/Mail/DMARC/HTTP.pm b/lib/Mail/DMARC/HTTP.pm index c961ebe6..933fd1a5 100644 --- a/lib/Mail/DMARC/HTTP.pm +++ b/lib/Mail/DMARC/HTTP.pm @@ -1,5 +1,5 @@ package Mail::DMARC::HTTP; -our $VERSION = '1.20200116'; +our $VERSION = '1.20200214'; use strict; use warnings; @@ -210,7 +210,7 @@ Mail::DMARC::HTTP - view stored reports via HTTP =head1 VERSION -version 1.20200116 +version 1.20200214 =head1 SYNOPSIS diff --git a/lib/Mail/DMARC/Policy.pm b/lib/Mail/DMARC/Policy.pm index d8faf83d..23fa8e03 100644 --- a/lib/Mail/DMARC/Policy.pm +++ b/lib/Mail/DMARC/Policy.pm @@ -2,7 +2,7 @@ package Mail::DMARC::Policy; use strict; use warnings; -our $VERSION = '1.20200116'; +our $VERSION = '1.20200214'; use Carp; @@ -195,7 +195,7 @@ Mail::DMARC::Policy - a DMARC policy in object format =head1 VERSION -version 1.20200116 +version 1.20200214 =head1 SYNOPSIS diff --git a/lib/Mail/DMARC/PurePerl.pm b/lib/Mail/DMARC/PurePerl.pm index 81486650..c645a7b9 100644 --- a/lib/Mail/DMARC/PurePerl.pm +++ b/lib/Mail/DMARC/PurePerl.pm @@ -1,5 +1,5 @@ package Mail::DMARC::PurePerl; -our $VERSION = '1.20200116'; +our $VERSION = '1.20200214'; use strict; use warnings; @@ -588,7 +588,7 @@ Mail::DMARC::PurePerl - Pure Perl implementation of DMARC =head1 VERSION -version 1.20200116 +version 1.20200214 =head1 METHODS diff --git a/lib/Mail/DMARC/Report.pm b/lib/Mail/DMARC/Report.pm index fb8da8c7..d11f63e2 100644 --- a/lib/Mail/DMARC/Report.pm +++ b/lib/Mail/DMARC/Report.pm @@ -2,7 +2,7 @@ package Mail::DMARC::Report; use strict; use warnings; -our $VERSION = '1.20200116'; +our $VERSION = '1.20200214'; use Carp; use IO::Compress::Gzip; @@ -90,7 +90,7 @@ Mail::DMARC::Report - A DMARC report interface =head1 VERSION -version 1.20200116 +version 1.20200214 =head1 DESCRIPTION diff --git a/lib/Mail/DMARC/Report/Aggregate.pm b/lib/Mail/DMARC/Report/Aggregate.pm index 011a1ed4..67b1d877 100644 --- a/lib/Mail/DMARC/Report/Aggregate.pm +++ b/lib/Mail/DMARC/Report/Aggregate.pm @@ -2,7 +2,7 @@ package Mail::DMARC::Report::Aggregate; use strict; use warnings; -our $VERSION = '1.20200116'; +our $VERSION = '1.20200214'; use Carp; use Data::Dumper; @@ -199,7 +199,7 @@ Mail::DMARC::Report::Aggregate - aggregate report object =head1 VERSION -version 1.20200116 +version 1.20200214 =head1 DESCRIPTION diff --git a/lib/Mail/DMARC/Report/Aggregate/Metadata.pm b/lib/Mail/DMARC/Report/Aggregate/Metadata.pm index e3fd8e4c..30f309b7 100644 --- a/lib/Mail/DMARC/Report/Aggregate/Metadata.pm +++ b/lib/Mail/DMARC/Report/Aggregate/Metadata.pm @@ -2,7 +2,7 @@ package Mail::DMARC::Report::Aggregate::Metadata; use strict; use warnings; -our $VERSION = '1.20200116'; +our $VERSION = '1.20200214'; use XML::LibXML; @@ -92,7 +92,7 @@ Mail::DMARC::Report::Aggregate::Metadata - metadata section of aggregate report =head1 VERSION -version 1.20200116 +version 1.20200214 =head1 AUTHORS diff --git a/lib/Mail/DMARC/Report/Aggregate/Record.pm b/lib/Mail/DMARC/Report/Aggregate/Record.pm index c7bbda73..1c40f281 100644 --- a/lib/Mail/DMARC/Report/Aggregate/Record.pm +++ b/lib/Mail/DMARC/Report/Aggregate/Record.pm @@ -1,5 +1,5 @@ package Mail::DMARC::Report::Aggregate::Record; -our $VERSION = '1.20200116'; +our $VERSION = '1.20200214'; use strict; use warnings; @@ -82,7 +82,7 @@ Mail::DMARC::Report::Aggregate::Record - record section of aggregate report =head1 VERSION -version 1.20200116 +version 1.20200214 =head1 DESCRIPTION diff --git a/lib/Mail/DMARC/Report/Aggregate/Record/Auth_Results.pm b/lib/Mail/DMARC/Report/Aggregate/Record/Auth_Results.pm index 62776a5f..e622cf68 100644 --- a/lib/Mail/DMARC/Report/Aggregate/Record/Auth_Results.pm +++ b/lib/Mail/DMARC/Report/Aggregate/Record/Auth_Results.pm @@ -1,5 +1,5 @@ package Mail::DMARC::Report::Aggregate::Record::Auth_Results; -our $VERSION = '1.20200116'; +our $VERSION = '1.20200214'; use strict; use warnings; @@ -79,7 +79,7 @@ Mail::DMARC::Report::Aggregate::Record::Auth_Results - auth_results section of a =head1 VERSION -version 1.20200116 +version 1.20200214 =head1 AUTHORS diff --git a/lib/Mail/DMARC/Report/Aggregate/Record/Auth_Results/DKIM.pm b/lib/Mail/DMARC/Report/Aggregate/Record/Auth_Results/DKIM.pm index 8f2cdad8..f9752931 100644 --- a/lib/Mail/DMARC/Report/Aggregate/Record/Auth_Results/DKIM.pm +++ b/lib/Mail/DMARC/Report/Aggregate/Record/Auth_Results/DKIM.pm @@ -1,5 +1,5 @@ package Mail::DMARC::Report::Aggregate::Record::Auth_Results::DKIM; -our $VERSION = '1.20200116'; +our $VERSION = '1.20200214'; use strict; use Carp; @@ -84,7 +84,7 @@ Mail::DMARC::Report::Aggregate::Record::Auth_Results::DKIM - auth_results/dkim s =head1 VERSION -version 1.20200116 +version 1.20200214 =head1 AUTHORS diff --git a/lib/Mail/DMARC/Report/Aggregate/Record/Auth_Results/SPF.pm b/lib/Mail/DMARC/Report/Aggregate/Record/Auth_Results/SPF.pm index 342089b5..e86c8997 100644 --- a/lib/Mail/DMARC/Report/Aggregate/Record/Auth_Results/SPF.pm +++ b/lib/Mail/DMARC/Report/Aggregate/Record/Auth_Results/SPF.pm @@ -1,5 +1,5 @@ package Mail::DMARC::Report::Aggregate::Record::Auth_Results::SPF; -our $VERSION = '1.20200116'; +our $VERSION = '1.20200214'; use strict; use Carp; @@ -91,7 +91,7 @@ Mail::DMARC::Report::Aggregate::Record::Auth_Results::SPF - auth_results/spf sec =head1 VERSION -version 1.20200116 +version 1.20200214 =head1 AUTHORS diff --git a/lib/Mail/DMARC/Report/Aggregate/Record/Identifiers.pm b/lib/Mail/DMARC/Report/Aggregate/Record/Identifiers.pm index c4c48057..99f7b7d3 100644 --- a/lib/Mail/DMARC/Report/Aggregate/Record/Identifiers.pm +++ b/lib/Mail/DMARC/Report/Aggregate/Record/Identifiers.pm @@ -1,5 +1,5 @@ package Mail::DMARC::Report::Aggregate::Record::Identifiers; -our $VERSION = '1.20200116'; +our $VERSION = '1.20200214'; use strict; use warnings; @@ -43,7 +43,7 @@ Mail::DMARC::Report::Aggregate::Record::Identifiers - identifiers section of a D =head1 VERSION -version 1.20200116 +version 1.20200214 =head1 AUTHORS diff --git a/lib/Mail/DMARC/Report/Aggregate/Record/Row.pm b/lib/Mail/DMARC/Report/Aggregate/Record/Row.pm index c8943e11..02c2156b 100644 --- a/lib/Mail/DMARC/Report/Aggregate/Record/Row.pm +++ b/lib/Mail/DMARC/Report/Aggregate/Record/Row.pm @@ -1,5 +1,5 @@ package Mail::DMARC::Report::Aggregate::Record::Row; -our $VERSION = '1.20200116'; +our $VERSION = '1.20200214'; use strict; use warnings; @@ -56,7 +56,7 @@ Mail::DMARC::Report::Aggregate::Record::Row - row section of a DMARC aggregate r =head1 VERSION -version 1.20200116 +version 1.20200214 =head1 AUTHORS diff --git a/lib/Mail/DMARC/Report/Aggregate/Record/Row/Policy_Evaluated.pm b/lib/Mail/DMARC/Report/Aggregate/Record/Row/Policy_Evaluated.pm index bcce6f21..10d66ebf 100644 --- a/lib/Mail/DMARC/Report/Aggregate/Record/Row/Policy_Evaluated.pm +++ b/lib/Mail/DMARC/Report/Aggregate/Record/Row/Policy_Evaluated.pm @@ -1,5 +1,5 @@ package Mail::DMARC::Report::Aggregate::Record::Row::Policy_Evaluated; -our $VERSION = '1.20200116'; +our $VERSION = '1.20200214'; use strict; use warnings; @@ -56,7 +56,7 @@ Mail::DMARC::Report::Aggregate::Record::Row::Policy_Evaluated - row/policy_evalu =head1 VERSION -version 1.20200116 +version 1.20200214 =head1 AUTHORS diff --git a/lib/Mail/DMARC/Report/Receive.pm b/lib/Mail/DMARC/Report/Receive.pm index 89181d6b..1ec98b5a 100644 --- a/lib/Mail/DMARC/Report/Receive.pm +++ b/lib/Mail/DMARC/Report/Receive.pm @@ -2,7 +2,7 @@ package Mail::DMARC::Report::Receive; use strict; use warnings; -our $VERSION = '1.20200116'; +our $VERSION = '1.20200214'; use Carp; use Data::Dumper; @@ -421,7 +421,7 @@ Mail::DMARC::Report::Receive - process incoming DMARC reports =head1 VERSION -version 1.20200116 +version 1.20200214 =head1 DESCRIPTION diff --git a/lib/Mail/DMARC/Report/Send.pm b/lib/Mail/DMARC/Report/Send.pm index 120ec5af..7abfb132 100644 --- a/lib/Mail/DMARC/Report/Send.pm +++ b/lib/Mail/DMARC/Report/Send.pm @@ -2,7 +2,7 @@ package Mail::DMARC::Report::Send; use strict; use warnings; -our $VERSION = '1.20200116'; +our $VERSION = '1.20200214'; use parent 'Mail::DMARC::Base'; use Mail::DMARC::Report::Send::SMTP; @@ -62,7 +62,7 @@ Mail::DMARC::Report::Send - report sending dispatch class =head1 VERSION -version 1.20200116 +version 1.20200214 =head1 DESCRIPTION diff --git a/lib/Mail/DMARC/Report/Send/HTTP.pm b/lib/Mail/DMARC/Report/Send/HTTP.pm index 3d2fde20..32e5efc5 100644 --- a/lib/Mail/DMARC/Report/Send/HTTP.pm +++ b/lib/Mail/DMARC/Report/Send/HTTP.pm @@ -2,7 +2,7 @@ package Mail::DMARC::Report::Send::HTTP; use strict; use warnings; -our $VERSION = '1.20200116'; +our $VERSION = '1.20200214'; use Carp; @@ -53,7 +53,7 @@ Mail::DMARC::Report::Send::HTTP - utility methods to send reports by HTTP =head1 VERSION -version 1.20200116 +version 1.20200214 =head1 12.2.2. HTTP diff --git a/lib/Mail/DMARC/Report/Send/SMTP.pm b/lib/Mail/DMARC/Report/Send/SMTP.pm index ea0e0a4b..44ba6ee3 100644 --- a/lib/Mail/DMARC/Report/Send/SMTP.pm +++ b/lib/Mail/DMARC/Report/Send/SMTP.pm @@ -2,7 +2,7 @@ package Mail::DMARC::Report::Send::SMTP; use strict; use warnings; -our $VERSION = '1.20200116'; +our $VERSION = '1.20200214'; use Carp; use English '-no_match_vars'; @@ -247,7 +247,7 @@ Mail::DMARC::Report::Send::SMTP - utility methods for sending reports via SMTP =head1 VERSION -version 1.20200116 +version 1.20200214 =head2 SUBJECT FIELD diff --git a/lib/Mail/DMARC/Report/Store.pm b/lib/Mail/DMARC/Report/Store.pm index 63f8444b..06866f38 100644 --- a/lib/Mail/DMARC/Report/Store.pm +++ b/lib/Mail/DMARC/Report/Store.pm @@ -1,5 +1,5 @@ package Mail::DMARC::Report::Store; -our $VERSION = '1.20200116'; +our $VERSION = '1.20200214'; use strict; use warnings; @@ -60,7 +60,7 @@ Mail::DMARC::Report::Store - persistent storage broker for reports =head1 VERSION -version 1.20200116 +version 1.20200214 =head1 SYNOPSIS diff --git a/lib/Mail/DMARC/Report/Store/SQL.pm b/lib/Mail/DMARC/Report/Store/SQL.pm index 975b4b20..926a94f9 100644 --- a/lib/Mail/DMARC/Report/Store/SQL.pm +++ b/lib/Mail/DMARC/Report/Store/SQL.pm @@ -1,5 +1,5 @@ package Mail::DMARC::Report::Store::SQL; -our $VERSION = '1.20200116'; +our $VERSION = '1.20200214'; use strict; use warnings; @@ -678,7 +678,7 @@ Mail::DMARC::Report::Store::SQL - store and retrieve reports from a SQL RDBMS =head1 VERSION -version 1.20200116 +version 1.20200214 =head1 DESCRIPTION diff --git a/lib/Mail/DMARC/Report/Store/SQL/Grammars/MySQL.pm b/lib/Mail/DMARC/Report/Store/SQL/Grammars/MySQL.pm index dd6ba4b8..58438bf5 100644 --- a/lib/Mail/DMARC/Report/Store/SQL/Grammars/MySQL.pm +++ b/lib/Mail/DMARC/Report/Store/SQL/Grammars/MySQL.pm @@ -1,5 +1,5 @@ package Mail::DMARC::Report::Store::SQL::Grammars::MySQL; -our $VERSION = '1.20200116'; +our $VERSION = '1.20200214'; use strict; use warnings; @@ -290,7 +290,7 @@ Mail::DMARC::Report::Store::SQL::Grammars::MySQL - Grammar for working with mysq =head1 VERSION -version 1.20200116 +version 1.20200214 =head1 SYPNOSIS diff --git a/lib/Mail/DMARC/Report/Store/SQL/Grammars/PostgreSQL.pm b/lib/Mail/DMARC/Report/Store/SQL/Grammars/PostgreSQL.pm index 0332a683..bd100242 100644 --- a/lib/Mail/DMARC/Report/Store/SQL/Grammars/PostgreSQL.pm +++ b/lib/Mail/DMARC/Report/Store/SQL/Grammars/PostgreSQL.pm @@ -1,5 +1,5 @@ package Mail::DMARC::Report::Store::SQL::Grammars::PostgreSQL; -our $VERSION = '1.20200116'; +our $VERSION = '1.20200214'; use strict; use warnings; @@ -309,7 +309,7 @@ Mail::DMARC::Report::Store::SQL::Grammars::PostgreSQL - Grammar for working with =head1 VERSION -version 1.20200116 +version 1.20200214 =head1 SYPNOSIS diff --git a/lib/Mail/DMARC/Report/Store/SQL/Grammars/SQLite.pm b/lib/Mail/DMARC/Report/Store/SQL/Grammars/SQLite.pm index c1b8909c..b5257bdb 100644 --- a/lib/Mail/DMARC/Report/Store/SQL/Grammars/SQLite.pm +++ b/lib/Mail/DMARC/Report/Store/SQL/Grammars/SQLite.pm @@ -1,5 +1,5 @@ package Mail::DMARC::Report::Store::SQL::Grammars::SQLite; -our $VERSION = '1.20200116'; +our $VERSION = '1.20200214'; use strict; use warnings; @@ -290,7 +290,7 @@ Mail::DMARC::Report::Store::SQL::Grammars::SQLite - Grammar for working with sql =head1 VERSION -version 1.20200116 +version 1.20200214 =head1 SYPNOSIS diff --git a/lib/Mail/DMARC/Report/URI.pm b/lib/Mail/DMARC/Report/URI.pm index 8486323a..cfd3c08d 100644 --- a/lib/Mail/DMARC/Report/URI.pm +++ b/lib/Mail/DMARC/Report/URI.pm @@ -2,7 +2,7 @@ package Mail::DMARC::Report::URI; use strict; use warnings; -our $VERSION = '1.20200116'; +our $VERSION = '1.20200214'; use Carp; use URI; @@ -69,7 +69,7 @@ Mail::DMARC::Report::URI - a DMARC report URI =head1 VERSION -version 1.20200116 +version 1.20200214 =head1 SYNOPSIS diff --git a/lib/Mail/DMARC/Result.pm b/lib/Mail/DMARC/Result.pm index beeefcbc..3ebfbdc0 100644 --- a/lib/Mail/DMARC/Result.pm +++ b/lib/Mail/DMARC/Result.pm @@ -1,5 +1,5 @@ package Mail::DMARC::Result; -our $VERSION = '1.20200116'; +our $VERSION = '1.20200214'; use strict; use warnings; @@ -95,7 +95,7 @@ Mail::DMARC::Result - an aggregate report result object =head1 VERSION -version 1.20200116 +version 1.20200214 =head1 OVERVIEW diff --git a/lib/Mail/DMARC/Result/Reason.pm b/lib/Mail/DMARC/Result/Reason.pm index 6645d7d6..0c1cf7e7 100644 --- a/lib/Mail/DMARC/Result/Reason.pm +++ b/lib/Mail/DMARC/Result/Reason.pm @@ -1,5 +1,5 @@ package Mail::DMARC::Result::Reason; -our $VERSION = '1.20200116'; +our $VERSION = '1.20200214'; use strict; use warnings; @@ -44,7 +44,7 @@ Mail::DMARC::Result::Reason - policy override reason =head1 VERSION -version 1.20200116 +version 1.20200214 =head1 METHODS diff --git a/share/public_suffix_list b/share/public_suffix_list index 5d94f813..8f5956bd 100644 --- a/share/public_suffix_list +++ b/share/public_suffix_list @@ -7074,7 +7074,7 @@ org.zw // newGTLDs -// List of new gTLDs imported from https://www.icann.org/resources/registries/gtlds/v2/gtlds.json on 2020-01-06T17:33:31Z +// List of new gTLDs imported from https://www.icann.org/resources/registries/gtlds/v2/gtlds.json on 2020-02-06T17:49:42Z // This list is auto-generated, don't edit it manually. // aaa : 2015-02-26 American Automobile Association, Inc. aaa @@ -7376,7 +7376,7 @@ bcn // beats : 2015-05-14 Beats Electronics, LLC beats -// beauty : 2015-12-03 L'Oréal +// beauty : 2015-12-03 XYZ.COM LLC beauty // beer : 2014-01-09 Minds + Machines Group Limited @@ -7832,7 +7832,7 @@ cuisinella // cymru : 2014-05-08 Nominet UK cymru -// cyou : 2015-01-22 Beijing Gamease Age Digital Technology Co., Ltd. +// cyou : 2015-01-22 ShortDot SA cyou // dabur : 2014-02-06 Dabur India Limited @@ -8399,7 +8399,7 @@ guitars // guru : 2013-08-27 Binky Moon, LLC guru -// hair : 2015-12-03 L'Oréal +// hair : 2015-12-03 XYZ.COM LLC hair // hamburg : 2014-02-20 Hamburg Top-Level-Domain GmbH @@ -8918,7 +8918,7 @@ maif // maison : 2013-12-05 Binky Moon, LLC maison -// makeup : 2015-01-15 L'Oréal +// makeup : 2015-01-15 XYZ.COM LLC makeup // man : 2014-12-04 MAN SE @@ -9761,7 +9761,7 @@ site // ski : 2015-04-09 Afilias Limited ski -// skin : 2015-01-15 L'Oréal +// skin : 2015-01-15 XYZ.COM LLC skin // sky : 2014-06-19 Sky International AG @@ -10532,7 +10532,7 @@ xin // xn--nyqy26a : 2014-11-07 Stable Tone Limited 健康 -// xn--otu796d : 2017-08-06 Internet DotTrademark Organisation Limited +// xn--otu796d : 2017-08-06 Jiang Yu Liang Cai Technology Company Limited 招聘 // xn--p1acf : 2013-12-12 Rusnames Limited @@ -10954,8 +10954,9 @@ certmgr.org xenapponazure.com // Civilized Discourse Construction Kit, Inc. : https://www.discourse.org/ -// Submitted by Rishabh Nambiar +// Submitted by Rishabh Nambiar & Michael Brown discourse.group +discourse.team // ClearVox : http://www.clearvox.nl/ // Submitted by Leon Rowland @@ -11685,6 +11686,7 @@ vologda.su // Fancy Bits, LLC : http://getchannels.com // Submitted by Aman Gupta channelsdvr.net +u.channelsdvr.net // Fastly Inc. : http://www.fastly.com/ // Submitted by Fastly Security @@ -12604,6 +12606,10 @@ pubtls.org // Submitted by Xavier De Cock qualifioapp.com +// QuickBackend: https://www.quickbackend.com +// Submitted by Dani Biro +qbuser.com + // Redstar Consultants : https://www.redstarconsultants.com/ // Submitted by Jons Slemmer instantcloud.cn @@ -12718,6 +12724,10 @@ my-firewall.org myfirewall.org spdns.org +// Senseering GmbH : https://www.senseering.de +// Submitted by Felix Mönckemeyer +senseering.net + // Service Online LLC : http://drs.ua/ // Submitted by Serhii Bulakh biz.ua @@ -12988,6 +12998,14 @@ remotewd.com // Submitted by Yuvi Panda wmflabs.org +// WoltLab GmbH : https://www.woltlab.com +// Submitted by Tim Düsterhus +myforum.community +community-pro.de +diskussionsbereich.de +community-pro.net +meinforum.net + // XenonCloud GbR: https://xenoncloud.net // Submitted by Julian Uphoff half.host