From d2d2595ccdca5b100a3c5695c93e77c1eff1064b Mon Sep 17 00:00:00 2001 From: Flavio Soibelmann Glock Date: Sun, 26 Apr 2026 17:33:58 +0200 Subject: [PATCH 1/2] feat(modules): bundle common::sense (full implementation, not stub) Adds src/main/perl/lib/common/sense.pm so `use common::sense` works out of the box. Implements all the behaviours of the upstream module: strict, utf8, the FATAL warning categories common::sense enables, the lenient warnings it suppresses (exec/newline/unopened), and the features it turns on (say, state, switch, fc, evalbytes, current_sub, unicode_strings). Upstream's sense.pm is generated at install time from sense.pm.PL and mutates ${^WARNING_BITS} and $^H directly. PerlOnJava's parser doesn't fully honor mid-script %^H feature mutations from a bundled .pm loaded via `use`, so we use the high-level pragmas (strict/warnings/feature/ utf8) instead. End result is identical from the user's perspective. Verified: - ./jcpan -t common::sense -> Result: PASS (both upstream tests). - make passes. Per the CPAN compatibility report, common::sense is a direct dependency of ~19 modules (CBOR::XS, AnyEvent::HTTP, Types::Serialiser, etc.) and many more transitively, so this unblocks a meaningful chunk of CPAN. Generated with [Devin](https://cli.devin.ai/docs) Co-Authored-By: Devin <158243242+devin-ai-integration[bot]@users.noreply.github.com> --- .../org/perlonjava/core/Configuration.java | 6 +-- src/main/perl/lib/common/sense.pm | 52 +++++++++++++++++++ 2 files changed, 55 insertions(+), 3 deletions(-) create mode 100644 src/main/perl/lib/common/sense.pm diff --git a/src/main/java/org/perlonjava/core/Configuration.java b/src/main/java/org/perlonjava/core/Configuration.java index 6df730fd2..249c9777d 100644 --- a/src/main/java/org/perlonjava/core/Configuration.java +++ b/src/main/java/org/perlonjava/core/Configuration.java @@ -33,14 +33,14 @@ public final class Configuration { * Automatically populated by Gradle/Maven during build. * DO NOT EDIT MANUALLY - this value is replaced at build time. */ - public static final String gitCommitId = "2c7f37913"; + public static final String gitCommitId = "1d5def215"; /** * Git commit date of the build (ISO format: YYYY-MM-DD). * Automatically populated by Gradle/Maven during build. * DO NOT EDIT MANUALLY - this value is replaced at build time. */ - public static final String gitCommitDate = "2026-04-26"; + public static final String gitCommitDate = "2026-04-25"; /** * Build timestamp in Perl 5 "Compiled at" format (e.g., "Apr 7 2026 11:20:00"). @@ -48,7 +48,7 @@ public final class Configuration { * Parsed by App::perlbrew and other tools via: perl -V | grep "Compiled at" * DO NOT EDIT MANUALLY - this value is replaced at build time. */ - public static final String buildTimestamp = "Apr 26 2026 17:32:55"; + public static final String buildTimestamp = "Apr 26 2026 17:32:45"; // Prevent instantiation private Configuration() { diff --git a/src/main/perl/lib/common/sense.pm b/src/main/perl/lib/common/sense.pm new file mode 100644 index 000000000..077049da6 --- /dev/null +++ b/src/main/perl/lib/common/sense.pm @@ -0,0 +1,52 @@ +package common::sense; + +our $VERSION = '3.75'; + +# PerlOnJava implementation of common::sense. +# +# The CPAN distribution generates sense.pm at install time from sense.pm.PL, +# directly mutating ${^WARNING_BITS} and $^H. PerlOnJava ships a hand-written +# version that uses pragmatic `use strict`, `use warnings`, `use utf8`, and +# `use feature` so it works reliably with the PerlOnJava parser regardless of +# how the script is invoked. + +sub import { + # Equivalent of: use strict; + strict->import; + + # Equivalent of: use utf8; + utf8->import; + + # Equivalent of common::sense's warning configuration: + # no warnings; + # use warnings FATAL => qw(closed threads internal debugging pack + # malloc prototype inplace io pipe unpack + # glob digit printf layer reserved taint + # closure semicolon); + # no warnings qw(exec newline unopened); + warnings->unimport; + warnings->import(FATAL => qw( + closed threads internal debugging pack malloc prototype + inplace io pipe unpack glob digit printf + layer reserved taint closure semicolon + )); + warnings->unimport(qw(exec newline unopened)); + + # Equivalent of: use feature qw(say state switch fc evalbytes + # current_sub unicode_strings); + require feature; + feature->import(qw(say state switch)); + feature->import(qw(unicode_strings)); + feature->import(qw(current_sub fc evalbytes)); +} + +sub unimport { + strict->unimport; + utf8->unimport; + warnings->unimport; + require feature; + feature->unimport(qw(say state switch fc evalbytes + current_sub unicode_strings)); +} + +1; From 33badb06208bbe9616fce1e6c7bbf2c1a24625f7 Mon Sep 17 00:00:00 2001 From: Flavio Soibelmann Glock Date: Sun, 26 Apr 2026 17:42:20 +0200 Subject: [PATCH 2/2] chore(cpan-reports): refresh compatibility report Generated with [Devin](https://cli.devin.ai/docs) Co-Authored-By: Devin <158243242+devin-ai-integration[bot]@users.noreply.github.com> --- dev/cpan-reports/cpan-compatibility-fail.dat | 1505 ++++++++++--- dev/cpan-reports/cpan-compatibility-pass.dat | 448 +++- dev/cpan-reports/cpan-compatibility.md | 1973 ++++++++++++++--- .../org/perlonjava/core/Configuration.java | 6 +- 4 files changed, 3279 insertions(+), 653 deletions(-) diff --git a/dev/cpan-reports/cpan-compatibility-fail.dat b/dev/cpan-reports/cpan-compatibility-fail.dat index 68223b400..bc7cd91dc 100644 --- a/dev/cpan-reports/cpan-compatibility-fail.dat +++ b/dev/cpan-reports/cpan-compatibility-fail.dat @@ -4,90 +4,119 @@ AC::DC FAIL Unknown test outcome 2026-04-21 AC::MrGamoo FAIL Unknown test outcome 2026-04-21 ACH FAIL Unknown test outcome 2026-04-21 AE FAIL 22 18 4/22 subtests failed 2026-04-21 +AFS::Command::Base FAIL 8 8 2026-04-26 AFS::Monitor FAIL Unknown test outcome 2026-04-12 AFS::PAG FAIL Configure failed 2026-04-21 -AI::Categorizer FAIL 28 0 67/28 subtests failed 2026-04-22 +AI::Categorizer FAIL 28 0 67/28 subtests failed 2026-04-26 AI::DecisionTree FAIL Missing: AI/DecisionTree/Instance.pm 2026-04-22 +AI::ML FAIL Configure failed 2026-04-26 AI::MXNetCAPI FAIL 1 0 1/1 subtests failed 2026-04-12 AI::MegaHAL FAIL 1 0 6/1 subtests failed 2026-04-21 +AI::NNFlex FAIL 25 25 Missing: Math/Matrix.pm 2026-04-26 AI::NNVMCAPI FAIL 1 0 1/1 subtests failed 2026-04-12 AI::NeuralNet::BackProp::File FAIL No parseable output 2026-04-21 +AI::NeuralNet::Hopfield FAIL 2 1 1/2 subtests failed 2026-04-26 AI::NeuralNet::Simple FAIL 4 0 51/4 subtests failed 2026-04-21 AI::ParticleSwarmOptimization FAIL 2026-04-21 AI::ParticleSwarmOptimization::MCE FAIL 2 1 1/2 subtests failed 2026-04-22 ALPM FAIL Configure failed 2026-04-12 AMQP FAIL 2026-04-22 -ANSI::Unicode FAIL Missing: Moose.pm 2026-04-12 +AMSSerializer FAIL 5 3 2/5 subtests failed 2026-04-26 +ANSI::Unicode FAIL Missing: Moose.pm 2026-04-26 API::CLI FAIL 5 2 3/5 subtests failed 2026-04-21 -APR::Base64 FAIL Configure failed 2026-04-21 -APR::Request::Apache2 FAIL Configure failed 2026-04-21 +APISchema FAIL Unknown test outcome 2026-04-25 +APR::Base64 FAIL Configure failed 2026-04-25 +APR::Finfo FAIL Configure failed 2026-04-26 +APR::Request::Apache2 FAIL Configure failed 2026-04-25 +APR::Table FAIL Configure failed 2026-04-25 ARGV::JSON FAIL 1 1 2026-04-12 ARGV::OrDATA FAIL 20 17 3/20 subtests failed 2026-04-12 +ASNMTAP::Asnmtap FAIL Configure failed 2026-04-26 +ASP4 FAIL 17 7 10/17 subtests failed 2026-04-26 +ASP4x::Linker FAIL 2 1 1/2 subtests failed 2026-04-26 AWS::CLIWrapper FAIL 50 38 12/50 subtests failed 2026-04-21 AWS::IP FAIL 1 0 1/1 subtests failed 2026-04-12 +AWS::XRay FAIL 2 2 Missing: common/sense.pm 2026-04-26 AXL::Client::Simple FAIL Configure failed 2026-04-12 Abstract::Meta::Class FAIL 104 104 Missing: Devel/Symdump.pm 2026-04-12 Ace FAIL Unknown test outcome 2026-04-12 Acrux FAIL 139 134 5/139 subtests failed 2026-04-12 +ActionExporter FAIL Unknown test outcome 2026-04-26 +ActiveResource FAIL Missing: common/sense.pm 2026-04-26 Affix FAIL Configure failed 2026-04-12 Algorithm::Combinatorics FAIL 2 1 1/2 subtests failed 2026-04-12 +Algorithm::Evolutionary FAIL 183 0 1584/183 subtests failed 2026-04-25 Algorithm::FastPermute FAIL 2026-04-22 +Algorithm::Permute FAIL 1 0 1/1 subtests failed 2026-04-25 Algorithm::SVM FAIL 2026-04-12 Alias FAIL 2026-04-12 -Alien::Base::ModuleBuild FAIL 22 15 7/22 subtests failed 2026-04-22 +Alien::Base::ModuleBuild FAIL 47 38 9/47 subtests failed 2026-04-25 Alien::Base::Wrapper FAIL Unknown test outcome 2026-04-12 Alien::Build::Plugin::Download::GitHub FAIL 4 2 2/4 subtests failed 2026-04-12 Alien::GMP FAIL Configure failed 2026-04-12 Alien::Libxml2 FAIL Configure failed 2026-04-22 +Alien::MariaDB FAIL 1 0 1/1 subtests failed 2026-04-25 Alien::ROOT FAIL Configure failed 2026-04-22 +Alien::SDL FAIL Build failed 2026-04-25 Alien::Web::ExtJS::V3 FAIL Unknown test outcome 2026-04-21 Alien::Web::HalBrowser FAIL Unknown test outcome 2026-04-22 Alien::cmake3 FAIL Configure failed 2026-04-22 +Alien::gmake FAIL Missing: Alien/gmake/ConfigData.pm 2026-04-26 Alien::libextism FAIL Configure failed 2026-04-12 +Alien::libsdl2 FAIL 1 1 Missing: Alien/libsdl2/ConfigData.pm 2026-04-26 Alien::wxWidgets FAIL 1 0 8/1 subtests failed 2026-04-22 -AlignDB::DeltaG FAIL 1 0 1/1 subtests failed 2026-04-12 +AlignDB::DeltaG FAIL 1 0 1/1 subtests failed 2026-04-25 AlignDB::GC FAIL 1 0 1/1 subtests failed 2026-04-21 AlignDB::IntSpan FAIL 8 0 8860/8 subtests failed 2026-04-21 Alt::Crypt::RSA::BigInt FAIL 6 0 8/6 subtests failed 2026-04-22 AltaVista::SearchSDK FAIL 2026-04-21 Alter FAIL 91 73 18/91 subtests failed 2026-04-21 Amazon::Credentials FAIL 1 0 1/1 subtests failed 2026-04-21 -Amon2::Auth::Site::Google FAIL 1 0 1/1 subtests failed 2026-04-22 +Amon2 FAIL 165 162 3/165 subtests failed 2026-04-26 +Amon2::Auth::Site::Google FAIL 1 0 1/1 subtests failed 2026-04-25 Amon2::Util FAIL 159 156 3/159 subtests failed 2026-04-21 AnnoCPAN::Perldoc::SyncDB FAIL No parseable output 2026-04-22 Announcements FAIL Configure failed 2026-04-12 Any::Moose FAIL 18 15 3/18 subtests failed 2026-04-12 AnyData FAIL 1 0 59/1 subtests failed 2026-04-12 AnyEvent FAIL Configure failed 2026-04-12 -AnyEvent::AIO FAIL Configure failed 2026-04-22 +AnyEvent::AIO FAIL Configure failed 2026-04-25 AnyEvent::AggressiveIdle FAIL 4 0 12/4 subtests failed 2026-04-12 AnyEvent::Atom::Stream FAIL Configure failed 2026-04-12 AnyEvent::Capture FAIL Missing: AnyEvent.pm 2026-04-12 -AnyEvent::Connection FAIL Configure failed 2026-04-12 +AnyEvent::Connection FAIL 1 1 Missing: common/sense.pm 2026-04-25 AnyEvent::Consul FAIL 1 0 1/1 subtests failed 2026-04-22 AnyEvent::Consul::Exec FAIL 1 0 1/1 subtests failed 2026-04-22 AnyEvent::DBI::MySQL FAIL 1 0 1/1 subtests failed 2026-04-22 AnyEvent::Debounce FAIL Missing: Moose.pm 2026-04-21 +AnyEvent::Digest FAIL 15 11 4/15 subtests failed 2026-04-25 AnyEvent::Discord FAIL PerlOnJava: register limit exceeded 2026-04-12 -AnyEvent::FTP FAIL 116 105 11/116 subtests failed 2026-04-12 +AnyEvent::FTP FAIL 57 39 18/57 subtests failed 2026-04-25 AnyEvent::Fork::Remote FAIL Missing: common/sense.pm 2026-04-12 +AnyEvent::ForkManager FAIL 1 1 Missing: Test/SharedObject.pm 2026-04-25 AnyEvent::ForkObject FAIL 5 0 51/5 subtests failed 2026-04-12 AnyEvent::FreeSWITCH FAIL 1 0 1/1 subtests failed 2026-04-21 AnyEvent::FriendFeed::Realtime FAIL Configure failed 2026-04-12 AnyEvent::Gearman FAIL Configure failed 2026-04-12 AnyEvent::Groonga FAIL Configure failed 2026-04-12 AnyEvent::HTTP FAIL Missing: common/sense.pm 2026-04-12 -AnyEvent::HTTP::LWP::UserAgent FAIL 1 0 2/1 subtests failed 2026-04-22 +AnyEvent::HTTP::LWP::UserAgent FAIL 1 0 2/1 subtests failed 2026-04-25 AnyEvent::Handle::Writer FAIL 1 0 1/1 subtests failed 2026-04-21 AnyEvent::I3 FAIL 1 0 1/1 subtests failed 2026-04-21 +AnyEvent::I3X::Workspace::OnDemand FAIL 5 0 5/5 subtests failed 2026-04-26 AnyEvent::ImageShack FAIL 1 0 1/1 subtests failed 2026-04-12 AnyEvent::Impl::NSRunLoop FAIL 19 18 1/19 subtests failed 2026-04-22 +AnyEvent::Lingr FAIL 1 0 1/1 subtests failed 2026-04-26 AnyEvent::MP FAIL 7 0 7/7 subtests failed 2026-04-21 AnyEvent::Mac::Pasteboard FAIL 1 0 7/1 subtests failed 2026-04-21 +AnyEvent::Memcached FAIL 8 6 2/8 subtests failed 2026-04-25 AnyEvent::MockTCPServer FAIL Missing: AnyEvent/Socket.pm 2026-04-12 AnyEvent::Monitor::CPU FAIL 3 0 3/3 subtests failed 2026-04-22 +AnyEvent::MultiDownload FAIL 1 0 1/1 subtests failed 2026-04-25 AnyEvent::Net::Curl::Const FAIL 58 24 34/58 subtests failed 2026-04-22 AnyEvent::OWNet FAIL 18 15 3/18 subtests failed 2026-04-12 +AnyEvent::Onkyo FAIL 2026-04-25 +AnyEvent::Pcap FAIL 3 2 1/3 subtests failed 2026-04-26 AnyEvent::Pg::Pool FAIL Missing: Pg/PQ.pm 2026-04-12 AnyEvent::Pg::Pool::Multiserver FAIL 1 0 1/1 subtests failed 2026-04-12 AnyEvent::Plurk FAIL Configure failed 2026-04-12 @@ -97,37 +126,53 @@ AnyEvent::RPC FAIL Configure failed 2026-04-12 AnyEvent::RTPG FAIL 2 0 2/2 subtests failed 2026-04-21 AnyEvent::RabbitMQ FAIL 13 11 2/13 subtests failed 2026-04-21 AnyEvent::ReadLine::Gnu FAIL Missing: common/sense.pm 2026-04-21 +AnyEvent::Redis::RipeRedis FAIL 93 73 20/93 subtests failed 2026-04-25 AnyEvent::SCGI FAIL 1 0 17/1 subtests failed 2026-04-22 AnyEvent::SSH2 FAIL 1 0 1/1 subtests failed 2026-04-12 AnyEvent::Serialize FAIL Missing: AnyEvent.pm 2026-04-12 +AnyEvent::Stomper::Pool FAIL TIMEOUT (>300s) 2026-04-25 AnyEvent::Tools FAIL 10 0 103/10 subtests failed 2026-04-12 AnyEvent::UWSGI FAIL 1 0 1/1 subtests failed 2026-04-21 AnyEvent::WebService::Notifo FAIL 1 0 1/1 subtests failed 2026-04-12 +AnyEvent::Worker FAIL 5 0 26/5 subtests failed 2026-04-25 AnyEvent::XMPP FAIL 40 0 51/40 subtests failed 2026-04-22 AnyEvent::mDNS FAIL Configure failed 2026-04-12 AnyMQ FAIL 1 0 1/1 subtests failed 2026-04-22 AnyMQ::Pg FAIL Configure failed 2026-04-12 +AnyMerchant FAIL Unknown test outcome 2026-04-25 Ao FAIL 2026-04-12 AozoraBunko::Checkerkun FAIL 45 10 35/45 subtests failed 2026-04-22 Apache FAIL Configure failed 2026-04-22 -Apache2::API FAIL 66 52 14/66 subtests failed 2026-04-21 +Apache2::API FAIL 66 52 14/66 subtests failed 2026-04-25 Apache2::Ajax FAIL Configure failed 2026-04-21 Apache2::AuthAny FAIL 19 4 15/19 subtests failed 2026-04-12 +Apache2::AuthTicket FAIL 1 1 Missing: Apache/Test.pm 2026-04-26 Apache2::AuthTicketLDAP FAIL Unknown test outcome 2026-04-21 Apache2::AuthZLDAP FAIL 5 1 4/5 subtests failed 2026-04-21 +Apache2::AuthenNTLM FAIL Unknown test outcome 2026-04-25 +Apache2::AuthenNTLM::Cookie FAIL Unknown test outcome 2026-04-25 Apache2::AuthenSmb FAIL Configure failed 2026-04-12 +Apache2::BalanceLogic FAIL 1 0 1/1 subtests failed 2026-04-25 Apache2::CmdParms FAIL Configure failed 2026-04-21 Apache2::Connection::SkipDummy FAIL Configure failed 2026-04-22 +Apache2::Cookie FAIL Configure failed 2026-04-25 Apache2::DirBasedHandler FAIL Configure failed 2026-04-21 +Apache2::Directive FAIL Configure failed 2026-04-25 Apache2::FixupContentLanguage FAIL Configure failed 2026-04-12 Apache2::Geo::IP::Record FAIL Configure failed 2026-04-21 Apache2::JemplateFilter FAIL Configure failed 2026-04-22 +Apache2::LogNotify FAIL 1 0 1/1 subtests failed 2026-04-26 +Apache2::Mogile::Dispatch FAIL 2 1 1/2 subtests failed 2026-04-26 Apache2::Mojo FAIL 1 0 1/1 subtests failed 2026-04-21 -Apache2::Reload FAIL Configure failed 2026-04-21 +Apache2::Reload FAIL Configure failed 2026-04-25 +Apache2::Request FAIL Configure failed 2026-04-26 +Apache2::Response::FileMerge FAIL Configure failed 2026-04-26 +Apache2::SOAP FAIL Unknown test outcome 2026-04-26 Apache2::ScoreboardIsFull FAIL 1 0 1/1 subtests failed 2026-04-12 -Apache2::WebApp FAIL Configure failed 2026-04-22 -Apache2::WebApp::Plugin::DBI FAIL Configure failed 2026-04-12 -Apache2::WebApp::Plugin::DateTime FAIL Configure failed 2026-04-12 +Apache2::WebApp FAIL Configure failed 2026-04-26 +Apache2::WebApp::Extra::Admin FAIL Unknown test outcome 2026-04-26 +Apache2::WebApp::Plugin::DBI FAIL Configure failed 2026-04-26 +Apache2::WebApp::Plugin::DateTime FAIL Configure failed 2026-04-26 Apache2::WebApp::Plugin::File FAIL Configure failed 2026-04-12 Apache2::WebApp::Plugin::Mail FAIL Configure failed 2026-04-21 Apache2::WebApp::Plugin::Validate FAIL Configure failed 2026-04-22 @@ -136,57 +181,79 @@ Apache::Cookie FAIL Configure failed 2026-04-21 Apache::DBI FAIL 10 9 1/10 subtests failed 2026-04-22 Apache::Htpasswd FAIL Unknown test outcome 2026-04-12 Apache::Scoreboard FAIL Configure failed 2026-04-12 -Apache::Test FAIL Configure failed 2026-04-21 +Apache::Test FAIL Configure failed 2026-04-26 +ApacheMagicApp FAIL 5 0 22/5 subtests failed 2026-04-26 App::AppSpec FAIL 2 1 1/2 subtests failed 2026-04-21 App::Cmd::Setup FAIL 57 31 26/57 subtests failed 2026-04-12 +App::Control FAIL Unknown test outcome 2026-04-26 +App::Prove::Watch FAIL 1 1 2026-04-26 App::Yath::Options FAIL Configure failed 2026-04-22 AppBase::Grep FAIL PerlOnJava: register limit exceeded 2026-04-12 AppBase::Sort FAIL PerlOnJava: register limit exceeded 2026-04-12 +Appium FAIL 4 4 Missing: Selenium/Remote/Commands.pm 2026-04-26 Archive::Any FAIL 23 8 15/23 subtests failed 2026-04-22 Archive::CAR FAIL Missing: Codec/CBOR.pm 2026-04-12 +Archive::Extract::Libarchive FAIL Configure failed 2026-04-26 Archive::Peek FAIL 5 4 1/5 subtests failed 2026-04-12 Argv FAIL Syntax error 2026-04-21 -Array::Compare FAIL 37 36 1/37 subtests failed 2026-04-22 +Array::RefElem FAIL 2026-04-26 ArrayData::Lingua::Word::EN::Medical::Glutanimate FAIL PerlOnJava: register limit exceeded 2026-04-12 Arriba FAIL 9 5 4/9 subtests failed 2026-04-12 Asm::Preproc FAIL 1 0 1/1 subtests failed 2026-04-12 +AsposeCellsCloud::LightCellsApi FAIL TIMEOUT (>300s) 2026-04-25 AsposeCellsCloud::Object::ProtectWorkbookRequst FAIL Unknown test outcome 2026-04-12 -AsposeCellsCloud::Request::GetExtractBarcodesRequest FAIL Configure failed 2026-04-22 +AsposeCellsCloud::Object::QueryDataSource FAIL TIMEOUT (>300s) 2026-04-26 +AsposeCellsCloud::Request::GetExtractBarcodesRequest FAIL TIMEOUT (>300s) 2026-04-25 AsposeEmailCloud::ApiClient FAIL No parseable output 2026-04-22 AsposeSlidesCloud::ApiClient FAIL Unknown test outcome 2026-04-12 +Asset::File FAIL 2 1 1/2 subtests failed 2026-04-25 Astro::Coord::ECI FAIL 10 9 1/10 subtests failed 2026-04-21 Astro::SpaceTrack FAIL 204 158 46/204 subtests failed 2026-04-21 +Async FAIL 3 0 35/3 subtests failed 2026-04-25 Asynchat FAIL No parseable output 2026-04-22 At FAIL 2026-04-12 Atompub FAIL Configure failed 2026-04-12 Attean FAIL 1 0 1/1 subtests failed 2026-04-21 Attribute::Lexical FAIL 131 31 100/131 subtests failed 2026-04-21 -Authen::DecHpwd FAIL 5 0 39/5 subtests failed 2026-04-21 +AudioFile::Info::MP3::Tag FAIL 4 0 21/4 subtests failed 2026-04-25 +Authen::CAS::Client FAIL 66 0 139/66 subtests failed 2026-04-26 +Authen::DecHpwd FAIL 5 0 39/5 subtests failed 2026-04-25 +Authen::NTLM FAIL 2 0 34/2 subtests failed 2026-04-25 +Authen::Passphrase::AcceptAll FAIL 406 0 1254/406 subtests failed 2026-04-25 AutoReloader FAIL No parseable output 2026-04-22 +AutoXS FAIL 1 0 1/1 subtests failed 2026-04-25 AxKit2 FAIL No parseable output 2026-04-22 AxKit::XSP::Cookie FAIL Missing: Apache/AxKit/Language/XSP.pm 2026-04-21 +AxKit::XSP::Exception FAIL Missing: Apache/AxKit/Language/XSP.pm 2026-04-26 +AxKit::XSP::L10N FAIL 34 33 1/34 subtests failed 2026-04-25 AxKit::XSP::MD5 FAIL Missing: Apache/AxKit/Language/XSP.pm 2026-04-21 Axis FAIL No parseable output 2026-04-21 B::BUtils FAIL TIMEOUT (>300s) 2026-04-21 +B::COW FAIL 2 1 1/2 subtests failed 2026-04-26 B::Deobfuscate FAIL 2026-04-12 +B::Generate FAIL Configure failed 2026-04-25 B::Graph FAIL 2026-04-21 B::Hooks::EndOfScope FAIL 24 17 7/24 subtests failed 2026-04-21 +B::Hooks::OP::Annotation FAIL 3 2 1/3 subtests failed 2026-04-26 B::JVM::Jasmin FAIL No parseable output 2026-04-22 B::Keywords FAIL 15 15 2026-04-12 B::Lint FAIL Unknown test outcome 2026-04-12 B::Lint::Plugin::Test FAIL No parseable output 2026-04-12 -B::Module::Info FAIL 109 70 39/109 subtests failed 2026-04-12 +B::Module::Info FAIL 111 73 38/111 subtests failed 2026-04-25 +B::Utils1 FAIL 12 0 27/12 subtests failed 2026-04-25 BBS::UserInfo::SOB FAIL 1 0 1/1 subtests failed 2026-04-12 BIE::Data::HDF5 FAIL Configure failed 2026-04-12 BSD::Jail::Object FAIL Configure failed 2026-04-21 BSD::Process::Affinity FAIL Configure failed 2026-04-21 -BSD::Resource FAIL Configure failed 2026-04-22 -BSD::Socket::Splice FAIL 2 0 2/2 subtests failed 2026-04-21 +BSD::Resource FAIL Configure failed 2026-04-26 +BSD::Socket::Splice FAIL 2 0 2/2 subtests failed 2026-04-26 +BSD::devstat FAIL 2 0 16/2 subtests failed 2026-04-25 +BZ::Client::Test FAIL TIMEOUT (>300s) 2026-04-26 BadWrapperBlock FAIL 2026-04-21 Bad_Handle FAIL No parseable output 2026-04-21 BaseLib FAIL 2026-04-12 BeePack FAIL No parseable output 2026-04-21 -BenchmarkAnything::Config FAIL 2 2 2026-04-21 +BenchmarkAnything::Config FAIL 2 2 2026-04-26 BenchmarkAnything::Reporter FAIL 2 2 2026-04-21 BenchmarkAnything::Schema FAIL 3 3 Missing: JSON/Hyper.pm 2026-04-21 BenchmarkAnything::Storage::Backend::SQL FAIL Unknown test outcome 2026-04-21 @@ -194,54 +261,76 @@ BenchmarkAnything::Storage::Frontend::Lib FAIL 1 0 1/1 subtests failed 2026-04-2 BenchmarkAnything::Storage::Frontend::Tools FAIL Unknown test outcome 2026-04-21 Bencode FAIL 1 0 1/1 subtests failed 2026-04-21 BerkeleyDB FAIL 3 3 2026-04-12 -BigIP::iControl FAIL No parseable output 2026-04-21 +BibliConverter FAIL Unknown test outcome 2026-04-26 +Bifcode FAIL 2026-04-25 Binding FAIL Configure failed 2026-04-12 BingoX::Argon FAIL Unknown test outcome 2026-04-12 Bio::Annotation::Collection FAIL Unknown test outcome 2026-04-22 Bio::Gonzales FAIL 64 51 13/64 subtests failed 2026-04-22 +BioSAILs::Integrations::Github FAIL 1 1 Missing: Moose.pm 2026-04-26 BioX::CLPM FAIL No parseable output 2026-04-22 +BioX::Workflow FAIL Missing: Moose.pm 2026-04-26 BioX::Workflow::Command::file_log FAIL No parseable output 2026-04-22 +BioX::Wrapper FAIL Missing: Moose.pm 2026-04-26 Bison FAIL Configure failed 2026-04-12 Bit::Vector FAIL 1 0 14/1 subtests failed 2026-04-12 Blessed::Merge FAIL 1 0 1/1 subtests failed 2026-04-12 Bluesky FAIL Missing: At.pm 2026-04-12 -Bootylicious FAIL No parseable output 2026-04-21 +Bootylicious FAIL 134 0 135/134 subtests failed 2026-04-26 BorderStyle FAIL PerlOnJava: register limit exceeded 2026-04-12 Bot::BasicBot FAIL 2 0 2/2 subtests failed 2026-04-21 Brickyard FAIL Missing: Role/Basic.pm 2026-04-22 BridgeAPI FAIL No parseable output 2026-04-21 Bryar FAIL No parseable output 2026-04-22 Business::ISBN FAIL 32 20 12/32 subtests failed 2026-04-22 +Business::OnlinePayment FAIL 81 80 1/81 subtests failed 2026-04-25 BuzzSaw::Cmd FAIL No parseable output 2026-04-21 ByteCache FAIL Unknown test outcome 2026-04-12 Bytes::Random::Secure FAIL 207 195 12/207 subtests failed 2026-04-12 -CA::AutoSys FAIL No parseable output 2026-04-21 +C::Scan::Constants FAIL 21 17 4/21 subtests failed 2026-04-25 CACertOrg::CA FAIL No parseable output 2026-04-22 CAD::Calc FAIL Unknown test outcome 2026-04-12 +CAD::OpenSCAD::GearMaker FAIL Missing: Object/Pad.pm 2026-04-25 CAM::EmailTemplate::SMTP FAIL Missing: CAM/Template.pm 2026-04-12 +CAM::Template::Cache FAIL No parseable output 2026-04-25 CAM::XML FAIL No parseable output 2026-04-21 +CBOR::XS FAIL Missing: common/sense.pm 2026-04-26 CBSSports::Getopt FAIL No parseable output 2026-04-22 -CDB::TinyCDB FAIL Configure failed 2026-04-12 -CDB_File::Generator FAIL No parseable output 2026-04-21 +CCCP::ConfigXML FAIL 3 1 2/3 subtests failed 2026-04-26 +CDB::TinyCDB FAIL Configure failed 2026-04-26 +CDB_File FAIL 2026-04-26 +CDB_File::BiIndex FAIL Missing: CDB_File/Generator.pm 2026-04-25 +CDB_File::Generator FAIL Missing: CDB_File.pm 2026-04-25 +CDB_File_Thawed FAIL 10 0 36/10 subtests failed 2026-04-25 CDDB::Fake FAIL No parseable output 2026-04-21 +CDMIUtils FAIL Unknown test outcome 2026-04-26 +CGI::AppBuilder FAIL Configure failed 2026-04-26 CGI::AppBuilder::Log FAIL Configure failed 2026-04-21 CGI::AppBuilder::MapDisp2 FAIL No parseable output 2026-04-22 CGI::AppBuilder::MapForms FAIL Configure failed 2026-04-21 +CGI::AppBuilder::Message FAIL Configure failed 2026-04-26 CGI::AppBuilder::Tasks FAIL Configure failed 2026-04-21 CGI::Application::Dispatch FAIL 28 10 18/28 subtests failed 2026-04-21 CGI::Application::Dispatch::Server FAIL Unknown test outcome 2026-04-21 CGI::Application::HelpMan FAIL 4 4 Missing: Pod/Html.pm 2026-04-21 +CGI::Application::Plugin::AJAXUpload FAIL 4 0 35/4 subtests failed 2026-04-25 CGI::Application::Plugin::AutoRunmode FAIL 74 71 3/74 subtests failed 2026-04-12 +CGI::Application::Plugin::CHI FAIL 12 0 42/12 subtests failed 2026-04-26 +CGI::Application::Plugin::Config::General FAIL 152 150 2/152 subtests failed 2026-04-26 CGI::Application::Plugin::Feedback FAIL Missing: CGI/Session.pm 2026-04-21 CGI::Application::Plugin::FormState FAIL No parseable output 2026-04-22 CGI::Application::Plugin::Header FAIL No parseable output 2026-04-22 +CGI::Application::Plugin::HtmlTidy FAIL 6 0 26/6 subtests failed 2026-04-25 +CGI::Application::Plugin::Menu FAIL 26 26 2026-04-26 CGI::Application::Plugin::MetadataDB FAIL No parseable output 2026-04-22 CGI::Application::Plugin::Output::XSV FAIL No parseable output 2026-04-22 +CGI::Application::Plugin::PageLookup FAIL 28 23 5/28 subtests failed 2026-04-26 +CGI::Application::Plugin::RunmodeParseKeyword FAIL 20 0 25/20 subtests failed 2026-04-26 CGI::Application::Plugin::Session FAIL 10 0 117/10 subtests failed 2026-04-21 CGI::Application::Plugin::TT FAIL 58 55 3/58 subtests failed 2026-04-12 CGI::Application::Plugin::TmplInnerOuter FAIL 2026-04-21 CGI::Application::Plugin::ValidateRM FAIL No parseable output 2026-04-22 -CGI::Application::Plugin::ViewCode FAIL 1 1 2026-04-21 +CGI::Application::Plugin::ViewCode FAIL 1 1 2026-04-26 CGI::Application::Plugin::YAML FAIL No parseable output 2026-04-21 CGI::Application::Search FAIL No parseable output 2026-04-22 CGI::Application::Server FAIL 13 0 80/13 subtests failed 2026-04-21 @@ -253,67 +342,96 @@ CGI::Builder FAIL 5 0 22/5 subtests failed 2026-04-12 CGI::Builder::LogDispatch FAIL Unknown test outcome 2026-04-21 CGI::Bus FAIL No parseable output 2026-04-22 CGI::Capture FAIL 14 13 1/14 subtests failed 2026-04-12 +CGI::Carp::Throw FAIL 39 37 2/39 subtests failed 2026-04-26 CGI::ClientError FAIL No parseable output 2026-04-22 -CGI::Compile FAIL 41 0 61/41 subtests failed 2026-04-22 +CGI::Compile FAIL 41 0 58/41 subtests failed 2026-04-26 CGI::Compress::Gzip FAIL No parseable output 2026-04-22 CGI::ContactForm FAIL Syntax error 2026-04-21 +CGI::Cookie::Splitter FAIL 328 326 2/328 subtests failed 2026-04-25 CGI::Cookie::XS FAIL 2 0 7/2 subtests failed 2026-04-21 CGI::Easy FAIL 2 0 4/2 subtests failed 2026-04-12 -CGI::Emulate::PSGI FAIL 41 28 13/41 subtests failed 2026-04-12 +CGI::Emulate::PSGI FAIL 39 39 2026-04-26 CGI::EncryptForm FAIL 2026-04-12 CGI::Enurl FAIL Unknown test outcome 2026-04-21 CGI::Fast FAIL 4 0 30/4 subtests failed 2026-04-21 CGI::FormBuilder FAIL 467 313 154/467 subtests failed 2026-04-12 +CGI::FormBuilder::Template::HTC FAIL 2 0 7/2 subtests failed 2026-04-26 +CGI::Graph FAIL Missing: GD.pm 2026-04-26 CGI::Header::Apache2 FAIL No parseable output 2026-04-22 CGI::Lite::Request::Apache FAIL No parseable output 2026-04-21 CGI::MultiValuedHash FAIL 1 0 44/1 subtests failed 2026-04-21 CGI::OptimalQuery FAIL 19 5 14/19 subtests failed 2026-04-21 +CGI::Out FAIL Unknown test outcome 2026-04-26 CGI::PSGI FAIL 84 84 2026-04-21 CGI::Path FAIL 2026-04-12 +CGI::PathRequest FAIL Missing: File/PathInfo/Ext.pm 2026-04-25 +CGI::PrintWrapper FAIL 16 12 4/16 subtests failed 2026-04-25 CGI::Prototype::Docs::Resources FAIL No parseable output 2026-04-22 CGI::Pure FAIL No parseable output 2026-04-12 -CGI::Session FAIL 691 257 434/691 subtests failed 2026-04-22 +CGI::Session FAIL 751 651 100/751 subtests failed 2026-04-26 CGI::Session::Auth FAIL 1 0 17/1 subtests failed 2026-04-22 CGI::Session::Driver::dbic FAIL No parseable output 2026-04-12 CGI::Session::Driver::flexmysql FAIL No parseable output 2026-04-12 +CGI::Session::Driver::layered FAIL 1 0 1/1 subtests failed 2026-04-25 +CGI::Session::Driver::redis FAIL 38 31 7/38 subtests failed 2026-04-26 CGI::Session::ID::sha FAIL 6 0 6/6 subtests failed 2026-04-21 CGI::Session::ODBC FAIL 2 0 36/2 subtests failed 2026-04-22 CGI::Session::SQLite FAIL 1 0 1/1 subtests failed 2026-04-21 CGI::Session::Serialize::Base64 FAIL No parseable output 2026-04-21 CGI::Session::Test::SimpleObjectClass FAIL No parseable output 2026-04-21 +CGI::Shorten FAIL 2026-04-25 CGI::Simple::Cookie FAIL 181 0 702/181 subtests failed 2026-04-12 CGI::Snapp::Demo::Three FAIL No parseable output 2026-04-12 +CGI::SpeedyCGI FAIL Configure failed 2026-04-25 CGI::Struct::XS FAIL 1 0 1/1 subtests failed 2026-04-22 CGI::Test FAIL 8 0 168/8 subtests failed 2026-04-12 CGI::Untaint::CountyStateProvince::US FAIL No parseable output 2026-04-12 -CGI::Untaint::date FAIL 2 0 4/2 subtests failed 2026-04-21 +CGI::Untaint::date FAIL 2 0 4/2 subtests failed 2026-04-25 CGI::Untaint::email FAIL 4 3 1/4 subtests failed 2026-04-21 -CGI::Upload FAIL No parseable output 2026-04-21 +CGI::Upload FAIL 29 0 41/29 subtests failed 2026-04-26 CGI::Utils FAIL No parseable output 2026-04-12 -CGI::Wiki::Formatter::Multiple FAIL No parseable output 2026-04-12 -CGI::Wiki::Kwiki FAIL No parseable output 2026-04-21 +CGI::Wiki::Formatter::Multiple FAIL 1 1 Missing: CGI/Wiki/Setup/SQLite.pm 2026-04-26 +CGI::Wiki::Formatter::UseMod FAIL 1 0 51/1 subtests failed 2026-04-26 +CGI::Wiki::Kwiki FAIL Missing: CGI/Wiki/Setup/SQLite.pm 2026-04-26 +CGI::Wiki::Plugin::Diff FAIL 1 1 Missing: CGI/Wiki/TestConfig/Utilities.pm 2026-04-26 +CGI::Wiki::Plugin::Locator::UTM FAIL 1 1 Missing: CGI/Wiki/TestConfig/Utilities.pm 2026-04-25 CGI::remote_addr FAIL No parseable output 2026-04-12 CGIS FAIL No parseable output 2026-04-12 CGI_Lite FAIL Unknown test outcome 2026-04-22 CHI FAIL Unknown test outcome 2026-04-12 +CHI::Cascade FAIL 2 2 2026-04-26 CHI::Driver::DBI::t::Base FAIL TIMEOUT (>300s) 2026-04-21 +CHI::Driver::DBIC FAIL 1 0 1/1 subtests failed 2026-04-26 +CHI::Driver::Redis FAIL 2026-04-25 +CHI::Driver::Redis::SortedSet FAIL Missing: CHI/Driver/Redis/t/CHIDriverTests.pm 2026-04-25 CHI::Driver::TokyoTyrant FAIL 2026-04-21 CHI::Memoize FAIL Missing: Test/Class/Most.pm 2026-04-21 +CIPP::CGI FAIL No parseable output 2026-04-25 +CIPP::Doc FAIL Unknown test outcome 2026-04-26 CLDR::Number::Format::Percent FAIL 522 519 3/522 subtests failed 2026-04-22 +CLI FAIL No parseable output 2026-04-25 CLI::Coin::Toss FAIL No parseable output 2026-04-12 +CLI::Meta::diff FAIL No parseable output 2026-04-25 CLI::Osprey FAIL No parseable output 2026-04-12 CLI::Simple FAIL 7 7 2026-04-21 +CLI::TextLines::Utils FAIL No parseable output 2026-04-25 +CONFIG::Hash FAIL Unknown test outcome 2026-04-26 CORBA::C FAIL Unknown test outcome 2026-04-12 CORBA::C::nameattr FAIL TIMEOUT (>300s) 2026-04-21 CORBA::Cplusplus::nameattr FAIL TIMEOUT (>300s) 2026-04-21 CORBA::IDL FAIL Unknown test outcome 2026-04-22 CORBA::IDLtree FAIL No parseable output 2026-04-12 +CORBA::IOP::IOR FAIL No parseable output 2026-04-25 +CPAN::Cache FAIL No parseable output 2026-04-25 CPAN::Changes FAIL 2026-04-12 CPAN::Changes::Group::Dependencies::Stats FAIL 2026-04-12 -CPAN::Checksums FAIL Configure failed 2026-04-21 +CPAN::Checksums FAIL Configure failed 2026-04-26 CPAN::Cpanorg::Auxiliary FAIL No parseable output 2026-04-12 CPAN::Diff FAIL No parseable output 2026-04-12 CPAN::Digger FAIL No parseable output 2026-04-12 +CPAN::Distribution::ReleaseHistory FAIL 7 5 2/7 subtests failed 2026-04-26 +CPAN::FindDependencies FAIL No parseable output 2026-04-25 +CPAN::Local FAIL No parseable output 2026-04-25 CPAN::Meta::Prereqs::Diff FAIL Configure failed 2026-04-12 CPAN::Mini::Inject FAIL Missing: CPAN/Checksums.pm 2026-04-21 CPAN::Mini::Inject::REST::Client FAIL No parseable output 2026-04-12 @@ -321,27 +439,39 @@ CPAN::Mini::Inject::Server FAIL 8 6 2/8 subtests failed 2026-04-21 CPAN::Mini::Live FAIL Unknown test outcome 2026-04-12 CPAN::Mini::Portable FAIL 20 0 60/20 subtests failed 2026-04-22 CPAN::Mirror::Finder FAIL Unknown test outcome 2026-04-21 +CPAN::PackageDetails FAIL 235 230 5/235 subtests failed 2026-04-26 CPAN::Plugin::Sysdeps FAIL 41 41 Syntax error 2026-04-21 CPAN::Test::Dummy::Perl5::Build::Fails FAIL 2 1 1/2 subtests failed 2026-04-12 +CPAN::Test::Dummy::Perl5::VersionBump::Decrease FAIL TIMEOUT (>300s) 2026-04-25 CPAN::Test::Dummy::SCO::Lacks FAIL Unknown test outcome 2026-04-12 CPAN::Test::Reporter FAIL 1 0 1/1 subtests failed 2026-04-12 CPAN::Testers::Data::Addresses FAIL 8 6 2/8 subtests failed 2026-04-22 CPAN::Testers::Data::Release FAIL 3 0 11/3 subtests failed 2026-04-12 CPAN::Testers::Fact::PlatformInfo FAIL 1 0 1/1 subtests failed 2026-04-12 -CPAN::Testers::WWW::Reports::Query::Report FAIL 1 0 59/1 subtests failed 2026-04-22 +CPAN::Testers::WWW::Reports::Query::Report FAIL 1 0 59/1 subtests failed 2026-04-25 +CPAN::Visitor FAIL 2 1 1/2 subtests failed 2026-04-26 CPAN::WWW::Top100::Retrieve FAIL 4 2 2/4 subtests failed 2026-04-21 CPANDB FAIL 2 1 1/2 subtests failed 2026-04-22 -CPANPLUS FAIL Configure failed 2026-04-21 -CPANPLUS::Backend FAIL Configure failed 2026-04-22 +CPANPLUS FAIL Configure failed 2026-04-26 +CPANPLUS::Backend FAIL Configure failed 2026-04-25 +CPANPLUS::Dist::Fedora FAIL 2 0 2/2 subtests failed 2026-04-25 +CPANPLUS::Dist::Gentoo FAIL 1395 1394 1/1395 subtests failed 2026-04-26 CPANPLUS::Shell::Curses FAIL 2 1 1/2 subtests failed 2026-04-21 -CPANPLUS::Test::Dummy::UsesScript FAIL 2 1 1/2 subtests failed 2026-04-22 +CPANPLUS::Test::Dummy::UsesScript FAIL 2 1 1/2 subtests failed 2026-04-26 CPU::Emulator::6502 FAIL 78 68 10/78 subtests failed 2026-04-22 CPU::Emulator::DCPU16 FAIL 41 28 13/41 subtests failed 2026-04-22 CPU::Emulator::Z80 FAIL 56 0 1707/56 subtests failed 2026-04-12 CPU::Z80::Assembler FAIL 145 0 18304/145 subtests failed 2026-04-22 CPU::Z80::Assembler::Token FAIL TIMEOUT (>120s) 2026-04-12 +CQL::Parser FAIL 203 202 1/203 subtests failed 2026-04-26 +CSS::DOM FAIL 113 0 937/113 subtests failed 2026-04-25 +CSS::Inliner FAIL 17 16 1/17 subtests failed 2026-04-26 CSS::Prepare FAIL 3 0 1070/3 subtests failed 2026-04-12 CSS::Sass FAIL Configure failed 2026-04-22 +CSS::Selector::Grammar FAIL 2 1 1/2 subtests failed 2026-04-25 +CSS::Simple FAIL 8 0 30/8 subtests failed 2026-04-26 +CSS::SpriteMaker::Simple FAIL 1 0 1/1 subtests failed 2026-04-25 +CSV::Reader FAIL 1 0 5/1 subtests failed 2026-04-25 CTK FAIL Unknown test outcome 2026-04-12 CTime FAIL No parseable output 2026-04-21 CVX::Utils FAIL 2026-04-21 @@ -355,7 +485,7 @@ Cache::File FAIL Configure failed 2026-04-12 Cache::LRU FAIL Configure failed 2026-04-12 Cache::Memcached::Fast FAIL 2026-04-12 Cache::Memory FAIL Configure failed 2026-04-12 -Cache::Memory::Simple FAIL 11 8 3/11 subtests failed 2026-04-22 +Cache::Memory::Simple FAIL 11 8 3/11 subtests failed 2026-04-25 Cache::Ref FAIL 9 0 9/9 subtests failed 2026-04-21 Cairo FAIL 2 0 276/2 subtests failed 2026-04-22 Carp FAIL 194 120 74/194 subtests failed 2026-04-22 @@ -369,6 +499,7 @@ Catalyst::Component::InstancePerContext FAIL Missing: Moose.pm 2026-04-21 Catalyst::Controller::AutoAssets FAIL 9 9 Missing: Moose.pm 2026-04-21 Catalyst::Controller::REST FAIL Missing: Moose.pm 2026-04-21 Catalyst::Engine::Embeddable FAIL 3 0 27/3 subtests failed 2026-04-21 +Catalyst::Model::Adaptor FAIL 4 2 2/4 subtests failed 2026-04-25 Catalyst::Model::DBIC::Schema FAIL 2 0 3/2 subtests failed 2026-04-21 Catalyst::Plugin::Authentication FAIL 7 0 18/7 subtests failed 2026-04-21 Catalyst::Plugin::Authorization::Roles FAIL 1 0 43/1 subtests failed 2026-04-21 @@ -379,15 +510,21 @@ Catalyst::Runtime FAIL Unknown test outcome 2026-04-21 Catalyst::View::TT FAIL 13 0 46/13 subtests failed 2026-04-21 CatalystX::AppBuilder FAIL 1 0 1/1 subtests failed 2026-04-22 CatalystX::CRUD FAIL 31 0 131/31 subtests failed 2026-04-21 +CatalystX::CRUD::Controller::REST FAIL 2 0 44/2 subtests failed 2026-04-26 +CatalystX::CRUD::Model::RDBO FAIL 14 0 48/14 subtests failed 2026-04-26 CatalystX::Component::Traits FAIL 1 0 18/1 subtests failed 2026-04-21 CatalystX::ComponentsFromConfig FAIL Missing: Moose.pm 2026-04-21 +CatalystX::Controller::PSGI FAIL Missing: Moose.pm 2026-04-26 +CatalystX::Debug::ResponseHeaders FAIL 2 0 2/2 subtests failed 2026-04-26 CatalystX::ExtJS::Direct FAIL 1 1 Missing: common/sense.pm 2026-04-22 -CatalystX::GlobalContext FAIL 9 0 21/9 subtests failed 2026-04-22 +CatalystX::GlobalContext FAIL 9 0 21/9 subtests failed 2026-04-26 CatalystX::Imports::Context FAIL Configure failed 2026-04-12 CatalystX::InjectComponent FAIL 1 1 Missing: Moose.pm 2026-04-21 CatalystX::OAuth2::Provider FAIL Configure failed 2026-04-12 CatalystX::PathContext FAIL 1 0 1/1 subtests failed 2026-04-21 CatalystX::Plugin::Blurb FAIL Configure failed 2026-04-12 +CatalystX::RoleApplicator FAIL Missing: Moose.pm 2026-04-25 +CatalystX::TraitFor::Dispatcher::ExactMatch FAIL 1 0 1/1 subtests failed 2026-04-25 CatalystX::VCS::Lookup FAIL 1 0 1/1 subtests failed 2026-04-22 CfgTie::CfgArgs FAIL 3 0 27/3 subtests failed 2026-04-12 Chart FAIL Missing: GD.pm 2026-04-22 @@ -397,35 +534,51 @@ Clamd FAIL 1 0 26/1 subtests failed 2026-04-22 Class::Accessor FAIL 139 137 2/139 subtests failed 2026-04-21 Class::Accessor::Classy FAIL 176 169 7/176 subtests failed 2026-04-22 Class::Accessor::Grouped FAIL 555 543 12/555 subtests failed 2026-04-21 +Class::Accessor::Lvalue FAIL 24 16 8/24 subtests failed 2026-04-26 Class::C3::Adopt::NEXT FAIL 4 0 22/4 subtests failed 2026-04-21 -Class::Container FAIL 2026-04-22 -Class::DBI FAIL 70 0 502/70 subtests failed 2026-04-22 +Class::Container FAIL 2026-04-26 +Class::DBI FAIL 73 0 501/73 subtests failed 2026-04-26 Class::DBI::Loader::Relationship FAIL Unknown test outcome 2026-04-21 Class::DBI::Pager FAIL 1 0 38/1 subtests failed 2026-04-21 Class::DBI::Pg::More FAIL 2026-04-22 Class::DBI::Plugin::DateTime::Pg FAIL 6 4 2/6 subtests failed 2026-04-22 Class::DBI::Plugin::RetrieveAll FAIL 2 0 3/2 subtests failed 2026-04-21 Class::DBI::Plugin::Type FAIL 6 1 5/6 subtests failed 2026-04-21 +Class::Date FAIL 7 0 10/7 subtests failed 2026-04-25 +Class::Fields FAIL 51 38 13/51 subtests failed 2026-04-25 +Class::Hook FAIL 5 0 9/5 subtests failed 2026-04-25 Class::InsideOut FAIL 316 173 143/316 subtests failed 2026-04-22 Class::Inspector FAIL 88 87 1/88 subtests failed 2026-04-21 Class::Load FAIL 86 70 16/86 subtests failed 2026-04-21 -Class::MOP FAIL Configure failed 2026-04-22 +Class::MOP FAIL Configure failed 2026-04-26 Class::MOP::Class FAIL Configure failed 2026-04-21 -Class::Mix FAIL 19 0 77/19 subtests failed 2026-04-22 -Class::Std FAIL 255 224 31/255 subtests failed 2026-04-22 +Class::MOP::Method FAIL Configure failed 2026-04-25 +Class::MakeMethods FAIL 1063 380 683/1063 subtests failed 2026-04-26 +Class::MethodMaker FAIL Syntax error 2026-04-26 +Class::Mix FAIL 19 0 77/19 subtests failed 2026-04-25 +Class::Std FAIL 254 223 31/254 subtests failed 2026-04-25 +Class::Std::Fast::Storable FAIL 4 0 90/4 subtests failed 2026-04-25 Class::Tangram FAIL 1 0 136/1 subtests failed 2026-04-21 Class::Tiny FAIL 2026-04-21 Class::Unload FAIL 10 10 2026-04-21 -Class::Util FAIL 341 323 18/341 subtests failed 2026-04-12 -Class::XSAccessor FAIL 10 0 184/10 subtests failed 2026-04-21 +Class::Util FAIL 341 323 18/341 subtests failed 2026-04-26 +Class::XSAccessor FAIL 10 0 184/10 subtests failed 2026-04-26 +ClearCase::Argv FAIL Syntax error 2026-04-26 +ClearCase::Attache FAIL Unknown test outcome 2026-04-26 ClearCase::ClearPrompt FAIL Unknown test outcome 2026-04-12 ClearCase::MtCmd FAIL Unknown test outcome 2026-04-21 ClearCase::Region_Cfg_Parser FAIL Configure failed 2026-04-12 +ClearCase::SyncTree FAIL Missing: ClearCase/Argv.pm 2026-04-25 +ClearCase::Wrapper FAIL Unknown test outcome 2026-04-26 +ClearCase::Wrapper::DSB FAIL Unknown test outcome 2026-04-26 Client FAIL 2026-04-21 +Clustericious FAIL 181 130 51/181 subtests failed 2026-04-26 +CodeGen::Cpppp FAIL 27 6 21/27 subtests failed 2026-04-26 CodeGenRequestResponseType FAIL Configure failed 2026-04-12 Codec::CBOR FAIL 8 5 3/8 subtests failed 2026-04-12 Color::ANSI::Util FAIL 2026-04-21 Color::Library FAIL 169 169 2026-04-22 +Color::Palette FAIL 1 1 Missing: Moose.pm 2026-04-25 Color::RGB::Util FAIL 2026-04-21 Color::Spectrum FAIL 2 0 16/2 subtests failed 2026-04-22 ColorTheme FAIL PerlOnJava: register limit exceeded 2026-04-12 @@ -433,23 +586,25 @@ Colouring::In FAIL 65 55 10/65 subtests failed 2026-04-12 Combinator FAIL 1 0 1/1 subtests failed 2026-04-22 Combine::Keys FAIL 1 1 2026-04-12 Commandable FAIL Configure failed 2026-04-12 -Commandable::Invocation FAIL Configure failed 2026-04-22 +Commandable::Invocation FAIL Configure failed 2026-04-25 Comparer FAIL PerlOnJava: register limit exceeded 2026-04-12 Compiled::Params::OO FAIL 6 6 2026-04-21 Complete::Getopt::Long FAIL 2 1 1/2 subtests failed 2026-04-22 Config::Backend::INI FAIL 2 0 10/2 subtests failed 2026-04-12 Config::General FAIL 17 0 62/17 subtests failed 2026-04-12 -Config::IniFiles FAIL 45 0 175/45 subtests failed 2026-04-22 +Config::IniFiles FAIL 45 0 175/45 subtests failed 2026-04-26 +Config::MySQL FAIL 8 5 3/8 subtests failed 2026-04-26 Config::Simple FAIL 16 0 59/16 subtests failed 2026-04-21 Config::Std FAIL 2 1 1/2 subtests failed 2026-04-22 Config_u FAIL No parseable output 2026-04-12 Const::Exporter FAIL 8 1 7/8 subtests failed 2026-04-21 -Const::Fast FAIL 1 0 1/1 subtests failed 2026-04-22 +Const::Fast FAIL 2026-04-26 Consul FAIL 1 0 1/1 subtests failed 2026-04-22 Continuity FAIL 1 0 1/1 subtests failed 2026-04-21 Convert::PEM FAIL 1 0 49/1 subtests failed 2026-04-22 +CookBookB::ArrayOfStruct FAIL No parseable output 2026-04-26 Cookie FAIL 11 4 7/11 subtests failed 2026-04-21 -Coro FAIL 17 0 43/17 subtests failed 2026-04-12 +Coro FAIL 17 0 43/17 subtests failed 2026-04-25 Coro::Event FAIL 17 0 43/17 subtests failed 2026-04-21 Corona FAIL 1 0 1/1 subtests failed 2026-04-21 Coteng FAIL Unknown test outcome 2026-04-22 @@ -458,6 +613,8 @@ CouchWiki FAIL 5 4 1/5 subtests failed 2026-04-12 Cpanel::JSON::XS FAIL 2026-04-12 Crane FAIL 18 17 1/18 subtests failed 2026-04-22 Crayon FAIL 1 0 1/1 subtests failed 2026-04-12 +Crixa FAIL 7 1 6/7 subtests failed 2026-04-25 +Crypt::Bcrypt FAIL 2026-04-25 Crypt::Blowfish FAIL 2026-04-12 Crypt::CAST5_PP FAIL 2 0 8/2 subtests failed 2026-04-22 Crypt::CBC FAIL Unknown test outcome 2026-04-12 @@ -466,25 +623,31 @@ Crypt::Curve25519 FAIL 11 0 11/11 subtests failed 2026-04-12 Crypt::DES FAIL 2026-04-21 Crypt::DES_EDE3 FAIL 2026-04-22 Crypt::DSA FAIL 16 0 29/16 subtests failed 2026-04-22 +Crypt::ECB FAIL 7494 0 42823/7494 subtests failed 2026-04-26 Crypt::HCE_SHA FAIL 2026-04-12 Crypt::IDEA FAIL 2026-04-12 Crypt::JWT FAIL 3 0 6/3 subtests failed 2026-04-12 Crypt::Mode::CBC::Easy FAIL Unknown test outcome 2026-04-12 +Crypt::MySQL FAIL Build failed 2026-04-25 Crypt::OpenPGP FAIL 159 38 121/159 subtests failed 2026-04-22 Crypt::OpenSSL::X509 FAIL 6 0 94/6 subtests failed 2026-04-21 Crypt::PBKDF2 FAIL 7 0 4028/7 subtests failed 2026-04-12 +Crypt::PWSafe3 FAIL 3 0 13/3 subtests failed 2026-04-26 Crypt::Passphrase FAIL 43 43 2026-04-21 Crypt::RC4 FAIL Unknown test outcome 2026-04-22 Crypt::RIPEMD160 FAIL 2026-04-22 +Crypt::Random FAIL Missing: Math/Pari.pm 2026-04-26 Crypt::Random::Source FAIL 46 46 2026-04-21 Crypt::SSLeay FAIL 23 8 15/23 subtests failed 2026-04-21 Crypt::Sodium FAIL 1 0 1/1 subtests failed 2026-04-12 Crypt::Twofish FAIL 2026-04-22 Crypt::URandom FAIL 48 34 14/48 subtests failed 2026-04-12 +CryptX FAIL 114 0 24959/114 subtests failed 2026-04-26 Curses FAIL 1 0 1/1 subtests failed 2026-04-12 Curses::UI FAIL 56 0 121/56 subtests failed 2026-04-21 -CursorBase FAIL No parseable output 2026-04-22 +CursorBase FAIL No parseable output 2026-04-26 Customer FAIL 7 0 11/7 subtests failed 2026-04-22 +Cvs FAIL 18 0 37/18 subtests failed 2026-04-25 Cwd FAIL 826 819 7/826 subtests failed 2026-04-22 D64::Disk::Dir::Item FAIL 7 0 188/7 subtests failed 2026-04-22 D64::Disk::Layout::Sector FAIL 7 0 174/7 subtests failed 2026-04-22 @@ -495,98 +658,131 @@ DB::Ent FAIL 2026-04-12 DB::Object FAIL 31 9 22/31 subtests failed 2026-04-22 DB::Pluggable FAIL 9 0 9/9 subtests failed 2026-04-22 DB::Pluggable::Dumper FAIL 1 0 1/1 subtests failed 2026-04-22 +DB::SQL::Migrations FAIL 1 0 1/1 subtests failed 2026-04-26 DB::Sandbox FAIL 1 0 1/1 subtests failed 2026-04-21 -DBD::AnyData2 FAIL 1 0 1/1 subtests failed 2026-04-22 DBD::AnyData::db FAIL Unknown test outcome 2026-04-12 +DBD::Cego FAIL Configure failed 2026-04-26 DBD::DBMaker FAIL Configure failed 2026-04-22 DBD::EmpressNet FAIL Configure failed 2026-04-12 +DBD::Gofer::Transport::http FAIL 4 3 1/4 subtests failed 2026-04-25 +DBD::Illustra FAIL Configure failed 2026-04-26 DBD::Informix4 FAIL 2026-04-22 DBD::JDBC FAIL Configure failed 2026-04-22 DBD::LDAP FAIL Configure failed 2026-04-22 +DBD::MariaDB FAIL Configure failed 2026-04-26 DBD::Mimer FAIL Configure failed 2026-04-22 -DBD::Mock FAIL 206 161 45/206 subtests failed 2026-04-22 +DBD::Mock FAIL 392 308 84/392 subtests failed 2026-04-26 DBD::ODBC FAIL 10 6 4/10 subtests failed 2026-04-22 +DBD::Oracle FAIL Configure failed 2026-04-25 DBD::Oracle::db FAIL Configure failed 2026-04-12 DBD::Pg FAIL 2 0 2/2 subtests failed 2026-04-21 DBD::PgPPSjis FAIL 1 1 2026-04-22 DBD::PgSPI FAIL Configure failed 2026-04-21 DBD::RDFStore FAIL Missing: RDFStore.pm 2026-04-12 DBD::Redbase FAIL Configure failed 2026-04-12 +DBD::SQLAnywhere FAIL Configure failed 2026-04-26 DBD::Safe FAIL TIMEOUT (>120s) 2026-04-12 +DBD::SimpleMock FAIL 131 111 20/131 subtests failed 2026-04-25 DBD::Solid FAIL Configure failed 2026-04-21 DBD::Solid::Const FAIL Configure failed 2026-04-22 +DBD::Teradata FAIL Configure failed 2026-04-26 DBD::Unify FAIL Configure failed 2026-04-21 DBD::XBase FAIL 24 0 254/24 subtests failed 2026-04-22 DBD::monetdb FAIL No parseable output 2026-04-12 -DBD::mysql FAIL Configure failed 2026-04-22 +DBD::mysql FAIL Configure failed 2026-04-26 DBD::mysql::GetInfo FAIL Configure failed 2026-04-22 +DBD::mysqlPPrawSjis FAIL 1 1 2026-04-25 DBGp::Client FAIL No parseable output 2026-04-12 DBI FAIL Configure failed 2026-04-22 DBI::Log FAIL No parseable output 2026-04-12 +DBI::Mock FAIL Unknown test outcome 2026-04-26 +DBI::Shell FAIL 9 0 255/9 subtests failed 2026-04-26 DBICErrorTest::SyntaxError FAIL No parseable output 2026-04-12 +DBICx::MaterializedPath FAIL 1 0 3/1 subtests failed 2026-04-26 DBICx::Sugar FAIL 5 0 11/5 subtests failed 2026-04-22 DBICx::TestDatabase FAIL 2 0 16/2 subtests failed 2026-04-21 DBIx::Abstract FAIL 9 0 18/9 subtests failed 2026-04-21 DBIx::AbstractStatement FAIL No parseable output 2026-04-12 DBIx::Admin::DSNManager FAIL No parseable output 2026-04-12 +DBIx::Array FAIL 723 18 705/723 subtests failed 2026-04-25 +DBIx::Auto::Migrate FAIL Missing: Test/PostgreSQL.pm 2026-04-25 DBIx::Broker FAIL 2026-04-21 DBIx::CSV FAIL No parseable output 2026-04-12 -DBIx::Chart FAIL Configure failed 2026-04-22 +DBIx::Chart FAIL Configure failed 2026-04-26 +DBIx::CheckConnectivity FAIL 6 0 27/6 subtests failed 2026-04-25 DBIx::Class::AuditLog FAIL 2026-04-22 DBIx::Class::Bootstrap::Simple FAIL Missing: Class/C3/Componentised.pm 2026-04-21 DBIx::Class::Candy FAIL 4 2 2/4 subtests failed 2026-04-12 -DBIx::Class::DeleteAction FAIL 4 1 3/4 subtests failed 2026-04-22 +DBIx::Class::DeleteAction FAIL 4 1 3/4 subtests failed 2026-04-25 +DBIx::Class::DeploymentAdapter FAIL 1 0 1/1 subtests failed 2026-04-26 DBIx::Class::DeploymentHandler FAIL 1 1 Missing: Moose.pm 2026-04-22 -DBIx::Class::DigestColumns FAIL 2 0 39/2 subtests failed 2026-04-22 +DBIx::Class::DigestColumns FAIL 2 0 43/2 subtests failed 2026-04-26 DBIx::Class::DynamicDefault FAIL 1 0 14/1 subtests failed 2026-04-21 DBIx::Class::ElasticSync FAIL 5 1 4/5 subtests failed 2026-04-22 DBIx::Class::FilterColumn::Encrypt FAIL 1 0 1/1 subtests failed 2026-04-21 DBIx::Class::Fixtures FAIL 7 4 3/7 subtests failed 2026-04-22 +DBIx::Class::FormatColumns FAIL 1 0 1/1 subtests failed 2026-04-26 DBIx::Class::Helper::IgnoreWantarray FAIL Unknown test outcome 2026-04-12 DBIx::Class::Helper::SimpleStats FAIL 1 1 2026-04-12 DBIx::Class::Helper::WindowFunctions FAIL 1 1 2026-04-22 DBIx::Class::Indexed FAIL 2 1 1/2 subtests failed 2026-04-21 DBIx::Class::Indexer::WebService::Dezi FAIL 1 0 1/1 subtests failed 2026-04-21 +DBIx::Class::InflateColumn::Authen::Passphrase FAIL 1 1 2026-04-25 DBIx::Class::InflateColumn::Currency FAIL Configure failed 2026-04-12 +DBIx::Class::InflateColumn::DateTime::Duration FAIL 1 0 26/1 subtests failed 2026-04-25 DBIx::Class::InflateColumn::DateTime::WithTimeZone FAIL 4 1 3/4 subtests failed 2026-04-12 DBIx::Class::InflateColumn::FS FAIL 1 0 52/1 subtests failed 2026-04-21 DBIx::Class::InflateColumn::ISBN FAIL 2 2 2026-04-22 DBIx::Class::InflateColumn::Math::Currency FAIL 1 0 1/1 subtests failed 2026-04-21 DBIx::Class::InflateColumn::Serializer FAIL 1 1 Missing: Class/C3/Componentised.pm 2026-04-21 DBIx::Class::InflateColumn::Serializer::CompressJSON FAIL 6 5 1/6 subtests failed 2026-04-22 -DBIx::Class::InflateColumn::Serializer::Hstore FAIL 1 0 1/1 subtests failed 2026-04-21 +DBIx::Class::InflateColumn::Serializer::Hstore FAIL 1 0 1/1 subtests failed 2026-04-25 +DBIx::Class::InflateColumn::Serializer::Role::HashContentAccessor FAIL 2 1 1/2 subtests failed 2026-04-25 DBIx::Class::InflateColumn::TimeMoment FAIL 1 1 2026-04-12 DBIx::Class::IntrospectableM2M FAIL No parseable output 2026-04-22 DBIx::Class::LookupColumn FAIL 1 0 1/1 subtests failed 2026-04-12 DBIx::Class::MockData FAIL 9 6 3/9 subtests failed 2026-04-22 DBIx::Class::MooseColumns FAIL No parseable output 2026-04-22 +DBIx::Class::PassphraseColumn FAIL 1 1 2026-04-25 +DBIx::Class::PgLog FAIL 5 1 4/5 subtests failed 2026-04-26 DBIx::Class::ProxyTable FAIL No parseable output 2026-04-22 DBIx::Class::QueryLog::Conditional FAIL Missing: aliased.pm 2026-04-12 +DBIx::Class::QueryLog::WithStackTrace FAIL 2 0 9/2 subtests failed 2026-04-26 DBIx::Class::Relationship::Predicate FAIL 2 2 2026-04-22 DBIx::Class::ResultClass::TrackColumns FAIL Missing: Moose.pm 2026-04-12 +DBIx::Class::ResultDDL FAIL 23 1 22/23 subtests failed 2026-04-26 DBIx::Class::ResultSet::Data::Pageset FAIL 2 1 1/2 subtests failed 2026-04-22 DBIx::Class::ResultSet::RecursiveUpdate FAIL 3 1 2/3 subtests failed 2026-04-22 DBIx::Class::Row::Slave FAIL Configure failed 2026-04-12 DBIx::Class::Schema::Config FAIL 6 5 1/6 subtests failed 2026-04-22 +DBIx::Class::Schema::Diff FAIL 4 1 3/4 subtests failed 2026-04-26 DBIx::Class::Schema::Loader FAIL 33 0 53/33 subtests failed 2026-04-21 DBIx::Class::Schema::PopulateMore FAIL Configure failed 2026-04-12 -DBIx::Class::Schema::ResultSetNames FAIL No parseable output 2026-04-22 +DBIx::Class::Schema::ResultSetNames FAIL 3 1 2/3 subtests failed 2026-04-25 +DBIx::Class::Schema::Versioned::Inline FAIL 1 0 1/1 subtests failed 2026-04-26 +DBIx::Class::SingletonRows FAIL 1 0 10/1 subtests failed 2026-04-25 DBIx::Class::Storage::DBI::mysql::backup FAIL No parseable output 2026-04-22 DBIx::Class::TemporalRelations FAIL No parseable output 2026-04-22 DBIx::Class::TimeStamp FAIL 2 0 14/2 subtests failed 2026-04-21 DBIx::Class::TimeStamp::WithTimeZone FAIL 1 0 1/1 subtests failed 2026-04-12 -DBIx::Class::UUIDColumns FAIL 2 0 14/2 subtests failed 2026-04-21 +DBIx::Class::UUIDColumns FAIL 2 0 14/2 subtests failed 2026-04-26 DBIx::Class::UnicornLogger FAIL 2026-04-12 DBIx::Class::Validation FAIL Missing: Class/Accessor/Grouped.pm 2026-04-21 +DBIx::CodeKit FAIL No parseable output 2026-04-26 DBIx::Connection FAIL 86 86 Missing: Devel/Symdump.pm 2026-04-12 DBIx::Connector FAIL 118 0 640/118 subtests failed 2026-04-12 DBIx::Connector::Pool FAIL No parseable output 2026-04-22 DBIx::Cookbook FAIL Configure failed 2026-04-22 +DBIx::Copy FAIL Unknown test outcome 2026-04-25 +DBIx::DBFlow::Runtime FAIL Unknown test outcome 2026-04-26 +DBIx::DBStag FAIL 8 0 66/8 subtests failed 2026-04-25 DBIx::DSN::Resolver FAIL 2 2 2026-04-22 DBIx::DSN::Resolver::Cached FAIL 1 0 1/1 subtests failed 2026-04-22 -DBIx::DataLookup FAIL No parseable output 2026-04-22 +DBIx::DataFactory FAIL 1 0 1/1 subtests failed 2026-04-25 +DBIx::DataLookup FAIL Unknown test outcome 2026-04-25 DBIx::DataModel FAIL 20 0 154/20 subtests failed 2026-04-22 DBIx::Deployer FAIL Missing: Moops.pm 2026-04-12 +DBIx::DisconnectAll FAIL 9 7 2/9 subtests failed 2026-04-25 DBIx::Dump FAIL Unknown test outcome 2026-04-12 DBIx::FetchLoop FAIL Unknown test outcome 2026-04-21 DBIx::FixtureLoader FAIL 1 0 1/1 subtests failed 2026-04-12 @@ -594,29 +790,34 @@ DBIx::Frame FAIL No parseable output 2026-04-22 DBIx::HTMLinterface FAIL Unknown test outcome 2026-04-21 DBIx::Handler FAIL 22 21 1/22 subtests failed 2026-04-21 DBIx::Handler::Sunny FAIL 1 0 1/1 subtests failed 2026-04-21 -DBIx::Inspector FAIL 1 1 2026-04-21 +DBIx::Inspector FAIL 1 1 Missing: DBIx/Inspector/Driver/.pm 2026-04-26 +DBIx::Interpolate::STX FAIL 219 196 23/219 subtests failed 2026-04-25 DBIx::JCL FAIL 2 0 2/2 subtests failed 2026-04-22 DBIx::Log4perl FAIL No parseable output 2026-04-22 DBIx::LogAny FAIL 2 0 14/2 subtests failed 2026-04-21 +DBIx::Migration FAIL Missing: DBI/Const/GetInfoType.pm 2026-04-26 DBIx::Model FAIL No parseable output 2026-04-22 DBIx::MultiStatementDo FAIL 2 0 2/2 subtests failed 2026-04-21 DBIx::MyParse FAIL 69 0 637/69 subtests failed 2026-04-22 DBIx::MyParseX FAIL 11 0 20/11 subtests failed 2026-04-22 DBIx::NamedBinding FAIL 5 0 8/5 subtests failed 2026-04-12 -DBIx::NinjaORM FAIL 13 0 30/13 subtests failed 2026-04-21 +DBIx::NinjaORM FAIL 13 0 30/13 subtests failed 2026-04-26 DBIx::ORM::Declarative FAIL 4 4 2026-04-12 DBIx::Pager FAIL No parseable output 2026-04-22 DBIx::Patcher FAIL Missing: FindBin/libs.pm 2026-04-21 DBIx::Path FAIL No parseable output 2026-04-22 DBIx::PgCoroAnyEvent FAIL Missing: common/sense.pm 2026-04-21 +DBIx::Placeholder::Named FAIL 28 0 90/28 subtests failed 2026-04-26 +DBIx::Recordset FAIL 2026-04-26 DBIx::Repgen FAIL 2026-04-12 DBIx::RoboQuery FAIL 106 105 1/106 subtests failed 2026-04-22 -DBIx::RunSQL FAIL 32 31 1/32 subtests failed 2026-04-22 +DBIx::RunSQL FAIL 32 31 1/32 subtests failed 2026-04-26 DBIx::SQLEngine FAIL No parseable output 2026-04-21 DBIx::SQLite::Deploy FAIL Configure failed 2026-04-12 DBIx::SecureCGI FAIL 1 0 1/1 subtests failed 2026-04-22 DBIx::Simple::OO FAIL No parseable output 2026-04-21 -DBIx::Skinny FAIL 203 192 11/203 subtests failed 2026-04-22 +DBIx::Simple::SQE FAIL TIMEOUT (>300s) 2026-04-26 +DBIx::Skinny FAIL 142 134 8/142 subtests failed 2026-04-25 DBIx::Skinny::Transaction FAIL No parseable output 2026-04-21 DBIx::Spreadsheet FAIL No parseable output 2026-04-21 DBIx::TNDBO FAIL Unknown test outcome 2026-04-12 @@ -629,16 +830,18 @@ DBIx::Tree::NestedSet FAIL 2026-04-12 DBIx::TryAgain FAIL 2 2 2026-04-12 DBIx::TxnPool FAIL Configure failed 2026-04-12 DBIx::Version FAIL Unknown test outcome 2026-04-12 +DBIx::Wizard FAIL 19 18 1/19 subtests failed 2026-04-26 DBIx::Wrapper FAIL 1 0 50/1 subtests failed 2026-04-12 DBIx::Wrapper::Config FAIL Missing: DBIx/Wrapper/Config.pm 2026-04-12 DBIx::dbMan FAIL 1 0 4/1 subtests failed 2026-04-12 -DBM::Deep FAIL 1 0 1/1 subtests failed 2026-04-22 -DBMedit FAIL No parseable output 2026-04-21 +DBM::Deep FAIL 1 0 1/1 subtests failed 2026-04-26 +DBMedit FAIL 4 1 3/4 subtests failed 2026-04-26 DBNull_File FAIL TIMEOUT (>120s) 2026-04-12 DBO FAIL No parseable output 2026-04-21 DBR FAIL 9 8 1/9 subtests failed 2026-04-12 DBUnit FAIL 110 110 Missing: Devel/Symdump.pm 2026-04-22 DB_File FAIL 49 0 522/49 subtests failed 2026-04-12 +DB_File::DB_Database FAIL 1 0 8/1 subtests failed 2026-04-25 DB_File::Lock FAIL StackOverflowError 2026-04-12 DDB_File FAIL No parseable output 2026-04-21 DJabberd FAIL 10 0 165/10 subtests failed 2026-04-12 @@ -647,36 +850,57 @@ DMI::Decode FAIL Configure failed 2026-04-22 DMTF::WSMan FAIL 1 0 1/1 subtests failed 2026-04-12 DR::DateTime FAIL 182 181 1/182 subtests failed 2026-04-12 DR::Msgpuck::Bool FAIL TIMEOUT (>120s) 2026-04-12 +DR::Tnt FAIL Unknown test outcome 2026-04-25 Daemon::Control FAIL 87 42 45/87 subtests failed 2026-04-22 -Dancer FAIL Unknown test outcome 2026-04-12 +Dancer FAIL Unknown test outcome 2026-04-26 Dancer2::Logger::Syslog FAIL No parseable output 2026-04-22 Dancer2::Plugin::AppRole::LogContextual FAIL 4 2 2/4 subtests failed 2026-04-22 Dancer2::Plugin::Argon2 FAIL 1 0 1/1 subtests failed 2026-04-22 +Dancer2::Plugin::Auth::CAS FAIL Unknown test outcome 2026-04-26 Dancer2::Plugin::Auth::Extensible FAIL 2 1 1/2 subtests failed 2026-04-22 Dancer2::Plugin::Auth::Extensible::Provider::DBIC FAIL 10 10 2026-04-22 +Dancer2::Plugin::Auth::Extensible::Provider::IMAP FAIL 1 0 1/1 subtests failed 2026-04-26 Dancer2::Plugin::Auth::Extensible::Rights FAIL 1 0 1/1 subtests failed 2026-04-22 Dancer2::Plugin::BrowserDetect FAIL 1 1 2026-04-22 -Dancer2::Plugin::DBIC FAIL 1 0 13/1 subtests failed 2026-04-22 +Dancer2::Plugin::Cart::Ext::Email FAIL TIMEOUT (>300s) 2026-04-26 +Dancer2::Plugin::DBIC FAIL 1 0 13/1 subtests failed 2026-04-25 +Dancer2::Plugin::DBIx::Class FAIL 3 3 2026-04-25 +Dancer2::Plugin::Database FAIL 1 0 1/1 subtests failed 2026-04-26 +Dancer2::Plugin::FormValidator::Extension::DBIC FAIL 3 1 2/3 subtests failed 2026-04-26 +Dancer2::Plugin::FormValidator::Role::Extension FAIL 31 9 22/31 subtests failed 2026-04-26 Dancer2::Plugin::Github::Webhook FAIL 1 1 2026-04-22 -Dancer2::Plugin::Locale::Wolowitz FAIL 2 2 2026-04-22 +Dancer2::Plugin::JobScheduler FAIL 2026-04-26 +Dancer2::Plugin::Locale::Wolowitz FAIL 2 2 2026-04-25 Dancer2::Plugin::MarkdownFilesToHTML FAIL 1 0 20/1 subtests failed 2026-04-22 +Dancer2::Plugin::ProbabilityRoute FAIL Unknown test outcome 2026-04-25 Dancer2::Plugin::RoutePodCoverage FAIL 3 0 5/3 subtests failed 2026-04-22 +Dancer2::Plugin::Shutdown FAIL 2026-04-26 Dancer2::Plugin::SlapbirdAPM FAIL 1 0 1/1 subtests failed 2026-04-12 -Dancer2::Template::Mason FAIL 2 1 1/2 subtests failed 2026-04-22 +Dancer2::Serializer::CBOR FAIL 2 0 5/2 subtests failed 2026-04-26 +Dancer2::Session::DBIC FAIL 21 16 5/21 subtests failed 2026-04-25 +Dancer2::Session::JSON FAIL 1 1 2026-04-25 +Dancer2::Template::Mason FAIL 2 1 1/2 subtests failed 2026-04-26 Dancer2::Template::TemplateFlute FAIL 1 0 1/1 subtests failed 2026-04-21 Dancer2::Template::TextTemplate FAIL 2 1 1/2 subtests failed 2026-04-12 Danga::Socket FAIL 43 27 16/43 subtests failed 2026-04-12 DarkPAN::Compare FAIL 1 0 1/1 subtests failed 2026-04-12 DarkSky::API FAIL Missing: common/sense.pm 2026-04-12 Data::Alias FAIL 1 0 635/1 subtests failed 2026-04-12 +Data::Cmp FAIL 28 25 3/28 subtests failed 2026-04-26 Data::DPath FAIL 11 0 67/11 subtests failed 2026-04-21 Data::Dmp FAIL 25 23 2/25 subtests failed 2026-04-22 Data::Dump FAIL 2026-04-12 +Data::Dump::Streamer FAIL Build failed 2026-04-25 Data::Dumper::Simple FAIL 5 0 31/5 subtests failed 2026-04-21 Data::FormValidator FAIL 448 298 150/448 subtests failed 2026-04-21 +Data::FormValidator::Constraints::Words FAIL 101 61 40/101 subtests failed 2026-04-26 +Data::FormValidator::Filters::Demoroniser FAIL 1 0 9/1 subtests failed 2026-04-26 Data::GUID FAIL 15 0 63/15 subtests failed 2026-04-12 +Data::Identifier FAIL 29 0 166/29 subtests failed 2026-04-26 Data::Integer FAIL 1291 0 5423/1291 subtests failed 2026-04-21 -Data::JavaScript::Anon FAIL Configure failed 2026-04-21 +Data::JavaScript::Anon FAIL Configure failed 2026-04-26 +Data::Mirror FAIL Missing: LWP/Online.pm 2026-04-26 +Data::ModeMerge FAIL 412 360 52/412 subtests failed 2026-04-25 Data::MultiValuedHash FAIL 7 0 214/7 subtests failed 2026-04-21 Data::Object FAIL 2026-04-21 Data::Object::Args FAIL 2026-04-21 @@ -705,8 +929,13 @@ Data::Object::Types FAIL 2026-04-21 Data::Object::Vars FAIL 2026-04-21 Data::ObjectDriver FAIL 72 0 685/72 subtests failed 2026-04-21 Data::Perl FAIL 194 193 1/194 subtests failed 2026-04-12 -Data::Rmap FAIL 39 36 3/39 subtests failed 2026-04-22 -Data::Serializer FAIL 1250 632 618/1250 subtests failed 2026-04-22 +Data::Phrasebook::Loader::Ini FAIL 11 1 10/11 subtests failed 2026-04-26 +Data::Properties::JSON FAIL Missing: common/sense.pm 2026-04-26 +Data::Rmap FAIL 39 36 3/39 subtests failed 2026-04-26 +Data::Sah::Coerce::perl::To_date::From_float::epoch FAIL 67 60 7/67 subtests failed 2026-04-25 +Data::Sah::DefaultValueCommon FAIL 7 6 1/7 subtests failed 2026-04-25 +Data::Sah::Filter FAIL 53 52 1/53 subtests failed 2026-04-25 +Data::Serializer FAIL 1842 1816 26/1842 subtests failed 2026-04-26 Data::Serializer::JSON FAIL 1250 632 618/1250 subtests failed 2026-04-22 Data::ShowTable FAIL 12 12 2026-04-12 Data::Stag FAIL 95 87 8/95 subtests failed 2026-04-12 @@ -714,12 +943,17 @@ Data::Stream::Bulk FAIL 13 0 13/13 subtests failed 2026-04-12 Data::StreamDeserializer FAIL 11 0 65/11 subtests failed 2026-04-12 Data::StreamSerializer FAIL 7 0 68/7 subtests failed 2026-04-12 Data::Swap FAIL 2026-04-21 +Data::Table::Text FAIL 2026-04-25 Data::Transpose FAIL 407 300 107/407 subtests failed 2026-04-21 Data::UUID FAIL 1 0 32/1 subtests failed 2026-04-12 -Data::Validate::Type FAIL 66 11 55/66 subtests failed 2026-04-21 +Data::Validate::Type FAIL 66 11 55/66 subtests failed 2026-04-26 Data::Validator FAIL 1 0 1/1 subtests failed 2026-04-22 Data::Visitor FAIL 1 0 1/1 subtests failed 2026-04-12 +Data::XLSX::Parser FAIL 6 6 2026-04-26 +DataFlow FAIL 56 0 56/56 subtests failed 2026-04-25 +DataFlow::Proc::URLRetriever FAIL 2 0 2/2 subtests failed 2026-04-25 DataSexta FAIL 2026-04-12 +Database::ManagedHandle FAIL 3 3 Missing: Const/Fast.pm 2026-04-26 Date::Calc FAIL 2997 2951 46/2997 subtests failed 2026-04-12 Date::Utility FAIL 29 25 4/29 subtests failed 2026-04-21 Date::strftimeq FAIL 1 0 1/1 subtests failed 2026-04-22 @@ -729,6 +963,7 @@ DateTime::Calendar::Japanese FAIL 6 0 67/6 subtests failed 2026-04-22 DateTime::Calendar::Japanese::Era FAIL 13 8 5/13 subtests failed 2026-04-22 DateTime::Calendar::Mayan FAIL 5 0 120/5 subtests failed 2026-04-12 DateTime::Event::Chinese FAIL 2 0 2/2 subtests failed 2026-04-22 +DateTime::Event::Cron FAIL 18 0 156/18 subtests failed 2026-04-26 DateTime::Event::Klingon FAIL 3 0 4/3 subtests failed 2026-04-12 DateTime::Event::MultiCron FAIL Missing: DateTime/Event/Cron.pm 2026-04-12 DateTime::Event::Recurrence FAIL 1 0 195/1 subtests failed 2026-04-21 @@ -738,7 +973,8 @@ DateTime::Format::Alami FAIL PerlOnJava: register limit exceeded 2026-04-12 DateTime::Format::Baby FAIL 1 0 10/1 subtests failed 2026-04-21 DateTime::Format::Builder FAIL 11 9 2/11 subtests failed 2026-04-12 DateTime::Format::Czech FAIL 1 0 2/1 subtests failed 2026-04-21 -DateTime::Format::DateManip FAIL 1 1 2026-04-22 +DateTime::Format::DBI FAIL 10 9 1/10 subtests failed 2026-04-26 +DateTime::Format::DateManip FAIL 1 1 2026-04-25 DateTime::Format::Duration::XSD FAIL 1 0 37/1 subtests failed 2026-04-21 DateTime::Format::Flexible FAIL Unknown test outcome 2026-04-12 DateTime::Format::Genealogy FAIL 1 0 2/1 subtests failed 2026-04-22 @@ -746,32 +982,39 @@ DateTime::Format::Japanese FAIL 9 0 290/9 subtests failed 2026-04-22 DateTime::Format::JavaScript FAIL 1 0 1/1 subtests failed 2026-04-21 DateTime::Format::Lite FAIL 1 0 1/1 subtests failed 2026-04-21 DateTime::Format::Mail FAIL 29616 88 29528/29616 subtests failed 2026-04-21 -DateTime::Format::Natural FAIL 421 416 5/421 subtests failed 2026-04-22 +DateTime::Format::Natural FAIL 421 416 5/421 subtests failed 2026-04-26 DateTime::Format::PDF FAIL 3 1 2/3 subtests failed 2026-04-12 DateTime::Format::RelativeTime FAIL 2 0 2/2 subtests failed 2026-04-22 DateTime::Format::SQLite FAIL 2 0 51/2 subtests failed 2026-04-12 DateTime::Format::Strftimeq FAIL 1 0 1/1 subtests failed 2026-04-22 +DateTime::LazyInit FAIL No parseable output 2026-04-25 DateTime::Lite FAIL 1 0 1/1 subtests failed 2026-04-21 DateTime::Locale::FromCLDR FAIL 3 1 2/3 subtests failed 2026-04-21 -DateTime::Set FAIL 1 0 9/1 subtests failed 2026-04-21 DateTime::TimeZone::Local::Win32 FAIL Configure failed 2026-04-22 DateTime::Util::Calc FAIL 38 0 38/38 subtests failed 2026-04-22 -DateTimeX::AATW FAIL 42 34 8/42 subtests failed 2026-04-12 +DateTimeX::AATW FAIL 42 34 8/42 subtests failed 2026-04-26 DateTimeX::Auto FAIL 9 2 7/9 subtests failed 2026-04-22 DateTimeX::Duration::Lite FAIL PerlOnJava: register limit exceeded 2026-04-12 +DateTimeX::Easy FAIL 1 0 1/1 subtests failed 2026-04-25 DateTimeX::strftimeq FAIL 1 0 1/1 subtests failed 2026-04-22 DbFramework::Attribute FAIL Missing: t/Config.pm 2026-04-12 +Debuggit FAIL 53 52 1/53 subtests failed 2026-04-26 Declare::Constraints::Simple FAIL 14 0 19/14 subtests failed 2026-04-22 +Deco FAIL 78 71 7/78 subtests failed 2026-04-25 Demo_Export FAIL TIMEOUT (>300s) 2026-04-21 +DestructAssign FAIL 48 4 44/48 subtests failed 2026-04-26 +Devel::AssertC99 FAIL 7 4 3/7 subtests failed 2026-04-25 Devel::Caller FAIL 1 0 72/1 subtests failed 2026-04-12 Devel::Caller::IgnoreNamespaces FAIL 10 0 30/10 subtests failed 2026-04-21 -Devel::CheckCompiler FAIL 7 4 3/7 subtests failed 2026-04-22 +Devel::Caller::Perl FAIL 1 0 1/1 subtests failed 2026-04-26 +Devel::CheckCompiler FAIL 7 4 3/7 subtests failed 2026-04-26 Devel::CheckLib FAIL 25 13 12/25 subtests failed 2026-04-12 Devel::Confess FAIL 123 50 73/123 subtests failed 2026-04-21 +Devel::Declare FAIL Configure failed 2026-04-26 Devel::GlobalDestruction FAIL 12 3 9/12 subtests failed 2026-04-12 Devel::Hide FAIL 77 55 22/77 subtests failed 2026-04-12 -Devel::MAT::Dumper FAIL Configure failed 2026-04-22 -Devel::PPPort FAIL Configure failed 2026-04-22 +Devel::MAT::Dumper FAIL Configure failed 2026-04-25 +Devel::PPPort FAIL 22 1 21/22 subtests failed 2026-04-26 Devel::REPL FAIL 32 7 25/32 subtests failed 2026-04-22 Devel::Symdump FAIL Configure failed 2026-04-21 Device::ParallelPort::drv::parport FAIL 2026-04-12 @@ -783,50 +1026,72 @@ DiePair FAIL Unknown test outcome 2026-04-21 Digest::BubbleBabble FAIL Configure failed 2026-04-12 Digest::Haval256 FAIL 13 0 25/13 subtests failed 2026-04-22 Digest::JHash FAIL 1 0 6/1 subtests failed 2026-04-12 +Digest::OAT FAIL 1 0 5/1 subtests failed 2026-04-25 +Digest::Perl::MD4 FAIL Unknown test outcome 2026-04-25 Digest::Perl::MD5 FAIL Unknown test outcome 2026-04-22 Digest::SHA1 FAIL 2026-04-12 Digest::SHA2 FAIL 21 0 61/21 subtests failed 2026-04-22 Digest::SHA3 FAIL 2 0 31/2 subtests failed 2026-04-12 Digest::SHA::PurePerl FAIL Unknown test outcome 2026-04-12 Digest::Whirlpool FAIL 1 0 39/1 subtests failed 2026-04-22 -DirectiveSet FAIL 223 22 201/223 subtests failed 2026-04-12 -Directory::Scratch FAIL Unknown test outcome 2026-04-12 +DirectiveSet FAIL 223 22 201/223 subtests failed 2026-04-26 +Directory::Scratch FAIL 50 0 211/50 subtests failed 2026-04-26 Disbatch FAIL 2026-04-22 Disque FAIL No parseable output 2026-04-22 -Dist::Build FAIL 14 13 1/14 subtests failed 2026-04-22 -Dist::Build::XS::Conf FAIL Configure failed 2026-04-22 +Dist::Build FAIL 14 13 1/14 subtests failed 2026-04-26 +Dist::Build::XS::Conf FAIL Configure failed 2026-04-26 Dist::Metadata FAIL 351 351 2026-04-21 Dist::Zilla::App FAIL 165 1 164/165 subtests failed 2026-04-22 -Dist::Zilla::App::Command::cover FAIL 1 0 1/1 subtests failed 2026-04-22 +Dist::Zilla::App::Command::cover FAIL 1 0 1/1 subtests failed 2026-04-26 +Dist::Zilla::Plugin::CheckChangesHasContent FAIL 1 1 Missing: Moose.pm 2026-04-26 +Dist::Zilla::Plugin::CopyFilesFromBuild FAIL 3 1 2/3 subtests failed 2026-04-26 +Dist::Zilla::Plugin::CopyFilesFromRelease FAIL 4 4 Missing: Moose.pm 2026-04-26 +Dist::Zilla::Plugin::ReadmeAnyFromPod FAIL 4 1 3/4 subtests failed 2026-04-26 +Dist::Zilla::Role::FileWatcher FAIL 3 3 Missing: Moose/Role.pm 2026-04-26 +Distribution::Guess::BuildSystem FAIL 8 1 7/8 subtests failed 2026-04-26 DocRaptor FAIL Unknown test outcome 2026-04-12 Docopt FAIL 1 0 1/1 subtests failed 2026-04-12 Doodle FAIL No parseable output 2026-04-22 Dotenv FAIL 30 30 2026-04-12 +Doubly FAIL 2 0 2/2 subtests failed 2026-04-25 Dpkg FAIL 12524 11939 585/12524 subtests failed 2026-04-21 Draft FAIL 14 13 1/14 subtests failed 2026-04-12 DuckCurses::dagobert FAIL Configure failed 2026-04-12 Dumbbench FAIL 2 0 55/2 subtests failed 2026-04-22 DynGig::Range::Cluster FAIL 8 7 1/8 subtests failed 2026-04-12 +EAI::Common FAIL Missing: Time/localtime.pm 2026-04-26 +EC::About FAIL Unknown test outcome 2026-04-26 ELF::sign FAIL 2 1 1/2 subtests failed 2026-04-12 +ELab::Client FAIL 1 0 1/1 subtests failed 2026-04-26 ERG::line_formatter FAIL No parseable output 2026-04-22 ETL::Yertl FAIL No parseable output 2026-04-22 ETR::XML::SAX::FilterHandler FAIL No parseable output 2026-04-22 EV FAIL 2 0 6850/2 subtests failed 2026-04-12 EV::ADNS FAIL Missing: common/sense.pm 2026-04-12 EV::ClickHouse FAIL 1 0 1/1 subtests failed 2026-04-12 +EVERY::LAST FAIL 56 53 3/56 subtests failed 2026-04-25 +EWS::Calendar::Viewer FAIL Unknown test outcome 2026-04-25 +EWS::Client FAIL 1 0 1/1 subtests failed 2026-04-25 +EZDBI FAIL No parseable output 2026-04-26 EasyDB FAIL No parseable output 2026-04-22 -Eeuctw FAIL Unknown test outcome 2026-04-12 +EditorVi FAIL 1 0 1/1 subtests failed 2026-04-25 +Eeuctw FAIL 2026-04-25 Eircode FAIL Missing: Const/Fast.pm 2026-04-12 Ekahau FAIL No parseable output 2026-04-22 ElasticSearch::SearchBuilder FAIL 21 21 2026-04-22 +Elatin4 FAIL 2026-04-25 Elatin6 FAIL No parseable output 2026-04-22 Elatin8 FAIL 2026-04-12 -Elive FAIL No parseable output 2026-04-22 +Elive FAIL 63 33 30/63 subtests failed 2026-04-26 Email::Date::Format FAIL 8 4 4/8 subtests failed 2026-04-12 +Email::LocalDelivery FAIL 1 0 6/1 subtests failed 2026-04-25 +Email::Send FAIL Unknown test outcome 2026-04-25 Email::Valid::Loose FAIL 1 0 1/1 subtests failed 2026-04-21 +EmbedIT::WebIT FAIL 5 4 1/5 subtests failed 2026-04-26 EnableModule FAIL No parseable output 2026-04-21 Encode::Registry FAIL Unknown test outcome 2026-04-21 Encode::TECkit FAIL 2026-04-21 +Encode::ZapCP1252 FAIL 26 5 21/26 subtests failed 2026-04-26 EnglishTextGenerator FAIL No parseable output 2026-04-22 Entrez FAIL Missing: Stone/Cursor.pm 2026-04-12 Enumeration FAIL No parseable output 2026-04-22 @@ -836,23 +1101,33 @@ Etherpad FAIL 2 1 1/2 subtests failed 2026-04-22 Etk FAIL No parseable output 2026-04-22 Eval::WithLexicals FAIL 2026-04-22 Event FAIL 2026-04-12 +EvilBoss::Address FAIL Unknown test outcome 2026-04-26 +Ewindows1257 FAIL 2026-04-25 +Exception::Base FAIL Missing: Test/Unit/Lite.pm 2026-04-26 +Exception::Died FAIL Missing: Test/Unit/Lite.pm 2026-04-26 +Exception::Fatal FAIL Missing: Test/Unit/Lite.pm 2026-04-26 +Exception::Warning FAIL Missing: Test/Unit/Lite.pm 2026-04-26 ExecCmds FAIL 2026-04-12 Expect FAIL 20 0 83/20 subtests failed 2026-04-22 Export::Attrs FAIL 1 0 2/1 subtests failed 2026-04-12 Exporter FAIL 44 43 1/44 subtests failed 2026-04-22 -Exporter::Declare FAIL Missing: Fennec/Lite.pm 2026-04-22 +Exporter::Declare FAIL Missing: Fennec/Lite.pm 2026-04-25 +Exporter::Easy FAIL 72 68 4/72 subtests failed 2026-04-25 +Exporter::Extensible FAIL 1 0 1/1 subtests failed 2026-04-26 ExtUtils::Builder FAIL 82 80 2/82 subtests failed 2026-04-12 ExtUtils::Builder::Compiler FAIL 12 12 2026-04-12 -ExtUtils::CChecker FAIL Configure failed 2026-04-22 +ExtUtils::CChecker FAIL Configure failed 2026-04-26 ExtUtils::Constant FAIL Unknown test outcome 2026-04-12 ExtUtils::CppGuess FAIL 20 13 7/20 subtests failed 2026-04-12 ExtUtils::Depends FAIL 46 44 2/46 subtests failed 2026-04-22 ExtUtils::H2PM FAIL Configure failed 2026-04-22 -ExtUtils::MM_Unix FAIL 994 512 482/994 subtests failed 2026-04-22 +ExtUtils::LibBuilder FAIL 2 0 7/2 subtests failed 2026-04-26 +ExtUtils::MM_Unix FAIL 994 512 482/994 subtests failed 2026-04-26 ExtUtils::MakeMaker::Attributes FAIL 8 8 StackOverflowError 2026-04-22 ExtUtils::PkgConfig FAIL No parseable output 2026-04-22 ExtUtils::Typemaps::Magic FAIL 3 0 3/3 subtests failed 2026-04-22 -ExtUtils::XSpp FAIL 1 0 3/1 subtests failed 2026-04-22 +ExtUtils::XSpp FAIL 1 0 3/1 subtests failed 2026-04-25 +FASTX::XS FAIL 2026-04-26 FB3 FAIL 2 0 2/2 subtests failed 2026-04-12 FCGI FAIL 2026-04-22 FCGI::Engine FAIL 17 0 77/17 subtests failed 2026-04-22 @@ -863,31 +1138,38 @@ FFI::Build::File::Pascal FAIL No parseable output 2026-04-22 FFI::Build::MM FAIL Configure failed 2026-04-21 FFI::CheckLib FAIL Unknown test outcome 2026-04-12 FFmpeg::Command FAIL 4 4 2026-04-12 -FFmpeg::Thumbnail FAIL 1 0 1/1 subtests failed 2026-04-12 +FFmpeg::Thumbnail FAIL 1 0 1/1 subtests failed 2026-04-25 FSA::Rules FAIL 340 267 73/340 subtests failed 2026-04-12 FServer FAIL No parseable output 2026-04-22 +FTDI FAIL 2 0 3/2 subtests failed 2026-04-26 FTN::Crypt FAIL 5 3 2/5 subtests failed 2026-04-21 FTN::Nodelist FAIL 2 0 28/2 subtests failed 2026-04-21 FakeHash FAIL No parseable output 2026-04-22 Faker FAIL No parseable output 2026-04-22 Farly FAIL 370 346 24/370 subtests failed 2026-04-22 FarmBalance FAIL Configure failed 2026-04-12 +FastGlob FAIL 144 140 4/144 subtests failed 2026-04-26 Fdb FAIL No parseable output 2026-04-22 Feature::Compat::Defer FAIL 30 28 2/30 subtests failed 2026-04-22 -Feature::Compat::Try FAIL 38 31 7/38 subtests failed 2026-04-22 -Fennec::Lite FAIL 28 26 2/28 subtests failed 2026-04-22 -File::BOM FAIL 5 0 115/5 subtests failed 2026-04-22 +Feature::Compat::Try FAIL 38 31 7/38 subtests failed 2026-04-26 +Fennec::Lite FAIL 28 26 2/28 subtests failed 2026-04-25 +File::BOM FAIL 5 0 115/5 subtests failed 2026-04-25 File::Cache FAIL 2026-04-12 File::Copy::Recursive::Reduced FAIL 2026-04-12 File::FcntlLock FAIL Configure failed 2026-04-21 -File::LibMagic FAIL Configure failed 2026-04-21 -File::Map FAIL Build failed 2026-04-21 +File::Find::Closures FAIL 148 146 2/148 subtests failed 2026-04-26 +File::FindLib FAIL 13 4 9/13 subtests failed 2026-04-26 +File::LibMagic FAIL Configure failed 2026-04-26 +File::Map FAIL Build failed 2026-04-25 File::NFSLock FAIL 44 0 170/44 subtests failed 2026-04-22 File::Next FAIL 91 83 8/91 subtests failed 2026-04-22 File::Path FAIL 41 0 164/41 subtests failed 2026-04-21 -File::Path::Expand FAIL 1 0 8/1 subtests failed 2026-04-12 +File::Path::Expand FAIL 1 0 8/1 subtests failed 2026-04-25 File::PathConvert FAIL 266 264 2/266 subtests failed 2026-04-12 -File::Remove FAIL 218 211 7/218 subtests failed 2026-04-22 +File::PathInfo FAIL 6 6 Missing: Time/Format.pm 2026-04-25 +File::PathInfo::Ext FAIL 1 1 Missing: File/PathInfo.pm 2026-04-25 +File::Remove FAIL 218 211 7/218 subtests failed 2026-04-26 +File::RotateLogs FAIL 1 0 1/1 subtests failed 2026-04-25 File::Rules FAIL 3 0 14/3 subtests failed 2026-04-22 File::ShareDir::Tarball FAIL 2 2 2026-04-22 File::SortedSeek::PERLANCAR FAIL 4 2 2/4 subtests failed 2026-04-21 @@ -898,24 +1180,28 @@ File::Temp FAIL Configure failed 2026-04-21 File::chmod FAIL 39 30 9/39 subtests failed 2026-04-12 Filter::Template FAIL 13 0 19/13 subtests failed 2026-04-22 Filter::signatures FAIL 10 0 59/10 subtests failed 2026-04-12 +Filter::tee FAIL 7 0 34/7 subtests failed 2026-04-26 FindBin::libs FAIL Configure failed 2026-04-22 Fl_Align_Group FAIL No parseable output 2026-04-22 FlightRecorder FAIL 2026-04-21 Font::Metrics::Courier FAIL 2 2 Missing: Font/AFM.pm 2026-04-12 -FormValidator::Lite FAIL 72 63 9/72 subtests failed 2026-04-21 -FormValidator::Lite::Constraint::Moose FAIL 1 0 1/1 subtests failed 2026-04-21 +FormValidator::Lite FAIL 72 63 9/72 subtests failed 2026-04-26 +FormValidator::Lite::Constraint::Moose FAIL 1 0 1/1 subtests failed 2026-04-26 FormValidator::Simple FAIL 38 0 308/38 subtests failed 2026-04-21 +Format::Human::Bytes FAIL 216 186 30/216 subtests failed 2026-04-26 Function::Parameters FAIL 14 0 1426/14 subtests failed 2026-04-12 -Furl FAIL 27 26 1/27 subtests failed 2026-04-22 +Furl FAIL 27 26 1/27 subtests failed 2026-04-26 FuseBead::From::PNG FAIL 17 15 2/17 subtests failed 2026-04-21 -Future FAIL 329 314 15/329 subtests failed 2026-04-22 +Future FAIL 786 757 29/786 subtests failed 2026-04-26 Fwctl FAIL No parseable output 2026-04-22 GCC::Builtins FAIL No parseable output 2026-04-22 -GCT::XSP::ActionTaglib FAIL Missing: Apache/AxKit/Language/XSP.pm 2026-04-22 -GD FAIL Configure failed 2026-04-22 +GCT::XSP::ActionTaglib FAIL Missing: Apache/AxKit/Language/XSP.pm 2026-04-25 +GD FAIL Configure failed 2026-04-26 +GD::3DBarGrapher FAIL Missing: GD.pm 2026-04-26 GD::Barcode::Code93 FAIL 4 2 2/4 subtests failed 2026-04-22 GD::Chord::Piano FAIL 1 0 16/1 subtests failed 2026-04-22 GD::Graph::Polar FAIL No parseable output 2026-04-22 +GD::Graph::boxplot FAIL Missing: GD.pm 2026-04-26 GD::Graph::histogram FAIL 1 0 2/1 subtests failed 2026-04-21 GD::Graph::sparklines FAIL 1 0 2/1 subtests failed 2026-04-22 GD::Image::Orientation FAIL 1 0 1/1 subtests failed 2026-04-21 @@ -924,16 +1210,28 @@ GD::Thumbnail FAIL 2 1 1/2 subtests failed 2026-04-21 GD::Tiler FAIL Missing: GD.pm 2026-04-21 GD::Window FAIL 2 0 4/2 subtests failed 2026-04-21 GFgtk FAIL Unknown test outcome 2026-04-22 +GIS::Distance::Lite FAIL Unknown test outcome 2026-04-25 +GPS::Babel FAIL 2 1 1/2 subtests failed 2026-04-26 +GPS::Base FAIL 10 0 11/10 subtests failed 2026-04-25 GPS::Garmin::Connect FAIL No parseable output 2026-04-22 GPS::SpaceTrack FAIL Missing: Astro/Coord/ECI.pm 2026-04-21 GSM::Gnokii FAIL No parseable output 2026-04-22 GSSAPI FAIL 6 0 11/6 subtests failed 2026-04-21 +GStreamer FAIL Configure failed 2026-04-25 Games::NES::ROM FAIL 19 0 56/19 subtests failed 2026-04-22 +Gantry FAIL 88 73 15/88 subtests failed 2026-04-26 Gapp FAIL 5 0 348/5 subtests failed 2026-04-22 +GappX::Dialogs FAIL Missing: Gtk2.pm 2026-04-25 GappX::FileTree FAIL Missing: Gtk2.pm 2026-04-22 +Gearman::XS FAIL Configure failed 2026-04-25 +GearmanX::Starter FAIL 1 0 1/1 subtests failed 2026-04-25 GedNav FAIL Missing: GDBM_File.pm 2026-04-22 +Gedcom FAIL 374 0 9259/374 subtests failed 2026-04-25 GenericSHIB FAIL No parseable output 2026-04-22 +Geo::Coordinates::Converter FAIL 1 1 Syntax error 2026-04-26 +Geo::Gpx FAIL 6 0 108/6 subtests failed 2026-04-26 Geo::IP FAIL Configure failed 2026-04-12 +Geoffrey FAIL 320 220 100/320 subtests failed 2026-04-25 Getopt::Euclid FAIL 39 1 38/39 subtests failed 2026-04-22 Getopt::Long::Util FAIL 2 1 1/2 subtests failed 2026-04-22 Git::Raw FAIL 2026-04-22 @@ -941,21 +1239,33 @@ GitHub::Extract FAIL No parseable output 2026-04-22 GitHub::MergeVelocity FAIL 18 18 Missing: CLDR/Number/Format/Percent.pm 2026-04-22 GitHub::WebHook FAIL 6 6 2026-04-21 GitInsight FAIL 1 0 1/1 subtests failed 2026-04-22 +GitLab::API::v3 FAIL Missing: Role/REST/Client/Response.pm 2026-04-25 Gitalist FAIL No parseable output 2026-04-22 Glib FAIL 2026-04-22 +Glib::Ex::FreezeNotify FAIL 28 0 43/28 subtests failed 2026-04-26 +Glib::Ex::SignalIds FAIL 28 0 43/28 subtests failed 2026-04-25 GnuPG::Interface FAIL Configure failed 2026-04-21 Google::ProtocolBuffers FAIL 397 199 198/397 subtests failed 2026-04-21 +Grades FAIL 17 16 1/17 subtests failed 2026-04-26 Graph::Easy FAIL 2536 2130 406/2536 subtests failed 2026-04-22 Graph::Easy::As_svg FAIL 7 0 136/7 subtests failed 2026-04-22 Graph::XGMML FAIL Configure failed 2026-04-22 GraphQL FAIL 4 3 1/4 subtests failed 2026-04-22 -GraphViz FAIL Missing: IPC/Run.pm 2026-04-12 +GraphViz FAIL 2026-04-25 GraphViz2 FAIL Configure failed 2026-04-21 GraphViz2::Abstract::Edge FAIL No parseable output 2026-04-22 +Graphics::Color FAIL 20 0 104/20 subtests failed 2026-04-25 Graphics::Toolkit::Color FAIL 2572 1651 921/2572 subtests failed 2026-04-12 -Gtk2 FAIL Configure failed 2026-04-21 +Gravatar::URL FAIL 71 71 Syntax error 2026-04-25 +Gtk2 FAIL Configure failed 2026-04-26 Gtk2::Chmod FAIL 5 4 1/5 subtests failed 2026-04-22 +Gtk2::CodeGen FAIL Configure failed 2026-04-25 +Gtk2::Ex::ActionTooltips FAIL 30 0 324/30 subtests failed 2026-04-26 +Gtk2::Ex::Dragger FAIL 2026-04-25 Gtk2::Ex::GraphViz FAIL 2 1 1/2 subtests failed 2026-04-22 +Gtk2::Ex::GroupBy FAIL 2 1 1/2 subtests failed 2026-04-26 +Gtk2::Ex::Simple::List FAIL Configure failed 2026-04-26 +Gtk2::Ex::SyncCall FAIL 30 0 324/30 subtests failed 2026-04-25 Gtk2::ItemFactory FAIL Configure failed 2026-04-21 Gtk2::OSXApplication FAIL Missing: Gtk2.pm 2026-04-22 Gtk2::PathButtonBar FAIL 5 4 1/5 subtests failed 2026-04-22 @@ -965,8 +1275,18 @@ Gtk3::Notify FAIL No parseable output 2026-04-22 Guard FAIL 2026-04-21 Guile FAIL Configure failed 2026-04-22 GunMojo FAIL No parseable output 2026-04-22 +Gx FAIL 16 0 22/16 subtests failed 2026-04-25 +Gzip::Faster FAIL Configure failed 2026-04-26 +HADaemon::Control FAIL Unknown test outcome 2026-04-26 +HAL::Resource FAIL 212 177 35/212 subtests failed 2026-04-26 +HB FAIL No parseable output 2026-04-26 HOP::Stream FAIL 64 47 17/64 subtests failed 2026-04-21 -HPC::Runner FAIL Missing: DateTime.pm 2026-04-21 +HPC::Runner FAIL Missing: Moose.pm 2026-04-26 +HPC::Runner::Command FAIL Missing: Moose/Role.pm 2026-04-26 +HPC::Runner::Command::Plugin::Logger::Sqlite FAIL Missing: Moose/Role.pm 2026-04-26 +HPC::Runner::Scheduler FAIL Missing: Moose.pm 2026-04-25 +HPSG::Mason FAIL No parseable output 2026-04-25 +HTCondor::Queue::Parser FAIL Missing: common/sense.pm 2026-04-25 HTML::Blitz FAIL 2026-04-21 HTML::Blitz::Builder FAIL 2026-04-21 HTML::Bricks FAIL No parseable output 2026-04-22 @@ -975,80 +1295,115 @@ HTML::CalendarMonth FAIL 3 2 1/3 subtests failed 2026-04-22 HTML::DBTable FAIL 14 6 8/14 subtests failed 2026-04-22 HTML::DOM FAIL No parseable output 2026-04-22 HTML::DTD FAIL No parseable output 2026-04-22 -HTML::Debug FAIL No parseable output 2026-04-22 +HTML::Debug FAIL Unknown test outcome 2026-04-26 HTML::Display FAIL No parseable output 2026-04-22 -HTML::Element FAIL 401 0 591/401 subtests failed 2026-04-22 +HTML::Display::MozRepl FAIL 1 0 1/1 subtests failed 2026-04-26 +HTML::Element FAIL 401 0 591/401 subtests failed 2026-04-25 HTML::Element::AbsoluteXPath FAIL 3 0 19/3 subtests failed 2026-04-22 HTML::EscapeEvil::AllowAll FAIL No parseable output 2026-04-22 HTML::Expander FAIL No parseable output 2026-04-22 +HTML::ExtractText FAIL 48 29 19/48 subtests failed 2026-04-26 +HTML::ExtractText::Extra FAIL 8 6 2/8 subtests failed 2026-04-26 HTML::FillInForm FAIL Unknown test outcome 2026-04-12 -HTML::FillInForm::Lite FAIL 147 0 152/147 subtests failed 2026-04-22 -HTML::FormFu FAIL Unknown test outcome 2026-04-22 +HTML::FillInForm::Lite FAIL 147 0 152/147 subtests failed 2026-04-26 +HTML::FormFu FAIL Unknown test outcome 2026-04-25 HTML::FormFu::Constraint::TauStation::DateTime FAIL 13 0 26/13 subtests failed 2026-04-22 HTML::FormFu::Role::JQueryValidation FAIL Missing: Moose.pm 2026-04-22 -HTML::FormatNroff FAIL 5 5 Missing: HTML/Parse.pm 2026-04-21 -HTML::FormatNroffSub FAIL 14 13 1/14 subtests failed 2026-04-22 +HTML::FormHandler::Model::DBIC FAIL 17 0 17/17 subtests failed 2026-04-26 +HTML::FormHandlerX::Field::noCAPTCHA FAIL 1 1 Missing: Moose.pm 2026-04-26 +HTML::FormRemove FAIL Unknown test outcome 2026-04-26 +HTML::FormatNroff FAIL 5 5 Missing: HTML/Parse.pm 2026-04-25 +HTML::FormatNroffSub FAIL 14 13 1/14 subtests failed 2026-04-25 HTML::FormatText FAIL 29 11 18/29 subtests failed 2026-04-12 HTML::FormatText::Any FAIL PerlOnJava: register limit exceeded 2026-04-12 -HTML::FormatText::WithLinks FAIL No parseable output 2026-04-22 +HTML::FormatText::WithLinks FAIL 2 0 92/2 subtests failed 2026-04-26 HTML::FromANSI::Tiny FAIL No parseable output 2026-04-22 HTML::FromMail FAIL No parseable output 2026-04-22 HTML::GMUCK FAIL Unknown test outcome 2026-04-22 -HTML::Grabber FAIL 1 0 1/1 subtests failed 2026-04-21 -HTML::HTML5::Writer FAIL Configure failed 2026-04-22 +HTML::Grabber FAIL 1 0 1/1 subtests failed 2026-04-25 +HTML::HTML5::Builder FAIL Configure failed 2026-04-26 +HTML::HTML5::Writer FAIL Configure failed 2026-04-26 HTML::HTMLDoc FAIL No parseable output 2026-04-22 +HTML::Lint FAIL 349 168 181/349 subtests failed 2026-04-25 HTML::Macro FAIL Missing: HTML/Macro/Loop.pm 2026-04-21 HTML::MyHTML FAIL 2026-04-21 HTML::Notebook FAIL Unknown test outcome 2026-04-22 HTML::ParagraphSplit FAIL 6 0 22/6 subtests failed 2026-04-21 -HTML::Parse FAIL 401 0 591/401 subtests failed 2026-04-21 +HTML::Parse FAIL 401 0 591/401 subtests failed 2026-04-25 HTML::Parser::Simple FAIL No parseable output 2026-04-21 HTML::PopupTreeSelect FAIL No parseable output 2026-04-22 HTML::PopupTreeSelect::Dynamic FAIL No parseable output 2026-04-22 HTML::PrettyPrinter FAIL Missing: HTML/Element.pm 2026-04-22 +HTML::Prototype FAIL 3 2 1/3 subtests failed 2026-04-26 +HTML::Purifier FAIL 2 0 2/2 subtests failed 2026-04-26 +HTML::Query FAIL Missing: HTML/TreeBuilder.pm 2026-04-26 +HTML::RefMunger FAIL Unknown test outcome 2026-04-25 HTML::Split FAIL 11 7 4/11 subtests failed 2026-04-22 +HTML::Stream::LinkRepairForm FAIL 148 69 79/148 subtests failed 2026-04-25 HTML::StripScripts::Parser FAIL 5 0 213/5 subtests failed 2026-04-22 HTML::Summary FAIL 2026-04-12 +HTML::TableContent FAIL 457 452 5/457 subtests failed 2026-04-25 HTML::TableExtract FAIL 128 0 2487/128 subtests failed 2026-04-21 HTML::TableTiler FAIL 1 0 5/1 subtests failed 2026-04-12 HTML::Tag FAIL 1 0 47/1 subtests failed 2026-04-21 HTML::TagReader FAIL 2026-04-22 HTML::Template FAIL 608 605 3/608 subtests failed 2026-04-12 HTML::Template::Compiled FAIL 246 224 22/246 subtests failed 2026-04-21 +HTML::Template::Compiled::Plugin::HTML_Tags FAIL 11 10 1/11 subtests failed 2026-04-26 HTML::Template::Default FAIL 2026-04-21 +HTML::Template::Pluggable FAIL 91 80 11/91 subtests failed 2026-04-26 HTML::Tested FAIL 281 86 195/281 subtests failed 2026-04-21 HTML::Tested::ClassDBI FAIL 2026-04-22 HTML::Tested::JavaScript FAIL 377 219 158/377 subtests failed 2026-04-21 -HTML::TokeParser::Simple FAIL 170 169 1/170 subtests failed 2026-04-22 -HTML::Tree FAIL 401 0 591/401 subtests failed 2026-04-21 -HTML::TreeBuilder FAIL 401 0 591/401 subtests failed 2026-04-22 +HTML::ToDocBook FAIL 3 0 7/3 subtests failed 2026-04-25 +HTML::TokeParser::Simple FAIL 170 169 1/170 subtests failed 2026-04-25 +HTML::Tree FAIL 401 0 591/401 subtests failed 2026-04-26 +HTML::TreeBuilder FAIL Unknown test outcome 2026-04-26 HTML::TreeBuilderX::ASP_NET FAIL 11 0 17/11 subtests failed 2026-04-22 +HTML::TurboForm FAIL Unknown test outcome 2026-04-26 HTML::ValidationRules::Legacy FAIL 28 28 2026-04-21 -HTML::Widget FAIL 1 0 543/1 subtests failed 2026-04-22 -HTML::Widget::SideBar FAIL 33 25 8/33 subtests failed 2026-04-22 +HTML::Widget FAIL 1 0 625/1 subtests failed 2026-04-25 +HTML::Widget::Plugin::Combo FAIL 2 1 1/2 subtests failed 2026-04-26 +HTML::Widget::SideBar FAIL 33 25 8/33 subtests failed 2026-04-25 HTML::WidgetValidator::Widget FAIL 2 2 Syntax error 2026-04-21 HTML::WidgetValidator::Widget::TegakiBlog FAIL 1 0 1/1 subtests failed 2026-04-21 HTML::Widgets::NavMenu FAIL 46 0 321/46 subtests failed 2026-04-12 HTML::Widgets::SelectLayers FAIL Unknown test outcome 2026-04-22 +HTML::WikiConverter::DokuWiki FAIL 5 4 1/5 subtests failed 2026-04-26 +HTML::WikiConverter::PhpWiki FAIL 5 4 1/5 subtests failed 2026-04-25 HTML::WikiConverter::UseMod FAIL 5 4 1/5 subtests failed 2026-04-21 HTML::WikiConverter::WakkaWiki FAIL 5 4 1/5 subtests failed 2026-04-22 +HTML::YaTmpl FAIL 2 0 54/2 subtests failed 2026-04-26 HTTP::Body FAIL 57 0 185/57 subtests failed 2026-04-12 +HTTP::Cache::Transparent FAIL 10 6 4/10 subtests failed 2026-04-26 HTTP::Engine FAIL 7 0 106/7 subtests failed 2026-04-21 HTTP::Engine::Compat FAIL 1 0 16/1 subtests failed 2026-04-21 +HTTP::HeaderParser::XS FAIL 2 0 38/2 subtests failed 2026-04-25 HTTP::Headers::ActionPack FAIL 448 445 3/448 subtests failed 2026-04-12 +HTTP::Headers::Fast::XS FAIL 191 187 4/191 subtests failed 2026-04-25 +HTTP::LoadGen FAIL 4 0 72/4 subtests failed 2026-04-25 HTTP::MHTTP FAIL 2026-04-21 +HTTP::MobileAgent FAIL 4141 4141 Syntax error 2026-04-26 +HTTP::MobileAgent::Plugin::ID FAIL 2 1 1/2 subtests failed 2026-04-25 +HTTP::MobileAgent::Plugin::Locator FAIL 1 0 12/1 subtests failed 2026-04-26 HTTP::Online FAIL Configure failed 2026-04-22 -HTTP::Parser::XS FAIL Configure failed 2026-04-22 +HTTP::Parser::XS FAIL Configure failed 2026-04-26 +HTTP::RecordedSession FAIL 2026-04-26 HTTP::Request::Form FAIL Unknown test outcome 2026-04-21 HTTP::Request::Params FAIL 10 8 2/10 subtests failed 2026-04-21 -HTTP::Response::Switch FAIL 3 0 3/3 subtests failed 2026-04-21 +HTTP::Response::Switch FAIL 3 0 3/3 subtests failed 2026-04-26 +HTTP::Server::Brick FAIL 5 0 278/5 subtests failed 2026-04-26 HTTP::Server::Simple FAIL 14 0 76/14 subtests failed 2026-04-12 HTTP::Session FAIL Unknown test outcome 2026-04-21 -HTTP::Session2 FAIL 6 4 2/6 subtests failed 2026-04-22 +HTTP::Session2 FAIL 6 4 2/6 subtests failed 2026-04-26 HTTP::Tiny FAIL 227 107 120/227 subtests failed 2026-04-22 +HTTP::Tiny::NewestFirefox FAIL 1 0 1/1 subtests failed 2026-04-25 HTTP::Tiny::SPDY FAIL 3 0 16/3 subtests failed 2026-04-12 HTTP::UserAgentString::Browser FAIL 8 4 4/8 subtests failed 2026-04-22 +HTTP::WebTest FAIL 94 0 152/94 subtests failed 2026-04-26 HTTP::XSHeaders FAIL 1 0 3/1 subtests failed 2026-04-21 +HTTPEx::Declare FAIL 1 0 1/1 subtests failed 2026-04-26 +HTTPx::Dispatcher FAIL 3 3 Syntax error 2026-04-26 HTTunnel::Client FAIL Configure failed 2026-04-21 Hardware FAIL Missing: Object/Pad.pm 2026-04-21 Hash::AsObject FAIL 93 93 Missing: diagnostics.pm 2026-04-12 @@ -1063,42 +1418,72 @@ Hijk FAIL 2026-04-22 Hook::LexWrap FAIL 58 58 2026-04-12 Horus FAIL 25 0 157/25 subtests failed 2026-04-12 I18N::String FAIL Unknown test outcome 2026-04-12 +INSPEC::BibTeX FAIL Unknown test outcome 2026-04-26 +IO FAIL 16589 8584 8005/16589 subtests failed 2026-04-25 +IO::AIO FAIL Configure failed 2026-04-26 +IO::AIO::Util FAIL 2 0 2/2 subtests failed 2026-04-25 IO::All::Gopher FAIL TIMEOUT (>300s) 2026-04-21 +IO::All::SFTP FAIL 2 0 2/2 subtests failed 2026-04-26 IO::Any FAIL Unknown test outcome 2026-04-22 +IO::Async FAIL Configure failed 2026-04-26 IO::Async::File FAIL Configure failed 2026-04-22 IO::Async::Function FAIL Configure failed 2026-04-22 IO::Async::Loop FAIL Configure failed 2026-04-22 IO::Async::Loop::Glib FAIL 2 1 1/2 subtests failed 2026-04-22 IO::Async::Resolver::StupidCache FAIL 2 1 1/2 subtests failed 2026-04-22 IO::Async::SSL FAIL Configure failed 2026-04-22 +IO::Capture FAIL 121 119 2/121 subtests failed 2026-04-25 IO::Detect FAIL 228 225 3/228 subtests failed 2026-04-21 +IO::EPP FAIL 1 1 2026-04-25 IO::EventMux::Socket::MsgHdr FAIL Build failed 2026-04-22 IO::FDPass FAIL 2026-04-22 +IO::HyCon FAIL 1 0 1/1 subtests failed 2026-04-26 IO::Infiles FAIL 8 6 2/8 subtests failed 2026-04-12 -IO::Lambda FAIL 123 62 61/123 subtests failed 2026-04-21 +IO::Iron FAIL 12 11 1/12 subtests failed 2026-04-26 +IO::Lambda FAIL 123 62 61/123 subtests failed 2026-04-25 IO::Lambda::Inotify FAIL Configure failed 2026-04-22 IO::LockedFile FAIL Unknown test outcome 2026-04-22 IO::Page FAIL Unknown test outcome 2026-04-22 IO::Pipe FAIL 16586 8581 8005/16586 subtests failed 2026-04-12 +IO::Pipely FAIL 17 11 6/17 subtests failed 2026-04-26 IO::Pty FAIL Configure failed 2026-04-12 -IO::SessionData FAIL 15 14 1/15 subtests failed 2026-04-22 +IO::SessionData FAIL 15 14 1/15 subtests failed 2026-04-26 IO::Slice FAIL 1 0 1/1 subtests failed 2026-04-21 -IO::Socket::Timeout FAIL 1 0 1/1 subtests failed 2026-04-22 -IO::String FAIL 43 41 2/43 subtests failed 2026-04-12 +IO::Socket::Socks::Wrapped FAIL 1 1 2026-04-25 +IO::Stream FAIL 1 0 1/1 subtests failed 2026-04-25 +IO::Stream::Proxy::SOCKSv4 FAIL 1 0 1/1 subtests failed 2026-04-25 +IO::String FAIL 43 42 1/43 subtests failed 2026-04-26 +IO::StructuredOutput FAIL 16 0 21/16 subtests failed 2026-04-25 IO::Tail FAIL 44 0 74/44 subtests failed 2026-04-22 +IO::Tee FAIL 31 17 14/31 subtests failed 2026-04-26 +IO::Tokenized FAIL 13 3 10/13 subtests failed 2026-04-25 IO::Tty::Util FAIL Configure failed 2026-04-21 IO::Util FAIL 43 0 58/43 subtests failed 2026-04-12 IO::YAML FAIL 19 0 31/19 subtests failed 2026-04-21 IOLayer::MD5 FAIL 10 4 6/10 subtests failed 2026-04-22 +IOas::CP932 FAIL Unknown test outcome 2026-04-26 IOas::CP932X FAIL Unknown test outcome 2026-04-21 +IPC::Cache FAIL Missing: IPC/ShareLite.pm 2026-04-26 IPC::Cmd FAIL 20 20 2026-04-22 -IPC::MM FAIL 2026-04-21 +IPC::ConcurrencyLimit::WithStandby FAIL 63 43 20/63 subtests failed 2026-04-26 +IPC::LDT FAIL No parseable output 2026-04-25 +IPC::MM FAIL 2026-04-25 IPC::MPS FAIL 1 0 6/1 subtests failed 2026-04-22 -IPC::MicroSocket FAIL Configure failed 2026-04-21 +IPC::MicroSocket FAIL Configure failed 2026-04-25 +IPC::Pleather FAIL 1 1 Missing: IPC/Semaphore.pm 2026-04-26 +IPC::ReadpipeX FAIL 11 9 2/11 subtests failed 2026-04-25 IPC::Run FAIL 1 0 640/1 subtests failed 2026-04-12 -IPC::SysV FAIL Configure failed 2026-04-21 +IPC::RunExternal FAIL Missing: Const/Fast.pm 2026-04-26 +IPC::ScoreBoard FAIL 1 0 89/1 subtests failed 2026-04-25 +IPC::Semaphore FAIL Configure failed 2026-04-26 +IPC::ShareLite FAIL 3 0 18/3 subtests failed 2026-04-26 +IPC::SysV FAIL Configure failed 2026-04-25 +IPC::System::Options FAIL 1 0 1/1 subtests failed 2026-04-25 +IPC::System::Simple FAIL 183 171 12/183 subtests failed 2026-04-25 IPTables::Log FAIL 3 0 48/3 subtests failed 2026-04-22 IRI FAIL 8 4 4/8 subtests failed 2026-04-12 +IS::Init FAIL 2026-04-26 +ISAL::Crypto FAIL 2026-04-25 Icon::FamFamFam::Silk FAIL Configure failed 2026-04-22 Image::Magick FAIL 2026-04-12 Image::PNG::Libpng FAIL Configure failed 2026-04-21 @@ -1108,65 +1493,99 @@ Import::Export FAIL 29 27 2/29 subtests failed 2026-04-12 InfluxDB::Writer FAIL 10 5 5/10 subtests failed 2026-04-22 Inline FAIL 6 0 7/6 subtests failed 2026-04-22 Inline::C FAIL 34 12 22/34 subtests failed 2026-04-22 +Inline::Java FAIL 1 0 248/1 subtests failed 2026-04-25 +Interchange6 FAIL 31 30 1/31 subtests failed 2026-04-25 +Interpolation FAIL 158 157 1/158 subtests failed 2026-04-26 Iterator::Array::Jagged FAIL Unknown test outcome 2026-04-12 Iterator::Simple FAIL Configure failed 2026-04-12 Iterator::Simple::Lookahead FAIL 1 1 Missing: Iterator/Simple.pm 2026-04-12 -JIP::ClassField FAIL Syntax error 2026-04-21 +JDBC FAIL 2 0 17/2 subtests failed 2026-04-25 +JIP::ClassField FAIL Syntax error 2026-04-26 JIP::Debug FAIL 13 3 10/13 subtests failed 2026-04-21 JIP::LockSocket FAIL 2 0 9/2 subtests failed 2026-04-21 +JIRA::Client::Automated FAIL 2 1 1/2 subtests failed 2026-04-25 +JKML FAIL 1 0 1/1 subtests failed 2026-04-26 +JSON::Create FAIL Missing: Unicode/UTF8.pm 2026-04-25 JSON::Hyper FAIL Configure failed 2026-04-21 JSON::Literal FAIL TIMEOUT (>300s) 2026-04-21 +JSON::MaybeXS FAIL 51 49 2/51 subtests failed 2026-04-26 JSON::ON FAIL 1 0 1/1 subtests failed 2026-04-22 JSON::RPC FAIL 30 21 9/30 subtests failed 2026-04-12 -JSON::RPC::Common FAIL Missing: Moose.pm 2026-04-22 +JSON::RPC::Common FAIL Missing: Moose.pm 2026-04-26 +JSON::RPC::Dispatcher FAIL 2 0 3/2 subtests failed 2026-04-26 JSON::RPC::Server::FastCGI FAIL 2 1 1/2 subtests failed 2026-04-21 JSON::RPC::Simple FAIL 24 20 4/24 subtests failed 2026-04-21 JSON::Schema FAIL 1 0 8/1 subtests failed 2026-04-21 -JSON::Schema::Generate FAIL 1 0 1/1 subtests failed 2026-04-21 -JSON::Syck FAIL Configure failed 2026-04-22 +JSON::Schema::Generate FAIL 1 0 1/1 subtests failed 2026-04-26 +JSON::Schema::Modern FAIL 3 3 2026-04-26 +JSON::Syck FAIL Configure failed 2026-04-26 JSON::Validator FAIL 4 4 2026-04-22 JSON::Validator::Ref FAIL TIMEOUT (>300s) 2026-04-21 JSON::WebToken FAIL 23 21 2/23 subtests failed 2026-04-21 +JSON::XS::VersionOneAndTwo FAIL 1 1 Missing: common/sense.pm 2026-04-26 JSON::ize FAIL 17 12 5/17 subtests failed 2026-04-21 JSONP FAIL 1 0 1/1 subtests failed 2026-04-12 +JSONRPC::Transport::TCP FAIL 1 1 Syntax error 2026-04-26 Jacode4e::RoundTrip FAIL Unknown test outcome 2026-04-22 JavaScript::DataFormValidator FAIL 5 5 Missing: Data/JavaScript/Anon.pm 2026-04-21 -Jcode FAIL Missing: diagnostics.pm 2026-04-12 +JavaScript::QuickJS FAIL Missing: common/sense.pm 2026-04-25 +JavaScript::Shell FAIL 1 0 1/1 subtests failed 2026-04-25 +Jcode FAIL 2026-04-25 +K FAIL Configure failed 2026-04-25 +KCP FAIL 2 1 1/2 subtests failed 2026-04-25 Keybinder FAIL Configure failed 2026-04-22 -Keyword::Simple FAIL Configure failed 2026-04-22 +KeyedMutex FAIL 5 0 25/5 subtests failed 2026-04-26 +Keyword::Declare FAIL Missing: Keyword/Simple.pm 2026-04-26 +Keyword::Simple FAIL Configure failed 2026-04-26 KiokuDB FAIL 144 2 142/144 subtests failed 2026-04-21 KiokuX::Model FAIL 1 0 1/1 subtests failed 2026-04-21 +Konstrukt FAIL Configure failed 2026-04-26 +Krb5 FAIL 2026-04-26 Kwalify FAIL 139 133 6/139 subtests failed 2026-04-12 Kx FAIL Configure failed 2026-04-22 L337 FAIL Unknown test outcome 2026-04-21 LCFG::Build::PkgSpec FAIL 14 0 158/14 subtests failed 2026-04-22 LCFG::Build::Skeleton FAIL 1 0 1/1 subtests failed 2026-04-22 LCFG::Build::VCS FAIL 3 0 3/3 subtests failed 2026-04-22 +LCS::BV FAIL Unknown test outcome 2026-04-25 +LEOCHARRE::Dir FAIL 1 1 2026-04-26 LIMS::MT_Plate FAIL 13 12 1/13 subtests failed 2026-04-22 LWP::Authen::OAuth2 FAIL 54 53 1/54 subtests failed 2026-04-22 -LWP::Online FAIL Configure failed 2026-04-22 +LWP::ConnCache::MaxKeepAliveRequests FAIL 1 0 6/1 subtests failed 2026-04-26 +LWP::Online FAIL Configure failed 2026-04-26 LWP::Protocol::Net::Curl FAIL 2 0 2/2 subtests failed 2026-04-21 -LWP::Protocol::PSGI FAIL 27 25 2/27 subtests failed 2026-04-21 +LWP::Protocol::PSGI FAIL 27 25 2/27 subtests failed 2026-04-26 +LWP::Protocol::sftp FAIL 1 0 1/1 subtests failed 2026-04-26 +LWP::UserAgent::AtomClient FAIL 116 0 165/116 subtests failed 2026-04-26 +LWP::UserAgent::Cache::Memcached FAIL 1 0 2/1 subtests failed 2026-04-26 LWP::UserAgent::Caching::Simple FAIL No parseable output 2026-04-21 +LWP::UserAgent::OfflineCache FAIL Unknown test outcome 2026-04-26 LWP::UserAgent::POE FAIL 2026-04-22 LWP::UserAgent::Patch::FilterMirror FAIL No parseable output 2026-04-21 +LWP::UserAgent::ProgressBar FAIL 11 9 2/11 subtests failed 2026-04-26 +LWPx::ParanoidHandler FAIL 24 22 2/24 subtests failed 2026-04-26 +LWPx::TimedHTTP::https FAIL TIMEOUT (>300s) 2026-04-26 LaTeX::Driver::Paths FAIL No parseable output 2026-04-21 LaTeXML::Plugin::Latexmls FAIL No parseable output 2026-04-21 LabKey::Query FAIL 12 6 6/12 subtests failed 2026-04-12 Lexical::Accessor FAIL 65 63 2/65 subtests failed 2026-04-22 -Lexical::SealRequireHints FAIL Unknown test outcome 2026-04-22 +Lexical::SealRequireHints FAIL Unknown test outcome 2026-04-26 Lingua::EN::Inflect::Phrase FAIL 137 137 2026-04-12 Lingua::EN::Tagger FAIL 41 0 75/41 subtests failed 2026-04-12 +Lingua::Han::PinYin FAIL 51 16 35/51 subtests failed 2026-04-26 Lingua::JA::Halfwidth::Katakana FAIL 62 62 Syntax error 2026-04-22 Lingua::PT::PLNbase FAIL 7 0 133/7 subtests failed 2026-04-22 Lingua::Stem::Ru FAIL 4 0 4/4 subtests failed 2026-04-12 Lingua::Stem::Snowball FAIL Build failed 2026-04-22 Lingua::Stem::Snowball::Da FAIL Unknown test outcome 2026-04-12 +Linux::PipeMagic FAIL 1 0 1/1 subtests failed 2026-04-26 LinuxRealTime FAIL 1 0 1/1 subtests failed 2026-04-12 +LiquidCrystal_I2C FAIL TIMEOUT (>300s) 2026-04-25 List::MoreUtils FAIL Unknown test outcome 2026-04-12 +List::Sliding::Changes FAIL 47 47 2026-04-26 List::SomeUtils FAIL 45 41 4/45 subtests failed 2026-04-12 List::Util FAIL 842 0 1487/842 subtests failed 2026-04-21 -List::UtilsBy FAIL Unknown test outcome 2026-04-22 +List::UtilsBy FAIL Unknown test outcome 2026-04-26 Locale::Intl FAIL 2 0 2/2 subtests failed 2026-04-22 Locale::MO::File FAIL 21 0 52/21 subtests failed 2026-04-22 Locale::Maketext::Lexicon FAIL 298 98 200/298 subtests failed 2026-04-21 @@ -1196,29 +1615,43 @@ Log::Structured FAIL 13 11 2/13 subtests failed 2026-04-12 Luminary FAIL No parseable output 2026-04-21 MAB2::Record::Base FAIL No parseable output 2026-04-21 MAIN FAIL Missing: PBJ/JNI/Native.pm 2026-04-22 +MARC::Batch FAIL 1013 1009 4/1013 subtests failed 2026-04-26 +MARC::Charset FAIL 16 0 22/16 subtests failed 2026-04-26 MARC::Convert::Wikidata::Object FAIL No parseable output 2026-04-21 +MARC::File::XML FAIL 5 0 65/5 subtests failed 2026-04-26 MARC::Leader::Print FAIL No parseable output 2026-04-21 MARC::Loop FAIL Unknown test outcome 2026-04-22 +MARC::Matcher FAIL Unknown test outcome 2026-04-25 +MARC::Moose::Field::Control FAIL 20 0 74/20 subtests failed 2026-04-26 MARC::Transform FAIL No parseable output 2026-04-21 -MCP FAIL 2026-04-22 +MCP FAIL 2026-04-25 MCP::Run FAIL 2 0 2/2 subtests failed 2026-04-22 MD5 FAIL 3 0 11/3 subtests failed 2026-04-12 +MDOM::Assignment FAIL 97 97 2026-04-25 MHFS::BitTorrent::Bencoding FAIL No parseable output 2026-04-21 MIDI::Music FAIL 2026-04-21 MIDI::Segment FAIL No parseable output 2026-04-21 MIME::Charset FAIL 93 77 16/93 subtests failed 2026-04-12 MIME::Entity FAIL Unknown test outcome 2026-04-21 MIME::Lite FAIL 24 18 6/24 subtests failed 2026-04-12 -MIME::QuotedPrint FAIL 348 315 33/348 subtests failed 2026-04-12 +MIME::Lite::TT::HTML FAIL 1 0 1/1 subtests failed 2026-04-26 +MIME::Lite::TT::HTML::Japanese FAIL 3 2 1/3 subtests failed 2026-04-26 +MIME::QuotedPrint FAIL 348 315 33/348 subtests failed 2026-04-26 MIME::Types FAIL 97 97 2026-04-12 MKDoc::XML FAIL 388 388 2026-04-22 -MLDBM FAIL 6 0 18/6 subtests failed 2026-04-22 -MMS::Mail::Provider::UK02 FAIL 2 1 1/2 subtests failed 2026-04-22 +MLDBM FAIL 6 0 9/6 subtests failed 2026-04-26 +MMS::Mail::Provider::UK02 FAIL 2 1 1/2 subtests failed 2026-04-25 MMS::Mail::Provider::UK3 FAIL No parseable output 2026-04-21 MODS::Element::ShelfLocation FAIL TIMEOUT (>300s) 2026-04-22 +MP3::Album FAIL No parseable output 2026-04-25 MP4::Info FAIL Unknown test outcome 2026-04-21 MPEG::MP3Play FAIL 2026-04-22 +MQSeries::OAM FAIL TIMEOUT (>300s) 2026-04-25 +MRS::Algorithm FAIL 12 0 108/12 subtests failed 2026-04-26 +MRTG::Config FAIL No parseable output 2026-04-26 +MT::Import::Mbox FAIL 1 0 1/1 subtests failed 2026-04-26 MTDB FAIL No parseable output 2026-04-21 +MVC::Neaf FAIL 3 2 1/3 subtests failed 2026-04-25 MVS::JESFTP FAIL No parseable output 2026-04-21 Mac::AppleEvents FAIL 2 0 2964/2 subtests failed 2026-04-21 Mac::AppleEvents::Simple FAIL 2 0 23/2 subtests failed 2026-04-21 @@ -1227,15 +1660,23 @@ Mac::Errors FAIL 8 0 32/8 subtests failed 2026-04-21 Mac::Growl FAIL 1 0 10/1 subtests failed 2026-04-21 Mac::Pasteboard FAIL Build failed 2026-04-21 Mac::SystemDirectory FAIL Configure failed 2026-04-12 +Mail::RFC822::Address FAIL Unknown test outcome 2026-04-26 Mail::Sender FAIL 178 175 3/178 subtests failed 2026-04-21 Mail::Sendmail FAIL Unknown test outcome 2026-04-21 MailboxValidator::SingleValidation FAIL Unknown test outcome 2026-04-22 -Marpa::R2 FAIL Build failed 2026-04-21 +MakeWithPerl FAIL 2026-04-25 +Marathon FAIL 1 0 1/1 subtests failed 2026-04-25 +Marpa::R2 FAIL Build failed 2026-04-26 MarpaX::Languages::ECMAScript::AST FAIL No parseable output 2026-04-21 +MarpaX::RFC::RFC3629 FAIL 2 1 1/2 subtests failed 2026-04-26 +MarpaX::Repa FAIL Missing: Marpa/R2.pm 2026-04-25 MarpaX::Simple::Rules FAIL Missing: Marpa/XS.pm 2026-04-22 +MasonX::Lexer::MSP FAIL Missing: Class/Container.pm 2026-04-25 MasonX::Maypole::Application FAIL TIMEOUT (>300s) 2026-04-22 +MasonX::Plugin::Compress FAIL 2 0 21/2 subtests failed 2026-04-25 MasonX::Request::ExtendedCompRoot FAIL Missing: Class/Container.pm 2026-04-21 MasonX::Request::HTMLTemplate FAIL No parseable output 2026-04-21 +MassSpec::ViewSpectrum FAIL 1 0 2/1 subtests failed 2026-04-26 Math::Base::Convert FAIL Missing: Math/Base/Convert.pm 2026-04-12 Math::BigFloat FAIL 4967 0 38173/4967 subtests failed 2026-04-12 Math::BigInt FAIL 4967 0 38173/4967 subtests failed 2026-04-12 @@ -1244,29 +1685,37 @@ Math::Complex FAIL 392 0 841/392 subtests failed 2026-04-12 Math::Geometry::Planar FAIL 2026-04-22 Math::Geometry::Planar::GPC FAIL 2026-04-22 Math::Geometry::Planar::Offset FAIL 11 8 3/11 subtests failed 2026-04-22 -Math::Int64 FAIL Configure failed 2026-04-22 -Math::Matrix FAIL 3506 3470 36/3506 subtests failed 2026-04-21 +Math::Int64 FAIL Configure failed 2026-04-25 +Math::Matrix FAIL 3506 3470 36/3506 subtests failed 2026-04-26 +Math::Pari FAIL Configure failed 2026-04-26 Math::Prime::Util FAIL 2 0 2/2 subtests failed 2026-04-22 Math::Prime::Util::GMP FAIL 1 0 1/1 subtests failed 2026-04-22 +Math::Random FAIL 2026-04-25 Math::Random::ISAAC FAIL 609 9 600/609 subtests failed 2026-04-21 +Math::Random::ISAAC::XS FAIL Build failed 2026-04-26 Math::Random::MT FAIL 39 22 17/39 subtests failed 2026-04-21 Math::Random::Secure FAIL 2 0 18/2 subtests failed 2026-04-21 Math::Trig FAIL 392 0 841/392 subtests failed 2026-04-21 +Math::UInt64 FAIL Configure failed 2026-04-25 Math::Vec FAIL 20 13 7/20 subtests failed 2026-04-12 Maypole FAIL 81 0 337/81 subtests failed 2026-04-21 +MeSH::Parser::ASCII FAIL 1 0 1/1 subtests failed 2026-04-25 MediaWiki::DumpFile FAIL 2 0 442/2 subtests failed 2026-04-22 Medusa FAIL No parseable output 2026-04-21 MemcachedSOAPClass FAIL No parseable output 2026-04-21 Memoize FAIL Unknown test outcome 2026-04-12 Memoize::ExpireLRU FAIL 2026-04-12 -Meta::Builder FAIL Missing: Fennec/Lite.pm 2026-04-22 +Mercury FAIL 13 11 2/13 subtests failed 2026-04-26 +Meta::Builder FAIL Missing: Fennec/Lite.pm 2026-04-25 MetaCPAN::API FAIL 12 0 97/12 subtests failed 2026-04-22 MetaCPAN::Client::Pod::PDF FAIL 1 0 1/1 subtests failed 2026-04-22 Metabase FAIL No parseable output 2026-04-21 Metabase::Fact::Hash FAIL 47 0 53/47 subtests failed 2026-04-12 Metaweb FAIL No parseable output 2026-04-21 +Method::ParamValidator FAIL 34 15 19/34 subtests failed 2026-04-26 Method::Signatures::Simple FAIL 2 0 26/2 subtests failed 2026-04-21 Metrics::Any FAIL Configure failed 2026-04-22 +Microarray FAIL No parseable output 2026-04-26 Migraine FAIL Unknown test outcome 2026-04-21 Mixin::Linewise::Readers FAIL 1 1 2026-04-12 Mmap FAIL Configure failed 2026-04-21 @@ -1275,123 +1724,173 @@ Mock::Quick FAIL 24 24 Missing: Fennec/Lite.pm 2026-04-22 ModPerl::ParamBuilder FAIL 2 1 1/2 subtests failed 2026-04-21 Model3D::Poser::GetStringRes FAIL No parseable output 2026-04-22 Modern::Perl FAIL 164 91 73/164 subtests failed 2026-04-12 -Module::Build::XSUtil FAIL 3 1 2/3 subtests failed 2026-04-22 +Module::Build::XSUtil FAIL 3 1 2/3 subtests failed 2026-04-26 Module::CPANfile FAIL 37 37 2026-04-12 Module::Extract::Namespaces FAIL 14 10 4/14 subtests failed 2026-04-12 +Module::Extract::Use FAIL 33 28 5/33 subtests failed 2026-04-26 +Module::Extract::VERSION FAIL 20 19 1/20 subtests failed 2026-04-26 Module::Generic FAIL 26 3 23/26 subtests failed 2026-04-21 Module::Install::AuthorTests FAIL Missing: Module/Install/Base.pm 2026-04-22 Module::Loaded FAIL Missing: less.pm 2026-04-21 Module::Mask FAIL 4 0 28/4 subtests failed 2026-04-12 +Module::MultiConf FAIL 17 0 20/17 subtests failed 2026-04-26 Module::Patch FAIL 8 4 4/8 subtests failed 2026-04-22 Module::Path FAIL 18 11 7/18 subtests failed 2026-04-22 +Module::Refresh FAIL 16 14 2/16 subtests failed 2026-04-25 Module::ScanDeps FAIL 159 146 13/159 subtests failed 2026-04-21 Module::ScanDeps::Static FAIL 2026-04-21 Module::Signature FAIL 2 2 Missing: IPC/Run.pm 2026-04-12 -Module::Util FAIL 47 46 1/47 subtests failed 2026-04-22 +Module::Util FAIL 47 46 1/47 subtests failed 2026-04-26 +MogileFS FAIL 12 1 11/12 subtests failed 2026-04-26 +MogileFS::Admin FAIL 2 0 2/2 subtests failed 2026-04-26 +MogileFS::Client FAIL 2 0 2/2 subtests failed 2026-04-26 +MogileFS::Client::Async FAIL 2 0 2/2 subtests failed 2026-04-26 +MogileFS::Plugin::FileRefs FAIL 1 0 1/1 subtests failed 2026-04-26 +MogileFS::Server FAIL 12 1 11/12 subtests failed 2026-04-26 +Mojo::DOM58 FAIL 144 143 1/144 subtests failed 2026-04-26 Mojo::JSON::MaybeXS FAIL 140 139 1/140 subtests failed 2026-04-22 Mojo::Pg FAIL 2026-04-22 MojoX::Encode::Gzip FAIL 16 11 5/16 subtests failed 2026-04-21 +MojoX::HTTP::Async FAIL 4 4 2026-04-25 MojoX::I18N::Lexemes FAIL 14 7 7/14 subtests failed 2026-04-22 MojoX::Log::Any FAIL 2026-04-22 MojoX::Log::Log4perl FAIL 61 54 7/61 subtests failed 2026-04-21 MojoX::Log::Report FAIL 11 0 144/11 subtests failed 2026-04-21 +MojoX::Renderer::Xslate FAIL 2 0 2/2 subtests failed 2026-04-26 MojoX::Routes::AsGraph FAIL 1 0 2/1 subtests failed 2026-04-21 -MojoX::Session FAIL 130 130 2026-04-21 -MongoDB FAIL Configure failed 2026-04-22 +MojoX::Session FAIL 130 130 2026-04-25 +MojoX::Session::Store::MongoDB FAIL Unknown test outcome 2026-04-25 +MojoX::Validator FAIL 2 2 2026-04-26 +Mojolicious::Plugin::AssetPack FAIL 64 62 2/64 subtests failed 2026-04-25 +MongoDB FAIL Configure failed 2026-04-26 MongoDB::BSON FAIL Configure failed 2026-04-21 MongoDB::Simple FAIL Missing: MongoDB.pm 2026-04-22 +MongoHosting FAIL No parseable output 2026-04-25 +Monkey::Patch FAIL Missing: SUPER.pm 2026-04-26 Monkey::Patch::Action FAIL 25 12 13/25 subtests failed 2026-04-22 Monoceros FAIL 4 3 1/4 subtests failed 2026-04-22 MooX::BuildArgs FAIL 2026-04-12 MooX::Enumeration FAIL Configure failed 2026-04-12 MooX::HandlesVia FAIL 787 779 8/787 subtests failed 2026-04-12 -MooX::Locale::TextDomain::OO FAIL 1 1 2026-04-22 +MooX::Locale::TextDomain::OO FAIL 1 0 1/1 subtests failed 2026-04-26 MooX::Lsub FAIL Configure failed 2026-04-12 MooX::ObjectBuilder FAIL 58 50 8/58 subtests failed 2026-04-22 MooX::Press FAIL Configure failed 2026-04-22 -MooX::ProtectedAttributes FAIL Unknown test outcome 2026-04-21 +MooX::ProtectedAttributes FAIL 9 8 1/9 subtests failed 2026-04-26 MooX::Types::CLike FAIL 10 8 2/10 subtests failed 2026-04-22 +MooX::ValidateSubs FAIL 74 62 12/74 subtests failed 2026-04-25 MooX::late FAIL Configure failed 2026-04-22 Moodle FAIL 2026-04-22 Moops FAIL Configure failed 2026-04-12 -Moose FAIL Configure failed 2026-04-22 -Moose::Autobox FAIL 17 0 171/17 subtests failed 2026-04-22 +Moose FAIL Configure failed 2026-04-26 +Moose::Autobox FAIL 17 0 171/17 subtests failed 2026-04-26 Moose::Exporter FAIL Configure failed 2026-04-22 Moose::Meta::TypeConstraint::Role FAIL Configure failed 2026-04-12 -Moose::Role FAIL Configure failed 2026-04-22 +Moose::Role FAIL Configure failed 2026-04-26 Moose::Util FAIL Configure failed 2026-04-22 -Moose::Util::TypeConstraints FAIL Configure failed 2026-04-12 +Moose::Util::TypeConstraints FAIL Configure failed 2026-04-25 +MooseX::APIRole FAIL Missing: Moose/Util.pm 2026-04-25 +MooseX::AbstractFactory FAIL 4 1 3/4 subtests failed 2026-04-26 +MooseX::AbstractMethod FAIL 3 1 2/3 subtests failed 2026-04-25 MooseX::Aliases FAIL 8 0 153/8 subtests failed 2026-04-12 +MooseX::AlwaysCoerce FAIL 3 3 Missing: Moose.pm 2026-04-25 MooseX::App FAIL 45 0 153/45 subtests failed 2026-04-21 -MooseX::App::Cmd FAIL 6 0 15/6 subtests failed 2026-04-21 +MooseX::App::Cmd FAIL Unknown test outcome 2026-04-26 MooseX::App::Cmd::Command::BashComplete FAIL Configure failed 2026-04-21 +MooseX::App::Role::Log4perl FAIL 1 0 1/1 subtests failed 2026-04-26 MooseX::ArrayRef FAIL 1 0 10/1 subtests failed 2026-04-12 -MooseX::Attribute::Chained FAIL 7 1 6/7 subtests failed 2026-04-22 +MooseX::Attribute::Chained FAIL 7 1 6/7 subtests failed 2026-04-25 MooseX::Attribute::ENV FAIL Configure failed 2026-04-12 MooseX::Attribute::Localize FAIL 2 0 10/2 subtests failed 2026-04-12 MooseX::Attribute::ValidateWithException FAIL 4 0 4/4 subtests failed 2026-04-21 MooseX::AttributeShortcuts FAIL 32 20 12/32 subtests failed 2026-04-21 MooseX::Blessed::Reconstruct FAIL 3 1 2/3 subtests failed 2026-04-21 -MooseX::BuildArgs FAIL Missing: Moose.pm 2026-04-22 -MooseX::Clone FAIL 1 0 5/1 subtests failed 2026-04-22 +MooseX::BuildArgs FAIL Missing: Moose.pm 2026-04-26 +MooseX::CachingProxy FAIL 1 1 Missing: Moose/Role.pm 2026-04-26 +MooseX::Clone FAIL 1 0 5/1 subtests failed 2026-04-26 MooseX::ClosedHash FAIL Missing: Test/Moose.pm 2026-04-21 -MooseX::ConfigFromFile FAIL 4 3 1/4 subtests failed 2026-04-22 +MooseX::ComposedBehavior FAIL 1 1 Missing: Moose/Role.pm 2026-04-26 +MooseX::ConfigFromFile FAIL 4 3 1/4 subtests failed 2026-04-26 +MooseX::CoverableModifiers FAIL 1 1 Missing: Devel/Declare.pm 2026-04-25 +MooseX::CurriedDelegation FAIL 18 14 4/18 subtests failed 2026-04-25 MooseX::DOM FAIL Configure failed 2026-04-12 -MooseX::Daemonize FAIL 6 0 55/6 subtests failed 2026-04-22 -MooseX::Declare FAIL 3 0 104/3 subtests failed 2026-04-22 -MooseX::DeepAccessors FAIL 5 2 3/5 subtests failed 2026-04-21 +MooseX::Daemonize FAIL 6 0 55/6 subtests failed 2026-04-26 +MooseX::Declare FAIL 3 0 104/3 subtests failed 2026-04-26 +MooseX::DeepAccessors FAIL 5 2 3/5 subtests failed 2026-04-26 MooseX::Emulate::Class::Accessor::Fast FAIL 4 0 76/4 subtests failed 2026-04-12 MooseX::ErrorHandling FAIL 2026-04-22 MooseX::Event FAIL Missing: Moose/Exporter.pm 2026-04-21 MooseX::FSM FAIL 8 0 20/8 subtests failed 2026-04-21 -MooseX::FollowPBP FAIL Missing: Moose.pm 2026-04-22 -MooseX::Getopt FAIL 10 4 6/10 subtests failed 2026-04-22 -MooseX::Getopt::Usage::Role::Man FAIL 2 0 2/2 subtests failed 2026-04-21 +MooseX::FileAttribute FAIL 1 0 6/1 subtests failed 2026-04-26 +MooseX::FollowPBP FAIL Missing: Moose.pm 2026-04-26 +MooseX::Getopt FAIL 10 4 6/10 subtests failed 2026-04-26 +MooseX::Getopt::Dashes FAIL 10 4 6/10 subtests failed 2026-04-25 +MooseX::Getopt::Usage FAIL 2 0 2/2 subtests failed 2026-04-26 +MooseX::Getopt::Usage::Role::Man FAIL 2 0 2/2 subtests failed 2026-04-26 +MooseX::Has::Sugar FAIL 4 1 3/4 subtests failed 2026-04-26 MooseX::InsideOut FAIL 1 0 57/1 subtests failed 2026-04-21 -MooseX::LazyRequire FAIL 3 3 Missing: Moose.pm 2026-04-22 +MooseX::Iterator FAIL 4 0 29/4 subtests failed 2026-04-25 +MooseX::LazyRequire FAIL 3 3 Missing: Moose.pm 2026-04-26 +MooseX::LogDispatch FAIL 6 0 29/6 subtests failed 2026-04-25 MooseX::MarkAsMethods FAIL 3 1 2/3 subtests failed 2026-04-21 MooseX::Meta::Attribute::Searchable FAIL Missing: Moose.pm 2026-04-22 MooseX::Meta::TypeConstraint::Mooish FAIL 16 13 3/16 subtests failed 2026-04-21 -MooseX::Method::Signatures FAIL 1 0 1/1 subtests failed 2026-04-22 +MooseX::Method::Signatures FAIL 1 0 1/1 subtests failed 2026-04-26 +MooseX::MungeHas FAIL 6 6 2026-04-26 MooseX::NestedAttributesConstructor FAIL Missing: Moose.pm 2026-04-21 +MooseX::NewDefaults FAIL 3 1 2/3 subtests failed 2026-04-25 MooseX::NonMoose FAIL 1 1 Missing: Moose.pm 2026-04-12 -MooseX::Object::Pluggable FAIL 8 0 53/8 subtests failed 2026-04-22 +MooseX::Object::Pluggable FAIL 8 0 53/8 subtests failed 2026-04-26 MooseX::OneArgNew FAIL 1 1 Missing: Moose.pm 2026-04-12 +MooseX::POE FAIL Missing: Moose.pm 2026-04-26 MooseX::Params FAIL 9 0 9/9 subtests failed 2026-04-21 MooseX::Params::Validate FAIL 5 1 4/5 subtests failed 2026-04-12 MooseX::PrivateSetters FAIL Missing: Moose.pm 2026-04-22 +MooseX::RW::Reader FAIL 5 0 5/5 subtests failed 2026-04-26 +MooseX::RelClassTypes FAIL Missing: Moose.pm 2026-04-26 +MooseX::RelatedClassRoles FAIL Missing: Moose.pm 2026-04-25 MooseX::Role::Cmd FAIL 6 0 19/6 subtests failed 2026-04-22 MooseX::Role::Loggable FAIL 28 18 10/28 subtests failed 2026-04-21 -MooseX::Role::Parameterized FAIL 4 4 Missing: Moose.pm 2026-04-22 +MooseX::Role::Parameterized FAIL 4 4 Missing: Moose.pm 2026-04-26 +MooseX::Role::Pluggable FAIL Missing: Moose.pm 2026-04-25 MooseX::RoleFor FAIL 1 0 17/1 subtests failed 2026-04-22 MooseX::SemiAffordanceAccessor FAIL 3 1 2/3 subtests failed 2026-04-22 MooseX::SetOnce FAIL 1 1 Missing: Test/Moose.pm 2026-04-22 -MooseX::SimpleConfig FAIL 15 0 21/15 subtests failed 2026-04-22 +MooseX::SimpleConfig FAIL 15 0 21/15 subtests failed 2026-04-26 +MooseX::Singleton FAIL 4 4 Missing: Moose.pm 2026-04-26 MooseX::SingletonMethod FAIL 6 0 41/6 subtests failed 2026-04-21 MooseX::SlurpyConstructor FAIL 5 4 1/5 subtests failed 2026-04-12 MooseX::Storage::DBIC FAIL 1 0 1/1 subtests failed 2026-04-21 MooseX::StrictConstructor FAIL 1 1 Missing: Test/Moose.pm 2026-04-12 +MooseX::Test::Role FAIL 16 2 14/16 subtests failed 2026-04-26 +MooseX::Timestamp FAIL 6 0 6/6 subtests failed 2026-04-26 MooseX::TraitFor::Meta::Class::BetterAnonClassNames FAIL 17 13 4/17 subtests failed 2026-04-22 -MooseX::Traits FAIL 4 0 47/4 subtests failed 2026-04-22 +MooseX::Traitor FAIL 13 11 2/13 subtests failed 2026-04-25 +MooseX::Traits FAIL 4 0 47/4 subtests failed 2026-04-25 MooseX::Traits::Pluggable FAIL 1 0 92/1 subtests failed 2026-04-21 MooseX::Traits::SetScalarByRef FAIL 3 0 3/3 subtests failed 2026-04-22 -MooseX::Types FAIL 11 4 7/11 subtests failed 2026-04-22 -MooseX::Types::Common FAIL Configure failed 2026-04-21 +MooseX::Types FAIL 11 4 7/11 subtests failed 2026-04-26 +MooseX::Types::Combine FAIL 11 4 7/11 subtests failed 2026-04-25 +MooseX::Types::Common FAIL 6 5 1/6 subtests failed 2026-04-26 +MooseX::Types::Common::Numeric FAIL 6 5 1/6 subtests failed 2026-04-25 MooseX::Types::Common::String FAIL Unknown test outcome 2026-04-22 MooseX::Types::Data::Serializer FAIL Missing: Data/Serializer.pm 2026-04-21 +MooseX::Types::DateTime FAIL 5 4 1/5 subtests failed 2026-04-26 MooseX::Types::DateTime::W3C FAIL 1 0 72/1 subtests failed 2026-04-22 -MooseX::Types::EmailAddress FAIL Unknown test outcome 2026-04-21 -MooseX::Types::IO FAIL 4 0 45/4 subtests failed 2026-04-22 -MooseX::Types::LoadableClass FAIL Configure failed 2026-04-21 +MooseX::Types::Digest FAIL 1 0 80/1 subtests failed 2026-04-25 +MooseX::Types::EmailAddress FAIL 1 0 1/1 subtests failed 2026-04-25 +MooseX::Types::IO FAIL 4 0 45/4 subtests failed 2026-04-25 +MooseX::Types::LoadableClass FAIL 4 4 Missing: MooseX/Types.pm 2026-04-26 MooseX::Types::Meta FAIL 4 4 Missing: Moose/Util/TypeConstraints.pm 2026-04-22 -MooseX::Types::Moose FAIL 11 4 7/11 subtests failed 2026-04-22 -MooseX::Types::Path::Class FAIL 3 3 Missing: Moose.pm 2026-04-22 -MooseX::Types::Path::Tiny FAIL 4 4 Missing: Moose.pm 2026-04-22 +MooseX::Types::Moose FAIL 11 4 7/11 subtests failed 2026-04-26 +MooseX::Types::Path::Class FAIL 3 3 Missing: Moose.pm 2026-04-26 +MooseX::Types::Path::Tiny FAIL 4 4 Missing: Moose.pm 2026-04-26 MooseX::Types::Perl FAIL 1 1 Missing: MooseX/Types.pm 2026-04-22 MooseX::Types::Ro FAIL 1 0 1/1 subtests failed 2026-04-22 MooseX::Types::Set::Object FAIL 4 3 1/4 subtests failed 2026-04-21 MooseX::Types::Stringlike FAIL 1 1 Missing: MooseX/Types.pm 2026-04-21 -MooseX::Types::Structured FAIL 8 0 290/8 subtests failed 2026-04-22 +MooseX::Types::Structured FAIL 8 0 290/8 subtests failed 2026-04-26 +MooseX::Types::Tied::Hash::IxHash FAIL 4 1 3/4 subtests failed 2026-04-25 MooseX::Types::UUID FAIL 1 0 1/1 subtests failed 2026-04-22 MooseX::Util FAIL 20 16 4/20 subtests failed 2026-04-21 MooseX::Workers FAIL Unknown test outcome 2026-04-21 @@ -1401,6 +1900,7 @@ MouseX::ConfigFromFile FAIL 1 0 1/1 subtests failed 2026-04-22 MouseX::Foreign FAIL 1 0 217/1 subtests failed 2026-04-22 MouseX::Getopt FAIL 11 0 278/11 subtests failed 2026-04-22 MouseX::NativeTraits FAIL Configure failed 2026-04-22 +MouseX::Role::Loggable FAIL 1 0 31/1 subtests failed 2026-04-26 MouseX::SimpleConfig FAIL 12 0 21/12 subtests failed 2026-04-22 MouseX::SingletonMethod FAIL 1 0 1/1 subtests failed 2026-04-21 MouseX::Traits FAIL 1 0 4/1 subtests failed 2026-04-22 @@ -1408,6 +1908,8 @@ MouseX::Types FAIL 2 0 81/2 subtests failed 2026-04-21 MouseX::Types::Data::Monad FAIL 1 1 Missing: Mouse/Util/TypeConstraints.pm 2026-04-21 MouseX::Types::Enum FAIL Missing: Mouse.pm 2026-04-21 MouseX::Types::Path::Class FAIL 1 0 1/1 subtests failed 2026-04-22 +MozRepl FAIL 19 0 41/19 subtests failed 2026-04-26 +MozRepl::Plugin::LinkExtor FAIL 5 0 13/5 subtests failed 2026-04-25 Mozilla::ConsoleService FAIL Configure failed 2026-04-21 Mozilla::DOM FAIL Configure failed 2026-04-21 Mozilla::DOM::ComputedStyle FAIL Configure failed 2026-04-21 @@ -1418,26 +1920,43 @@ Mozilla::PromptService FAIL Configure failed 2026-04-21 Mozilla::SourceViewer FAIL Configure failed 2026-04-21 MusicBrainz::DiscID FAIL Configure failed 2026-04-21 Mxpress::PDF FAIL 1 0 1/1 subtests failed 2026-04-22 +MyCPAN::App::BackPAN::Indexer FAIL 23 21 2/23 subtests failed 2026-04-26 +MyData FAIL 452 452 2026-04-26 +MyLibrary FAIL 93 0 248/93 subtests failed 2026-04-25 +MySQL::Easy FAIL 1 0 1/1 subtests failed 2026-04-25 MySQL::Explain::Parser FAIL 1 0 1/1 subtests failed 2026-04-21 +MySQL::Privilege::Reader FAIL 7 1 6/7 subtests failed 2026-04-25 MySQL::TableInfo FAIL 2026-04-21 Myco FAIL 1 0 1/1 subtests failed 2026-04-21 Mytest FAIL Configure failed 2026-04-21 NCBIx::eUtils::GeneAliases FAIL 2 1 1/2 subtests failed 2026-04-21 NEXT FAIL 13 0 47/13 subtests failed 2026-04-12 +NRun::Check FAIL Unknown test outcome 2026-04-26 NSNMP FAIL 66 0 1074/66 subtests failed 2026-04-22 +NTree FAIL No parseable output 2026-04-26 +Nanoid FAIL 6 5 1/6 subtests failed 2026-04-25 +Neo4j::Cypher::Abstract FAIL 88 87 1/88 subtests failed 2026-04-25 Neo4j::Driver FAIL 13 9 4/13 subtests failed 2026-04-21 Net::AMQP FAIL 29 1 28/29 subtests failed 2026-04-21 +Net::AMQP::RabbitMQ FAIL 2026-04-25 Net::Amazon::DynamoDB::Marshaler FAIL 2026-04-22 +Net::Async::MCP FAIL 4 0 4/4 subtests failed 2026-04-26 Net::Curl FAIL 2 0 26/2 subtests failed 2026-04-21 Net::DNS FAIL Unknown test outcome 2026-04-12 Net::HTTP::Client FAIL 1 0 14/1 subtests failed 2026-04-22 -Net::IDN::Encode FAIL Build failed 2026-04-22 +Net::HTTPS::Any FAIL 4 0 9/4 subtests failed 2026-04-25 +Net::IDN::Encode FAIL Build failed 2026-04-26 +Net::IMAP::Simple FAIL Configure failed 2026-04-26 Net::LDAP::AutoServer FAIL 5 4 1/5 subtests failed 2026-04-22 Net::LDAP::LDAPhash FAIL 5 4 1/5 subtests failed 2026-04-22 Net::LibIDN FAIL Unknown test outcome 2026-04-22 Net::NIS FAIL 1 0 62/1 subtests failed 2026-04-12 Net::Netmask FAIL 720 710 10/720 subtests failed 2026-04-21 Net::OSCAR FAIL 75 0 158/75 subtests failed 2026-04-22 +Net::Pcap FAIL Configure failed 2026-04-26 +Net::SFTP::Foreign FAIL 24 0 1162/24 subtests failed 2026-04-26 +Net::SNMP FAIL 43 31 12/43 subtests failed 2026-04-25 +Net::SSH2 FAIL 1 0 1/1 subtests failed 2026-04-26 Net::SSH::Perl FAIL 21 0 31/21 subtests failed 2026-04-12 Net::Server::Coro FAIL Unknown test outcome 2026-04-21 Net::Server::PreFork FAIL 37 0 158/37 subtests failed 2026-04-12 @@ -1446,74 +1965,129 @@ Net::Twitter FAIL 41 0 1267/41 subtests failed 2026-04-21 NetAddr::IP FAIL 116 0 425/116 subtests failed 2026-04-22 NetPacket::Ethernet FAIL 360 355 5/360 subtests failed 2026-04-22 NetPacket::LLC FAIL Unknown test outcome 2026-04-22 -NetSNMP::agent FAIL Configure failed 2026-04-22 +NetSDS::Util FAIL 20 18 2/20 subtests failed 2026-04-25 +NetSNMP::ASN FAIL Configure failed 2026-04-25 +NetSNMP::agent FAIL Configure failed 2026-04-26 NetServer::Generic FAIL Unknown test outcome 2026-04-21 +NetStumbler::Speech FAIL 1 0 1/1 subtests failed 2026-04-25 +Newt FAIL 2026-04-25 +Nodejs::Util FAIL 2 1 1/2 subtests failed 2026-04-25 +Norma FAIL 12 12 Missing: Moose.pm 2026-04-25 Number::Format FAIL 10 10 2026-04-22 Number::RecordLocator FAIL 18 17 1/18 subtests failed 2026-04-21 Number::WithError FAIL 893 891 2/893 subtests failed 2026-04-22 OAuth2::Google::Plus FAIL Missing: MooX/late.pm 2026-04-22 +OAuth::Consumer FAIL Missing: Test/Subs.pm 2026-04-25 OAuth::Lite FAIL 43 0 160/43 subtests failed 2026-04-22 OAuth::Lite2 FAIL 471 372 99/471 subtests failed 2026-04-21 OIDC::Lite FAIL 46 37 9/46 subtests failed 2026-04-21 OPC FAIL 4 3 1/4 subtests failed 2026-04-12 +OPCUA::Open62541 FAIL Unknown test outcome 2026-04-25 +ORDB::CPAN::Mageia FAIL 3 2 1/3 subtests failed 2026-04-25 ORDB::CPANTesters FAIL Configure failed 2026-04-22 ORLite FAIL 3 0 493/3 subtests failed 2026-04-22 -ORLite::Mirror FAIL Configure failed 2026-04-22 +ORLite::Mirror FAIL Configure failed 2026-04-25 ORLite::Pod FAIL Configure failed 2026-04-21 ORM FAIL 18 0 20/18 subtests failed 2026-04-21 +OS2::SoftInstaller FAIL 2026-04-26 OSCARSession FAIL 1 0 1/1 subtests failed 2026-04-22 +OSDial FAIL 1 0 1/1 subtests failed 2026-04-25 +ObjStore::Sex FAIL Configure failed 2026-04-26 +Object::Array FAIL 92 90 2/92 subtests failed 2026-04-25 Object::Event FAIL 1 0 99/1 subtests failed 2026-04-21 +Object::Import FAIL 248 155 93/248 subtests failed 2026-04-26 +Object::MultiType FAIL 2026-04-26 Object::Realize::Later FAIL Missing: Log/Report/Util.pm 2026-04-22 +Object::Tiny::RW::XS FAIL 4 0 27/4 subtests failed 2026-04-25 +Object::Tiny::XS FAIL 5 0 25/5 subtests failed 2026-04-25 +ObjectDBI FAIL Missing: DBI/Const/GetInfoType.pm 2026-04-26 +Opcodes FAIL 2 2 2026-04-25 OpenAPI FAIL Unknown test outcome 2026-04-21 OpenBSD::KvmFiles FAIL 1 0 1/1 subtests failed 2026-04-22 OpenCA::REQ FAIL Missing: Parse/RecDescent.pm 2026-04-22 -OpenGL FAIL 2026-04-21 +OpenCA::TRIStateCGI FAIL Unknown test outcome 2026-04-25 +OpenFrame::Example::Apache2Simple FAIL Configure failed 2026-04-26 +OpenGL FAIL 2026-04-26 OpenGL::Earth FAIL 14 10 4/14 subtests failed 2026-04-21 -OpenGL::Modern FAIL 1 0 2/1 subtests failed 2026-04-21 +OpenGL::Image FAIL 2026-04-26 +OpenGL::Modern FAIL 1 0 2/1 subtests failed 2026-04-26 OpenGL::RWX FAIL Configure failed 2026-04-22 OpenGL::XScreenSaver FAIL 1 0 11/1 subtests failed 2026-04-12 OpenID::Login FAIL 1 0 18/1 subtests failed 2026-04-21 OpenMP FAIL Missing: Alien/OpenMP.pm 2026-04-22 OpenMP::Simple FAIL 1 0 9/1 subtests failed 2026-04-22 OpenMuseum FAIL 1 0 1/1 subtests failed 2026-04-22 +OpenOffice::OODoc FAIL 4 0 29/4 subtests failed 2026-04-26 +OpenSearch FAIL 63 0 63/63 subtests failed 2026-04-26 OpenTracing::Implementation FAIL 4 3 1/4 subtests failed 2026-04-21 OpenTracing::Interface::Tracer FAIL 21 15 6/21 subtests failed 2026-04-21 OpenTracing::Role FAIL Unknown test outcome 2026-04-21 OptArgs2 FAIL 91 81 10/91 subtests failed 2026-04-22 OpusVL::FB11X::Model::PreferencesDB FAIL 25 24 1/25 subtests failed 2026-04-21 OpusVL::SimpleCrypto FAIL 1 1 2026-04-12 +Oraperl FAIL 2 1 1/2 subtests failed 2026-04-25 +OrePAN2 FAIL 20 14 6/20 subtests failed 2026-04-26 +OrePAN2::Server FAIL 1 0 1/1 subtests failed 2026-04-26 OurNet::Query FAIL Unknown test outcome 2026-04-21 OvhApi FAIL 1 0 1/1 subtests failed 2026-04-12 +Oz FAIL Configure failed 2026-04-25 +P FAIL Missing: Types/Core.pm 2026-04-25 +P5U::Command::Peek FAIL Configure failed 2026-04-26 PAR::Dist FAIL 13 0 23/13 subtests failed 2026-04-22 PAR::Repository::Client FAIL 23 0 142/23 subtests failed 2026-04-22 PAR::Repository::Web FAIL 6 0 9/6 subtests failed 2026-04-22 +PAUSE::Permissions FAIL 2026-04-26 +PApp::Hinduism FAIL Unknown test outcome 2026-04-26 +PApp::SQL FAIL 2026-04-26 PBS FAIL 5 0 12/5 subtests failed 2026-04-22 +PBib::BibItemStyle FAIL TIMEOUT (>300s) 2026-04-25 PBib::Builder FAIL TIMEOUT (>300s) 2026-04-21 PDF::FromHTML FAIL Configure failed 2026-04-12 PDF::Report FAIL 2 1 1/2 subtests failed 2026-04-22 PDF::Report::Table FAIL 1 0 1/1 subtests failed 2026-04-21 PDK::Content FAIL Missing: Moose.pm 2026-04-21 PDK::Device FAIL Unknown test outcome 2026-04-22 +PDL::Graphics::ColorSpace FAIL 2026-04-25 PDL::Graphics::X::Fits FAIL Unknown test outcome 2026-04-21 +PDL::HMM FAIL Configure failed 2026-04-25 +PDL::IO::Dicom FAIL No parseable output 2026-04-25 +PDL::Opt::QP FAIL Configure failed 2026-04-25 PDL::Primitive FAIL 45 1 44/45 subtests failed 2026-04-21 PDL::Stats FAIL 1 1 Missing: PDL/Stats/Basic.pm 2026-04-22 +PDL::Transform::Color FAIL 2026-04-25 PGObject::Util::AsyncPool FAIL 1 0 1/1 subtests failed 2026-04-22 PGP::Finger FAIL 10 0 10/10 subtests failed 2026-04-21 +PGXN::Meta::Validator FAIL 1 0 28/1 subtests failed 2026-04-25 PHP::Functions::Mail FAIL 1 0 1/1 subtests failed 2026-04-21 +PHP::Functions::Password FAIL 1 0 11/1 subtests failed 2026-04-25 +PHP::ParseStr FAIL 1 0 1/1 subtests failed 2026-04-25 +PITA::Guest::Driver::Qemu FAIL Configure failed 2026-04-25 PLJava FAIL Configure failed 2026-04-22 +PMLTQ FAIL 104 99 5/104 subtests failed 2026-04-26 +PMLTQ::Command::printtrees FAIL 1 0 1/1 subtests failed 2026-04-26 +PMLTQ::Commands FAIL 17 1 16/17 subtests failed 2026-04-26 POE::Component::AI::MegaHAL FAIL 4 0 7/4 subtests failed 2026-04-21 +POE::Component::Algorithm::Evolutionary FAIL 1 0 9/1 subtests failed 2026-04-25 POE::Component::Archive::Any FAIL 7 0 16/7 subtests failed 2026-04-22 POE::Component::AssaultCube::ServerQuery FAIL 52 0 648/52 subtests failed 2026-04-22 +POE::Component::CD::Detect FAIL Missing: POE/0.pm 2026-04-26 POE::Component::Client::HTTP FAIL 9 8 1/9 subtests failed 2026-04-22 POE::Component::Client::Ident FAIL Unknown test outcome 2026-04-21 +POE::Component::Client::Keepalive FAIL 4 3 1/4 subtests failed 2026-04-25 POE::Component::Client::NNTP FAIL Unknown test outcome 2026-04-21 +POE::Component::Client::NSCA FAIL Unknown test outcome 2026-04-26 +POE::Component::Client::Pastebot FAIL 5 0 16/5 subtests failed 2026-04-25 +POE::Component::Client::Rcon FAIL Unknown test outcome 2026-04-25 POE::Component::Client::Whois::Smart::Data FAIL TIMEOUT (>300s) 2026-04-22 +POE::Component::Cron FAIL Missing: DateTime/Event/Cron.pm 2026-04-26 POE::Component::DirWatch FAIL 10 0 28/10 subtests failed 2026-04-22 -POE::Component::DirWatch::WithCaller FAIL 1 0 1/1 subtests failed 2026-04-22 +POE::Component::DirWatch::WithCaller FAIL 1 0 1/1 subtests failed 2026-04-26 +POE::Component::Enc::Flac FAIL 1 0 68/1 subtests failed 2026-04-25 POE::Component::IRC::Plugin::ImageMirror FAIL 1 0 4/1 subtests failed 2026-04-21 POE::Component::IRC::Plugin::MegaHAL FAIL 2 0 4/2 subtests failed 2026-04-21 POE::Component::IRC::Plugin::URI::Find FAIL Unknown test outcome 2026-04-21 POE::Component::IRC::Plugin::WWW::CPANRatings::RSS FAIL 5 3 2/5 subtests failed 2026-04-21 +POE::Component::IRC::Plugin::WWW::Weather::US FAIL 2026-04-25 POE::Component::Jabber FAIL 3 0 96/3 subtests failed 2026-04-21 POE::Component::NetSNMP::agent FAIL 1 0 1/1 subtests failed 2026-04-22 POE::Component::NonBlockingWrapper::Base FAIL 8 4 4/8 subtests failed 2026-04-21 @@ -1521,84 +2095,132 @@ POE::Component::Pool::Thread FAIL 1 0 108/1 subtests failed 2026-04-22 POE::Component::Resolver FAIL 7 2 5/7 subtests failed 2026-04-21 POE::Component::SSLify FAIL 4 1 3/4 subtests failed 2026-04-22 POE::Component::SSLify::NonBlock FAIL 3 2 1/3 subtests failed 2026-04-22 +POE::Component::Sequence FAIL 2 0 4/2 subtests failed 2026-04-25 +POE::Component::Server::Daytime FAIL Unknown test outcome 2026-04-26 POE::Component::Server::Echo FAIL Unknown test outcome 2026-04-22 +POE::Component::Server::HTTP FAIL 1 0 25/1 subtests failed 2026-04-25 POE::Component::Server::IRC::Pipeline FAIL TIMEOUT (>300s) 2026-04-22 POE::Component::Server::SOAP FAIL 3 1 2/3 subtests failed 2026-04-22 POE::Component::Server::SimpleHTTP FAIL 4 0 13/4 subtests failed 2026-04-21 POE::Component::Server::SimpleXMLRPC FAIL 4 3 1/4 subtests failed 2026-04-21 +POE::Component::Server::Time FAIL Unknown test outcome 2026-04-26 +POE::Component::SmokeBox::Uploads::Rsync FAIL 2 1 1/2 subtests failed 2026-04-26 +POE::Component::UserBase FAIL 7 5 2/7 subtests failed 2026-04-25 POE::Component::WWW::CPANRatings::RSS FAIL 5 4 1/5 subtests failed 2026-04-21 +POE::Component::WWW::Pastebin::Bot::Pastebot::Create FAIL 5 2 3/5 subtests failed 2026-04-25 POE::Declare::HTTP::Client FAIL Configure failed 2026-04-21 POE::Declare::Log::File FAIL Configure failed 2026-04-21 +POE::Filter::Regexp FAIL No parseable output 2026-04-26 +POE::Filter::SimpleXML FAIL 1 0 5/1 subtests failed 2026-04-26 POE::Filter::XML FAIL 4 1 3/4 subtests failed 2026-04-21 POE::Loop::Glib FAIL 2 1 1/2 subtests failed 2026-04-22 +POE::Loop::Kqueue FAIL 1 0 1/1 subtests failed 2026-04-25 POE::Quickie FAIL 1 0 1/1 subtests failed 2026-04-21 POE::Session::PlainCall FAIL 107 107 2026-04-21 +POE::Sugar::Args FAIL 2 1 1/2 subtests failed 2026-04-26 POE::Wheel::UDP FAIL 3 0 102/3 subtests failed 2026-04-22 -POEx::Role::PSGIServer FAIL Missing: MooseX/Declare.pm 2026-04-22 +POE::XUL::Application FAIL 113 70 43/113 subtests failed 2026-04-25 +POEx::Role::PSGIServer FAIL Missing: MooseX/Declare.pm 2026-04-26 +POEx::ZMQ FAIL 1 1 Missing: FFI/Raw.pm 2026-04-25 PONAPI::Document FAIL Unknown test outcome 2026-04-12 POSIX::getpeername FAIL Build failed 2026-04-22 -POSIX::strptime FAIL 2 0 7/2 subtests failed 2026-04-21 +POSIX::strptime FAIL 2 0 7/2 subtests failed 2026-04-25 PPI FAIL Unknown test outcome 2026-04-12 +PPI::HTML FAIL 16 15 1/16 subtests failed 2026-04-25 +PPI::Transform::PackageName FAIL 147 0 168/147 subtests failed 2026-04-26 PPI::XS::Tokenizer FAIL Unknown test outcome 2026-04-21 -PPIx::QuoteLike FAIL 221 220 1/221 subtests failed 2026-04-22 -PPIx::Regexp FAIL 2878 2872 6/2878 subtests failed 2026-04-22 +PPIx::QuoteLike FAIL 221 220 1/221 subtests failed 2026-04-26 +PPIx::Regexp FAIL 2878 2872 6/2878 subtests failed 2026-04-26 PPM FAIL No parseable output 2026-04-21 PPM::Make FAIL 18 9 9/18 subtests failed 2026-04-21 PPR FAIL 3 2 1/3 subtests failed 2026-04-21 +PRANG FAIL 58 30 28/58 subtests failed 2026-04-26 PSGI FAIL Unknown test outcome 2026-04-21 +Package FAIL Unknown test outcome 2026-04-25 Package::DeprecationManager FAIL 30 27 3/30 subtests failed 2026-04-21 Package::New FAIL 36 19 17/36 subtests failed 2026-04-21 Package::Util::Lite FAIL 8 2 6/8 subtests failed 2026-04-22 Package::Variant FAIL 2026-04-12 PadWalker FAIL 2026-04-12 Parallel::ForkManager FAIL 7 0 22/7 subtests failed 2026-04-21 +Parallel::Iterator FAIL Unknown test outcome 2026-04-26 Parallel::Prefork FAIL 5 0 21/5 subtests failed 2026-04-21 -Params::Classify FAIL 4747 4711 36/4747 subtests failed 2026-04-22 +Params::Classify FAIL 4747 4711 36/4747 subtests failed 2026-04-25 Params::Get FAIL Unknown test outcome 2026-04-21 Params::Validate FAIL Build failed 2026-04-12 +Params::Validate::Strict FAIL 1 0 2/1 subtests failed 2026-04-26 Parse::CPAN::Packages FAIL 3 0 3/3 subtests failed 2026-04-12 Parse::CPAN::Packages::Fast FAIL 16 14 2/16 subtests failed 2026-04-21 +Parse::CSV FAIL 101 100 1/101 subtests failed 2026-04-26 Parse::Debian::PackageDesc FAIL 46 43 3/46 subtests failed 2026-04-21 Parse::Method::Signatures FAIL 1 0 1/1 subtests failed 2026-04-21 +Pask FAIL 1 0 1/1 subtests failed 2026-04-25 +Passwd::Keyring::OSXKeychain FAIL Unknown test outcome 2026-04-26 +Passwd::Keyring::PWSafe3 FAIL 1 0 1/1 subtests failed 2026-04-26 Path::Iterator::Rule FAIL 89 89 2026-04-21 Path::Router FAIL 212 211 1/212 subtests failed 2026-04-22 Path::ScanINC FAIL 34 33 1/34 subtests failed 2026-04-22 PawsX::FakeImplementation::Instance FAIL TIMEOUT (>300s) 2026-04-21 PeekPoke FAIL 2026-04-21 +Pepper FAIL 6 0 8/6 subtests failed 2026-04-25 +Perl6::Attributes FAIL 8 1 7/8 subtests failed 2026-04-26 Perl6::Export::Attrs FAIL 2 0 2/2 subtests failed 2026-04-21 Perl6::Placeholders FAIL 2026-04-21 Perl6::Pod FAIL Missing: Regexp/Grammars.pm 2026-04-21 Perl6::Pugs::Config FAIL Configure failed 2026-04-21 Perl6::Rule::Parser FAIL 2026-04-22 -Perl::Critic FAIL Unknown test outcome 2026-04-22 +Perl::Critic FAIL Unknown test outcome 2026-04-26 +Perl::MinimumVersion FAIL 1 0 100/1 subtests failed 2026-04-26 +Perl::MinimumVersion::Fast FAIL 1 0 1/1 subtests failed 2026-04-26 Perl::PrereqScanner FAIL 269 143 126/269 subtests failed 2026-04-22 +Perl::Unsafe::Signals FAIL 2 0 6/2 subtests failed 2026-04-25 PerlBean FAIL Missing: Error.pm 2026-04-21 PerlFM FAIL 5 4 1/5 subtests failed 2026-04-22 PerlGSL::RootFinding::SingleDim FAIL Configure failed 2026-04-21 -PerlIO FAIL Build failed 2026-04-21 +PerlGuard::Agent::Monitors::DBI::DBILogger FAIL TIMEOUT (>300s) 2026-04-26 +PerlIO FAIL Build failed 2026-04-25 +PerlIO::bom FAIL Build failed 2026-04-25 PerlIO::eol FAIL 2 0 24/2 subtests failed 2026-04-12 +PerlIO::fse FAIL 1 0 1/1 subtests failed 2026-04-26 PerlIO::gzip FAIL 2026-04-21 PerlIO::http FAIL Build failed 2026-04-21 PerlIO::normalize FAIL 13 4 9/13 subtests failed 2026-04-22 +PerlIO::subfile FAIL 2026-04-25 PerlIO::utf8_strict FAIL 5816 2389 3427/5816 subtests failed 2026-04-12 PerlIO::via::EscStatus FAIL 4 0 48/4 subtests failed 2026-04-22 -PerlIO::via::SeqIO FAIL 2026-04-22 +PerlIO::via::SeqIO FAIL 2026-04-26 PerlIO::via::dynamic FAIL 3 0 5/3 subtests failed 2026-04-22 -PerlIO::via::gzip FAIL 10 9 1/10 subtests failed 2026-04-22 +PerlIO::via::gzip FAIL 10 9 1/10 subtests failed 2026-04-26 PerlIO::via::symlink FAIL Configure failed 2026-04-22 PerlIO::win32console FAIL 2026-04-21 +PerlPoint::Constants FAIL 6691 6677 14/6691 subtests failed 2026-04-26 +PerlPoint::Generator::XML FAIL Unknown test outcome 2026-04-26 +PerlPoint::Tags::CPPP FAIL TIMEOUT (>300s) 2026-04-25 +PerlPoint::Tags::HTML FAIL Configure failed 2026-04-26 +PerlX::Assert FAIL 2 1 1/2 subtests failed 2026-04-25 +Perlbal FAIL 12 11 1/12 subtests failed 2026-04-26 +PersistentPerl FAIL Configure failed 2026-04-25 Pg::PQ FAIL Configure failed 2026-04-12 Pg::hstore FAIL 1 0 67/1 subtests failed 2026-04-21 +PiFlash FAIL Configure failed 2026-04-25 +PidFile FAIL 1 0 1/1 subtests failed 2026-04-26 +Pinwheel FAIL 1680 707 973/1680 subtests failed 2026-04-25 Pipeline FAIL 55 26 29/55 subtests failed 2026-04-21 +Pithub FAIL 109 21 88/109 subtests failed 2026-04-25 Pithub::PullRequests FAIL 109 21 88/109 subtests failed 2026-04-22 PkgConfig FAIL Unknown test outcome 2026-04-12 +PkgForge::App::Buildd FAIL 19 0 35/19 subtests failed 2026-04-25 Plack::App::Path::Router FAIL 3 0 3/3 subtests failed 2026-04-22 +Plack::Middleware::Cache FAIL Unknown test outcome 2026-04-26 +Plack::Middleware::DBIx::DisconnectAll FAIL 9 8 1/9 subtests failed 2026-04-25 Plack::Middleware::Deflater FAIL 9 9 2026-04-22 Plack::Middleware::Session FAIL 423 423 2026-04-22 -Plack::Session FAIL 423 423 2026-04-22 +PlugAuth FAIL 15 0 26/15 subtests failed 2026-04-26 +PlugAuth::Lite FAIL 10 2 8/10 subtests failed 2026-04-26 Plugins FAIL 2026-04-22 Pod::Coverage FAIL Unknown test outcome 2026-04-12 Pod::Coverage::TrustPod FAIL 5 1 4/5 subtests failed 2026-04-12 +Pod::Elemental::Transformer::List FAIL 1 1 Missing: Moose.pm 2026-04-25 Pod::Eventual::Simple FAIL 1 0 4/1 subtests failed 2026-04-12 Pod::Find FAIL 25 24 1/25 subtests failed 2026-04-12 Pod::Markdown FAIL 356 345 11/356 subtests failed 2026-04-21 @@ -1606,12 +2228,17 @@ Pod::POM FAIL 134 124 10/134 subtests failed 2026-04-22 Pod::Spell FAIL 45 45 2026-04-12 Pod::WikiDoc FAIL 5 0 35/5 subtests failed 2026-04-22 Pod::WikiText FAIL 15 11 4/15 subtests failed 2026-04-22 +Podlite FAIL 1 0 1/1 subtests failed 2026-04-25 PostScript::Calendar FAIL 35 11 24/35 subtests failed 2026-04-21 PostScript::Graph::Bar FAIL Missing: PostScript/Graph/Paper.pm 2026-04-21 +PostgreSQL::PLPerl::Call FAIL 2 2 Missing: Test/PostgreSQL.pm 2026-04-25 Postgredis FAIL 1 0 1/1 subtests failed 2026-04-22 -Pquota FAIL Missing: MLDBM.pm 2026-04-22 -PrefixCompiler FAIL Configure failed 2026-04-21 +PowerDNS::Control::Server FAIL 5 4 1/5 subtests failed 2026-04-25 +Pquota FAIL Missing: MLDBM.pm 2026-04-26 +PrankCall FAIL 1 1 Missing: Test/Resub.pm 2026-04-25 +PrefixCompiler FAIL Configure failed 2026-04-25 Proc::CPUUsage FAIL 1 0 1/1 subtests failed 2026-04-22 +Proc::ChildError FAIL 7 6 1/7 subtests failed 2026-04-25 Proc::Daemon FAIL 1 0 38/1 subtests failed 2026-04-21 Proc::FastSpawn FAIL 2026-04-12 Proc::Guard FAIL 1 0 1/1 subtests failed 2026-04-12 @@ -1619,24 +2246,34 @@ Proc::Wait3 FAIL 2026-04-21 Progress::Any::Output::TermProgressBarColor FAIL 2026-04-21 Project2::Gantt FAIL 18 16 2/18 subtests failed 2026-04-22 Promise::Me FAIL 2 1 1/2 subtests failed 2026-04-22 +Promises FAIL Unknown test outcome 2026-04-25 +Prosody FAIL 1 0 1/1 subtests failed 2026-04-25 Protocol::WebSocket FAIL 671 660 11/671 subtests failed 2026-04-22 -QBit::Application::Model::DB::Users FAIL Unknown test outcome 2026-04-21 +PsionToGnomecard FAIL Unknown test outcome 2026-04-25 +Q::S::L FAIL 9 1 8/9 subtests failed 2026-04-25 +QBit::Application::Model::DB::Users FAIL Unknown test outcome 2026-04-25 QBit::Application::Model::DBManager FAIL Missing: Net/LibIDN.pm 2026-04-21 QBit::WebInterface::Test FAIL TIMEOUT (>300s) 2026-04-22 +QDBM_File FAIL 7 0 398/7 subtests failed 2026-04-25 QRCode::Encoder FAIL 5 4 1/5 subtests failed 2026-04-21 +Qstruct FAIL Configure failed 2026-04-26 QuickTermChart::QuickTermChart FAIL Unknown test outcome 2026-04-21 +R::Writer FAIL 6 0 28/6 subtests failed 2026-04-25 RDF::AllegroGraph FAIL 31 31 2026-04-22 RDF::AllegroGraph::Easy FAIL 31 31 2026-04-22 RDF::Helper::Properties FAIL 1 0 1/1 subtests failed 2026-04-22 -RDF::LinkedData FAIL 11 0 46/11 subtests failed 2026-04-22 +RDF::LinkedData FAIL 11 0 46/11 subtests failed 2026-04-26 RDF::NS FAIL 98 97 1/98 subtests failed 2026-04-22 +RDF::Notation3 FAIL 24 23 1/24 subtests failed 2026-04-26 RDF::Query FAIL 1 0 186/1 subtests failed 2026-04-21 RDF::Query::Functions::Buzzword::Util FAIL Configure failed 2026-04-22 RDF::RDB2RDF FAIL 2 0 16/2 subtests failed 2026-04-22 RDF::RDFa::Generator FAIL 3 0 3/3 subtests failed 2026-04-22 -RDF::RDFa::Parser FAIL Configure failed 2026-04-22 +RDF::RDFa::Parser FAIL Configure failed 2026-04-26 +RDF::Redland FAIL No parseable output 2026-04-26 RDF::Redland::DIG FAIL 3 2 1/3 subtests failed 2026-04-22 RDF::SIO::Utils FAIL 2026-04-22 +RDF::TriN3 FAIL Configure failed 2026-04-26 RDF::Trine::AllegroGraph FAIL 4 4 Syntax error 2026-04-22 RDF::Trine::Serializer::RDFa FAIL 1 0 1/1 subtests failed 2026-04-22 RDF::TrineX::Compatibility::Attean FAIL 17 0 17/17 subtests failed 2026-04-22 @@ -1647,61 +2284,100 @@ RDFStore::FindIndex FAIL TIMEOUT (>300s) 2026-04-22 REST::Client FAIL 2 2 2026-04-12 REST::Neo4p FAIL Unknown test outcome 2026-04-21 RHC FAIL 20 19 1/20 subtests failed 2026-04-21 -RPC::Any FAIL 13 0 10679/13 subtests failed 2026-04-22 +RPC::Any FAIL 13 0 10679/13 subtests failed 2026-04-26 RPC::Any::Interface::PSGI FAIL 1 0 1/1 subtests failed 2026-04-22 -RPC::XML FAIL 458 275 183/458 subtests failed 2026-04-21 +RPC::Serialized FAIL 328 173 155/328 subtests failed 2026-04-26 +RPC::XML FAIL 458 275 183/458 subtests failed 2026-04-25 RPC::XML::Parser::LibXML FAIL 2 0 31/2 subtests failed 2026-04-21 RPM2 FAIL Configure failed 2026-04-21 RPM2::LocalInstalled FAIL 1 0 1/1 subtests failed 2026-04-21 -RPM::Make FAIL Configure failed 2026-04-22 +RPM::Make FAIL Configure failed 2026-04-26 +RPM::Search FAIL No parseable output 2026-04-26 RPM::Specfile FAIL Unknown test outcome 2026-04-22 +RPM::VersionSort FAIL 2026-04-26 +RPi::ADC::MCP3008 FAIL 1 0 1/1 subtests failed 2026-04-25 +RRDTool::Creator FAIL 11 10 1/11 subtests failed 2026-04-25 RRDTool::OO FAIL Missing: RRDs.pm 2026-04-22 RRDTool::Rawish FAIL 6 6 Missing: Variable/Expand/AnyLevel.pm 2026-04-21 RT::Action::SendBounce FAIL Unknown test outcome 2026-04-21 RT::Action::SendEmail FAIL Unknown test outcome 2026-04-22 +RT::Atom FAIL 2 1 1/2 subtests failed 2026-04-25 RT::Authen::PAUSE FAIL Unknown test outcome 2026-04-22 RT::CustomFieldValues::AnnounceGroups FAIL Unknown test outcome 2026-04-21 +RT::Extension::BecomeUser FAIL Unknown test outcome 2026-04-25 +RT::Extension::CommentOnCreate FAIL Unknown test outcome 2026-04-25 RT::Extension::ConditionalCustomFields FAIL Unknown test outcome 2026-04-21 +RT::Extension::CreateByProblemType FAIL Unknown test outcome 2026-04-26 RT::Extension::DisableOtherTransaction FAIL Unknown test outcome 2026-04-22 RT::Extension::DynamicWebPath FAIL Unknown test outcome 2026-04-21 +RT::Extension::ExampleTheme FAIL Unknown test outcome 2026-04-25 RT::Extension::FollowUp FAIL 4 2 2/4 subtests failed 2026-04-21 RT::Extension::InlineHelp FAIL Unknown test outcome 2026-04-22 +RT::Extension::MandatorySubject FAIL Configure failed 2026-04-25 RT::Extension::QuickAssign FAIL Unknown test outcome 2026-04-22 RT::Extension::QuickReassign FAIL Unknown test outcome 2026-04-21 RT::Extension::ReplyWithMail FAIL Unknown test outcome 2026-04-22 +RT::Interface::Email::Filter::CheckMessageId FAIL Configure failed 2026-04-25 +RT::Interface::Email::Filter::SimpleGPGVerify FAIL Unknown test outcome 2026-04-26 RT::Journal FAIL Unknown test outcome 2026-04-22 RT::Search::Googleish_Overlay FAIL Configure failed 2026-04-21 RT::Todo FAIL Unknown test outcome 2026-04-21 RTPG FAIL Unknown test outcome 2026-04-22 RTx::TicketlistTransactions FAIL Unknown test outcome 2026-04-22 +Razor2::Client::Agent FAIL 113 93 20/113 subtests failed 2026-04-25 Readonly::Enum FAIL 2 0 2/2 subtests failed 2026-04-22 Readonly::Values::Months FAIL 1 0 3/1 subtests failed 2026-04-22 -Reddit FAIL 1 0 1/1 subtests failed 2026-04-22 -Redis FAIL 4 0 4/4 subtests failed 2026-04-22 +ReadonlyX FAIL 135 114 21/135 subtests failed 2026-04-26 +Reddit FAIL 1 0 1/1 subtests failed 2026-04-25 RedisDB FAIL 3 0 3/3 subtests failed 2026-04-21 RedisDB::Parser FAIL 12 11 1/12 subtests failed 2026-04-21 Refine FAIL 21 17 4/21 subtests failed 2026-04-22 Regexp::Common FAIL 3 3 2026-04-12 -Regexp::Grammars FAIL 1 0 15/1 subtests failed 2026-04-21 +Regexp::Grammars FAIL Unknown test outcome 2026-04-25 Regexp::Stringify FAIL 10 4 6/10 subtests failed 2026-04-22 +Reindeer FAIL 46 27 19/46 subtests failed 2026-04-25 +ReportBox FAIL Missing: Tk/Toplevel.pm 2026-04-26 +Resque FAIL 2 0 2/2 subtests failed 2026-04-26 Return::MultiLevel FAIL 1 0 8/1 subtests failed 2026-04-21 +Return::Set FAIL 1 0 1/1 subtests failed 2026-04-26 Return::Type FAIL 16 15 1/16 subtests failed 2026-04-22 +RogersMine::App FAIL Unknown test outcome 2026-04-26 Role::Basic FAIL 275 240 35/275 subtests failed 2026-04-22 Role::Declare::Should FAIL 2026-04-21 Role::Hooks FAIL Unknown test outcome 2026-04-21 -Role::REST::Client FAIL 11 0 26/11 subtests failed 2026-04-22 -Router::Boom FAIL 26 11 15/26 subtests failed 2026-04-22 -Router::Simple FAIL 1 0 1/1 subtests failed 2026-04-12 +Role::REST::Client FAIL 11 0 26/11 subtests failed 2026-04-25 +Rose::DB FAIL 28 0 779/28 subtests failed 2026-04-26 +Rose::DB::Object FAIL 83 0 13475/83 subtests failed 2026-04-26 +Rose::DBx::Object::MoreHelpers FAIL 1 0 8/1 subtests failed 2026-04-26 +Rose::DBx::TestDB FAIL 6 0 9/6 subtests failed 2026-04-26 +Router::Boom FAIL 26 11 15/26 subtests failed 2026-04-26 +Run FAIL 39 4 35/39 subtests failed 2026-04-26 +RxPerl FAIL 79 10 69/79 subtests failed 2026-04-26 +RxPerl::Mojo FAIL Missing: RxPerl/Base.pm 2026-04-26 SAVI FAIL 2026-04-22 -SDR::Radio::RTLSDR FAIL Unknown test outcome 2026-04-22 +SDR::Radio::RTLSDR FAIL Unknown test outcome 2026-04-25 SGI::FAM FAIL Missing: Test/Helper.pm 2026-04-12 +SIRTX::VM FAIL 6 0 6/6 subtests failed 2026-04-26 +SMS::Ringtone::RTTTL::Parser FAIL Unknown test outcome 2026-04-25 +SMS::Send::Adapter::Node::Red FAIL 5 4 1/5 subtests failed 2026-04-25 SMS::Send::CZ::Neogate FAIL 1 0 4/1 subtests failed 2026-04-21 +SMS::Send::Driver::WebService FAIL 21 0 115/21 subtests failed 2026-04-25 +SMS::Send::Fr::OVH FAIL Unknown test outcome 2026-04-26 SMS::Send::SMSDiscount FAIL Unknown test outcome 2026-04-21 SNMP FAIL Configure failed 2026-04-22 +SNMP::Agent FAIL 1 0 1/1 subtests failed 2026-04-25 +SNMP::BridgeQuery FAIL Missing: Net/SNMP.pm 2026-04-25 +SNMP::Map FAIL Unknown test outcome 2026-04-25 SNMP::Util FAIL Missing: SNMP.pm 2026-04-22 SOAP FAIL 2026-04-22 +SOAP::Lite FAIL 190 0 346/190 subtests failed 2026-04-26 SOAP::Transport::ActiveWorks::AutoInvoke::Client FAIL Unknown test outcome 2026-04-22 +SOAP::Transport::HTTP::Log4perl FAIL Unknown test outcome 2026-04-25 SOM FAIL No parseable output 2026-04-22 +SPOPS FAIL 421 382 39/421 subtests failed 2026-04-25 +SPOPSx::Tool::YAML FAIL 9 0 21/9 subtests failed 2026-04-25 +SPVM FAIL Unknown test outcome 2026-04-25 +SPVM::Cwd FAIL 2026-04-26 SPVM::Digest::SHA FAIL 2026-04-22 SPVM::Eg::Attributes FAIL TIMEOUT (>300s) 2026-04-22 SPVM::File::Copy FAIL 2026-04-22 @@ -1709,62 +2385,87 @@ SPVM::File::Find FAIL 2026-04-22 SPVM::File::Path FAIL 2026-04-22 SPVM::File::Temp FAIL 2026-04-22 SPVM::Getopt::Long FAIL 2026-04-22 +SPVM::Go FAIL 2026-04-25 SPVM::IO FAIL 2026-04-22 SPVM::IO::Handle::Interface FAIL TIMEOUT (>300s) 2026-04-22 SPVM::IO::Socket::SSL FAIL 2026-04-22 SPVM::JSON FAIL 2026-04-22 -SPVM::Net::SSLeay FAIL 2026-04-22 +SPVM::Net::SSLeay FAIL 2026-04-26 +SPVM::Resource::SocketUtil FAIL 2026-04-25 SPVM::Resource::Zlib FAIL 2026-04-22 SPVM::Resource::Zlib::V1_2_11 FAIL 2026-04-21 -SPVM::Time::Piece FAIL 2026-04-22 +SPVM::Time::Piece FAIL 2026-04-25 SQL::Abstract::More FAIL 165 162 3/165 subtests failed 2026-04-22 SQL::Beautify FAIL 46 41 5/46 subtests failed 2026-04-21 SQL::Interp FAIL 162 162 Missing: DBI/db.pm 2026-04-21 -SQL::Maker FAIL 83 82 1/83 subtests failed 2026-04-22 SQL::Maker::SQLType FAIL 2026-04-22 SQL::NamedPlaceholder FAIL Configure failed 2026-04-22 +SQL::Preproc FAIL 14 0 74/14 subtests failed 2026-04-26 SQL::SplitStatement FAIL 4 2 2/4 subtests failed 2026-04-21 SQL::Statement FAIL 2026-04-12 -SUPER FAIL 51 48 3/51 subtests failed 2026-04-21 +SQL::Statement::Hash FAIL No parseable output 2026-04-25 +SQL::Translator FAIL Unknown test outcome 2026-04-26 +SQL::YASP FAIL Missing: Tie/IxHash.pm 2026-04-25 +SQLite::Archive FAIL 2 0 5/2 subtests failed 2026-04-26 +SRS::EPP::Command FAIL 108 48 60/108 subtests failed 2026-04-26 +SRU FAIL 16 0 25/16 subtests failed 2026-04-26 +SSH::Batch FAIL 6 6 Syntax error 2026-04-26 +SUPER FAIL 51 48 3/51 subtests failed 2026-04-26 SVG::Estimate FAIL 9 2 7/9 subtests failed 2026-04-21 +SVG::GD FAIL 1 0 62/1 subtests failed 2026-04-26 +SVG::SVG2zinc FAIL 8 8 2026-04-25 +SVG::Timeline::Compact FAIL Missing: Moose.pm 2026-04-25 +SVN::Hooks FAIL Missing: Data/Util.pm 2026-04-26 +SVN::Look FAIL 1 0 1/1 subtests failed 2026-04-26 +SVN::Notify FAIL 31 0 910/31 subtests failed 2026-04-26 SWIFT::Factory::Tag::Tag15 FAIL Unknown test outcome 2026-04-22 SWIFT::Factory::Tag::Tag17 FAIL Unknown test outcome 2026-04-22 SWIFT::Factory::Tag::Tag30 FAIL Unknown test outcome 2026-04-12 SWIFT::Factory::Tag::Tag30T FAIL Unknown test outcome 2026-04-12 -SWISH::3 FAIL 19 0 912/19 subtests failed 2026-04-22 +SWISH::3 FAIL 19 0 912/19 subtests failed 2026-04-25 SWISH::Filter FAIL 6 0 19/6 subtests failed 2026-04-22 SWISH::Prog FAIL 26 0 179/26 subtests failed 2026-04-22 SWISH::Prog::KSx FAIL 11 0 99/11 subtests failed 2026-04-22 Safe FAIL Unknown test outcome 2026-04-22 Scalar::Readonly FAIL 2026-04-21 -Scalar::String FAIL 1059 1027 32/1059 subtests failed 2026-04-21 +Scalar::String FAIL 1059 1027 32/1059 subtests failed 2026-04-25 Scalar::Util FAIL 594 0 1478/594 subtests failed 2026-04-22 Scalar::Util::Numeric FAIL 10 0 66/10 subtests failed 2026-04-21 Scope::Context FAIL 1 0 100/1 subtests failed 2026-04-21 Scope::Upper FAIL 2026-04-21 Scriptalicious FAIL 17 0 34/17 subtests failed 2026-04-22 +Search::ContextGraph FAIL Missing: MLDBM.pm 2026-04-25 Search::Elasticsearch FAIL 4 4 Syntax error 2026-04-21 Search::GIN::Driver FAIL 9 1 8/9 subtests failed 2026-04-21 Search::Query::Dialect::KSx FAIL 1 0 76/1 subtests failed 2026-04-22 Search::QueryParser::SQL FAIL 37 0 80/37 subtests failed 2026-04-21 +Selenium::Remote::Commands FAIL 200 198 2/200 subtests failed 2026-04-26 SelfLoader FAIL 22 20 2/22 subtests failed 2026-04-21 +SemVer FAIL 1 0 1163/1 subtests failed 2026-04-25 +SemanticWeb::OAI::ORE FAIL 41 0 113/41 subtests failed 2026-04-26 Sentinel FAIL Configure failed 2026-04-22 Sereal FAIL Unknown test outcome 2026-04-21 -Server::Starter FAIL 4 0 113/4 subtests failed 2026-04-21 +Server::Starter FAIL 4 0 113/4 subtests failed 2026-04-25 +Seshat FAIL Unknown test outcome 2026-04-25 Session::Token FAIL Unknown test outcome 2026-04-12 Set::Crontab FAIL Unknown test outcome 2026-04-21 Set::DynamicGroups FAIL 2026-04-21 +Set::Light FAIL Unknown test outcome 2026-04-26 Set::Object FAIL Unknown test outcome 2026-04-12 Set::Scalar FAIL Unknown test outcome 2026-04-12 Shell::Perl FAIL 25 12 13/25 subtests failed 2026-04-12 +ShiftJIS::X0213::MapUTF FAIL 2026-04-25 Signal::Mask FAIL 2 0 18/2 subtests failed 2026-04-21 SignalWire::Agents FAIL 716 713 3/716 subtests failed 2026-04-22 Simple::SAX::Serializer FAIL 34 33 1/34 subtests failed 2026-04-12 SimpleCDB FAIL Unknown test outcome 2026-04-22 +SkypeAPI::Command FAIL TIMEOUT (>300s) 2026-04-25 Slurp FAIL 6 4 2/6 subtests failed 2026-04-21 -Smart::Args FAIL 1 0 1/1 subtests failed 2026-04-12 +Smart::Args FAIL 1 0 1/1 subtests failed 2026-04-25 Smart::Comments FAIL Unknown test outcome 2026-04-12 -Socket6 FAIL Configure failed 2026-04-22 +SmartMatch::Sugar FAIL 76 40 36/76 subtests failed 2026-04-25 +Socket6 FAIL Configure failed 2026-04-25 +Socket::Class FAIL 7 0 23/7 subtests failed 2026-04-26 SocketIO::Emitter FAIL 1 0 1/1 subtests failed 2026-04-22 SolarBeam FAIL 21 17 4/21 subtests failed 2026-04-22 Sort::ByExample FAIL 1 0 13/1 subtests failed 2026-04-22 @@ -1776,18 +2477,27 @@ SpamMonkey FAIL Missing: File/Path/Expand.pm 2026-04-12 Spiffy FAIL 168 148 20/168 subtests failed 2026-04-12 Spreadsheet::ParseExcel FAIL Unknown test outcome 2026-04-22 Spreadsheet::WriteExcel FAIL 1178 1068 110/1178 subtests failed 2026-04-22 +Spreadsheet::XLSX FAIL 23 17 6/23 subtests failed 2026-04-25 Starlet FAIL Unknown test outcome 2026-04-21 Starman FAIL 1 1 2026-04-22 Starwoman FAIL 1 1 2026-04-22 +Statistics::Basic FAIL 221 220 1/221 subtests failed 2026-04-25 Statistics::CaseResampling FAIL 2026-04-22 Storable::Improved FAIL 1150 254 896/1150 subtests failed 2026-04-21 +Storm FAIL Missing: Moose.pm 2026-04-25 +StormX::Query::DeleteWhere FAIL Missing: Storm/Object.pm 2026-04-25 String::CRC32 FAIL 2026-04-12 String::CamelCase FAIL 31 27 4/31 subtests failed 2026-04-12 String::Elide::Parts FAIL Configure failed 2026-04-21 +String::Replace FAIL Missing: Test/Subs.pm 2026-04-25 String::ToIdentifier::EN FAIL Unknown test outcome 2026-04-12 +String::TtyLength FAIL Missing: Unicode/EastAsianWidth.pm 2026-04-26 String::Wildcard::Bash FAIL 8 6 2/8 subtests failed 2026-04-22 Struct::Dumb FAIL Configure failed 2026-04-22 Struct::Match FAIL 5 5 2026-04-12 +Stump FAIL 2 1 1/2 subtests failed 2026-04-25 +StupidTree FAIL No parseable output 2026-04-25 +Su FAIL 220 201 19/220 subtests failed 2026-04-26 Sub::Attribute FAIL 2 0 50/2 subtests failed 2026-04-21 Sub::Chain FAIL Configure failed 2026-04-21 Sub::Chain::Group FAIL 2026-04-21 @@ -1800,148 +2510,238 @@ Sub::Prototype FAIL 1 0 4/1 subtests failed 2026-04-21 Sub::WhenBodied FAIL Build failed 2026-04-21 Sub::WrapPackages FAIL 4 0 112/4 subtests failed 2026-04-21 Switch FAIL Syntax error 2026-04-12 +Symbol::Util FAIL 307 290 17/307 subtests failed 2026-04-26 Syntax::Feature::Junction FAIL 9 0 380/9 subtests failed 2026-04-12 Syntax::Feature::Qs FAIL 2 1 1/2 subtests failed 2026-04-21 Syntax::Highlight::Perl::Improved FAIL Unknown test outcome 2026-04-12 Syringe FAIL 1 0 1/1 subtests failed 2026-04-22 Sys::Hostname::Long FAIL 1 0 1/1 subtests failed 2026-04-12 +Sys::SigAction FAIL Configure failed 2026-04-26 Sys::Syslog FAIL 112 0 289/112 subtests failed 2026-04-21 +SysTray FAIL 1 0 1/1 subtests failed 2026-04-26 SyslogScan::Daemon FAIL No parseable output 2026-04-22 SystemTray::Applet FAIL No parseable output 2026-04-12 +TAP::Base FAIL 1 0 194/1 subtests failed 2026-04-26 +TAP::DOM FAIL 7 0 20/7 subtests failed 2026-04-25 TAP::Formatter::EARL FAIL 4 0 4/4 subtests failed 2026-04-22 +TAP::Harness::Archive FAIL 29 0 61/29 subtests failed 2026-04-25 +TAP::Harness::Archive::MultipleHarnesses FAIL 23 16 7/23 subtests failed 2026-04-25 +TAP::Parser::Iterator::PherkinStream FAIL 357 355 2/357 subtests failed 2026-04-26 TDB_File FAIL 2026-04-22 +TM::View FAIL Missing: Class/Trait.pm 2026-04-26 +TOML FAIL 1 0 2/1 subtests failed 2026-04-25 +TOML::Parser FAIL 3 0 57/3 subtests failed 2026-04-25 TPath FAIL 65 0 362/65 subtests failed 2026-04-21 TSQL::SplitStatement FAIL 3 2 1/3 subtests failed 2026-04-22 +TVision FAIL 2026-04-25 +TableData::Locale::US::State FAIL No parseable output 2026-04-26 +Tailscale FAIL Unknown test outcome 2026-04-25 Taint::Util FAIL 1 0 95/1 subtests failed 2026-04-22 +Tangerine FAIL 100 0 233/100 subtests failed 2026-04-25 Tangram FAIL Configure failed 2026-04-21 -Tanker FAIL No parseable output 2026-04-22 +Tanker FAIL No parseable output 2026-04-26 +Tapir FAIL Missing: Moose.pm 2026-04-25 Task::Weaken FAIL 22 21 1/22 subtests failed 2026-04-12 -Template::Extract FAIL 21 9 12/21 subtests failed 2026-04-21 +Tatsumaki FAIL 1 1 Missing: Moose.pm 2026-04-26 +Template::Extract FAIL 21 9 12/21 subtests failed 2026-04-26 Template::Flute FAIL 1 0 1/1 subtests failed 2026-04-21 Template::Magic FAIL 5 0 51/5 subtests failed 2026-04-12 +Template::Plugin::Comma FAIL 6 0 22/6 subtests failed 2026-04-25 Template::Plugin::SimpleJson FAIL Unknown test outcome 2026-04-22 +Template::Toolkit::Simple FAIL 1 0 1/1 subtests failed 2026-04-25 Teng FAIL Unknown test outcome 2026-04-21 Term::Cap FAIL 2026-04-12 +Term::ProgressBar FAIL 16 0 119/16 subtests failed 2026-04-26 Term::ReadLine FAIL 15 12 3/15 subtests failed 2026-04-12 -Term::ReadLine::Gnu FAIL Configure failed 2026-04-21 +Term::ReadLine::Gnu FAIL Configure failed 2026-04-26 +Term::ReadPassword FAIL 2026-04-26 Term::Size FAIL 18 12 6/18 subtests failed 2026-04-12 Term::Size::Perl FAIL 18 16 2/18 subtests failed 2026-04-22 Term::Table FAIL 42 41 1/42 subtests failed 2026-04-22 Test2::Harness::Runner::Job::pgTAP FAIL Unknown test outcome 2026-04-22 +Test2::Tools::DOM FAIL 1 1 Missing: Mojo/DOM58.pm 2026-04-26 +Test2::Tools::xUnit FAIL Unknown test outcome 2026-04-26 +Test::Assert FAIL Missing: Exception/Base.pm 2026-04-26 Test::Auto FAIL 2026-04-21 Test::Base FAIL Unknown test outcome 2026-04-12 -Test::Base::Less FAIL 30 25 5/30 subtests failed 2026-04-21 +Test::Base::Less FAIL 30 25 5/30 subtests failed 2026-04-26 +Test::Block FAIL 26 22 4/26 subtests failed 2026-04-26 +Test::CGI::Multipart FAIL 4 3 1/4 subtests failed 2026-04-25 Test::Class FAIL 173 159 14/173 subtests failed 2026-04-12 Test::Class::Moose FAIL Unknown test outcome 2026-04-21 Test::Class::Most FAIL 2026-04-21 Test::CleanNamespaces FAIL 134 119 15/134 subtests failed 2026-04-12 -Test::Compile FAIL 79 66 13/79 subtests failed 2026-04-22 +Test::Command FAIL 118 104 14/118 subtests failed 2026-04-26 +Test::Compile FAIL 79 66 13/79 subtests failed 2026-04-26 Test::Compile::Internal FAIL 79 66 13/79 subtests failed 2026-04-22 Test::Consul FAIL 1 0 1/1 subtests failed 2026-04-22 Test::DBIC::ExpectedQueries FAIL 3 3 2026-04-22 Test::DBIx::Class FAIL 23 0 35/23 subtests failed 2026-04-12 Test::Database FAIL 105 88 17/105 subtests failed 2026-04-22 +Test::Database::Temp FAIL Missing: Const/Fast.pm 2026-04-26 +Test::DatabaseRow FAIL 320 319 1/320 subtests failed 2026-04-26 Test::Differences FAIL 49 45 4/49 subtests failed 2026-04-12 Test::Directory FAIL 50 27 23/50 subtests failed 2026-04-22 Test::Exit FAIL 1 0 10/1 subtests failed 2026-04-21 Test::FailWarnings FAIL 8 6 2/8 subtests failed 2026-04-12 -Test::Flatten FAIL 17 13 4/17 subtests failed 2026-04-21 +Test::Flatten FAIL 17 13 4/17 subtests failed 2026-04-26 Test::Fork FAIL 3 0 15/3 subtests failed 2026-04-22 +Test::Group FAIL 263 218 45/263 subtests failed 2026-04-26 +Test::HTML::Content FAIL 241 31 210/241 subtests failed 2026-04-26 +Test::HTTP::LocalServer FAIL 1 0 24/1 subtests failed 2026-04-26 Test::HTTP::Response FAIL 23 22 1/23 subtests failed 2026-04-22 Test::HTTP::Server FAIL 3 0 15/3 subtests failed 2026-04-21 Test::Helper FAIL Unknown test outcome 2026-04-12 +Test::Image::GD FAIL 6 0 9/6 subtests failed 2026-04-25 Test::Interface FAIL 1 0 1/1 subtests failed 2026-04-21 +Test::Internet FAIL 7 6 1/7 subtests failed 2026-04-26 +Test::JSON::Schema::Acceptance FAIL 1 1 2026-04-26 Test::LectroTest FAIL 311 285 26/311 subtests failed 2026-04-22 Test::LongString FAIL 38 32 6/38 subtests failed 2026-04-12 Test::Memory::Cycle FAIL 38 19 19/38 subtests failed 2026-04-12 +Test::MinimumVersion FAIL 1 0 10/1 subtests failed 2026-04-26 +Test::MinimumVersion::Fast FAIL 1 0 10/1 subtests failed 2026-04-26 Test::Mock::Apache2 FAIL 2026-04-21 +Test::Mock::Class FAIL Missing: Test/Unit/Lite.pm 2026-04-26 Test::Mock::ExternalCommand FAIL 1 0 1/1 subtests failed 2026-04-21 -Test::Mock::Guard FAIL 216 209 7/216 subtests failed 2026-04-21 +Test::Mock::Guard FAIL Unknown test outcome 2026-04-26 +Test::Mock::LWP FAIL 6 0 6/6 subtests failed 2026-04-25 Test::Mock::LWP::Conditional FAIL 2 1 1/2 subtests failed 2026-04-21 -Test::MockModule FAIL 2 1 1/2 subtests failed 2026-04-21 +Test::Mock::Redis FAIL 2 0 3/2 subtests failed 2026-04-25 +Test::MockModule FAIL 2 1 1/2 subtests failed 2026-04-26 Test::MockObject FAIL 103 0 136/103 subtests failed 2026-04-12 -Test::MockTime::HiRes FAIL 216 209 7/216 subtests failed 2026-04-22 -Test::Moose FAIL Configure failed 2026-04-21 +Test::MockTime::HiRes FAIL 216 209 7/216 subtests failed 2026-04-26 +Test::Mojibake FAIL 55 45 10/55 subtests failed 2026-04-26 +Test::Moose FAIL Configure failed 2026-04-26 Test::More FAIL 31 31 2026-04-22 +Test::Net::RabbitMQ FAIL 2 1 1/2 subtests failed 2026-04-25 Test::OpenTracing::Interface FAIL Configure failed 2026-04-21 +Test::PAUSE::Permissions FAIL 1 0 1/1 subtests failed 2026-04-26 Test::Pod::Coverage FAIL 9 0 20/9 subtests failed 2026-04-12 -Test::PostgreSQL FAIL 1 0 1/1 subtests failed 2026-04-22 +Test::Pod::Snippets FAIL 8 5 3/8 subtests failed 2026-04-26 +Test::PostgreSQL FAIL 1 0 1/1 subtests failed 2026-04-26 Test::RDF FAIL 1 0 1/1 subtests failed 2026-04-22 -Test::Refcount FAIL 21 15 6/21 subtests failed 2026-04-22 +Test::Refcount FAIL 21 15 6/21 subtests failed 2026-04-25 +Test::Resub FAIL 76 74 2/76 subtests failed 2026-04-25 +Test::Returns FAIL 1 0 1/1 subtests failed 2026-04-26 Test::Roo FAIL 9 1 8/9 subtests failed 2026-04-12 Test::Roo::DataDriven FAIL 11 11 2026-04-22 Test::Routine FAIL 3 1 2/3 subtests failed 2026-04-21 +Test::Run FAIL 41 0 77/41 subtests failed 2026-04-25 Test::Script FAIL Unknown test outcome 2026-04-21 +Test::SharedObject FAIL 1 0 11/1 subtests failed 2026-04-25 Test::Spelling FAIL 23 6 17/23 subtests failed 2026-04-12 +Test::Subs FAIL 2026-04-25 Test::TempDatabase FAIL 5 0 41/5 subtests failed 2026-04-22 Test::TempDir FAIL 7 1 6/7 subtests failed 2026-04-12 Test::Trap FAIL 5 0 5/5 subtests failed 2026-04-22 -Test::Type FAIL 2 1 1/2 subtests failed 2026-04-21 -Test::Unit::Lite FAIL 2026-04-22 +Test::Type FAIL 2 1 1/2 subtests failed 2026-04-26 +Test::TypeConstraints FAIL 1 0 1/1 subtests failed 2026-04-25 +Test::Unit::Lite FAIL 2026-04-26 +Test::Version FAIL 62 57 5/62 subtests failed 2026-04-25 Test::WWW::Mechanize FAIL 238 178 60/238 subtests failed 2026-04-21 +Test::WWW::Mechanize::Catalyst FAIL 1 0 50/1 subtests failed 2026-04-26 Test::Weaken FAIL 94 15 79/94 subtests failed 2026-04-22 -Test::XML FAIL 35 13 22/35 subtests failed 2026-04-22 +Test::XML FAIL 35 13 22/35 subtests failed 2026-04-26 Test::YAML FAIL 1 0 1/1 subtests failed 2026-04-12 +Test::mysqld FAIL 1 0 1/1 subtests failed 2026-04-25 +Test::utf8 FAIL 40 37 3/40 subtests failed 2026-04-26 Text::ANSI::Util FAIL Configure failed 2026-04-21 +Text::ASCIITable FAIL 111 109 2/111 subtests failed 2026-04-26 +Text::CSV::Encoded FAIL 255 241 14/255 subtests failed 2026-04-25 Text::Convert::PETSCII FAIL 3 0 121/3 subtests failed 2026-04-22 +Text::Demoroniser FAIL 1 0 9/1 subtests failed 2026-04-26 Text::FillIn FAIL Unknown test outcome 2026-04-12 Text::FormatTable FAIL Unknown test outcome 2026-04-12 -Text::Iconv FAIL Configure failed 2026-04-21 +Text::Iconv FAIL Configure failed 2026-04-26 Text::Levenshtein::XS FAIL 2 0 2/2 subtests failed 2026-04-22 +Text::LevenshteinXS FAIL 2026-04-25 Text::Markdown::Discount FAIL Build failed 2026-04-21 -Text::Markdown::Hoedown FAIL Build failed 2026-04-22 +Text::Markdown::Hoedown FAIL Build failed 2026-04-25 Text::MicroTemplate FAIL 79 77 2/79 subtests failed 2026-04-21 -Text::Table FAIL 9 0 166/9 subtests failed 2026-04-22 +Text::MicroTemplate::Extended FAIL 25 23 2/25 subtests failed 2026-04-25 +Text::Similarity FAIL 36 0 116/36 subtests failed 2026-04-25 +Text::Sprintf::Named FAIL 27 23 4/27 subtests failed 2026-04-25 +Text::Table::Tiny FAIL 1 0 29/1 subtests failed 2026-04-26 Text::Template FAIL 163 100 63/163 subtests failed 2026-04-12 Text::Tiki FAIL Unknown test outcome 2026-04-22 +Text::Trac FAIL 9 0 9/9 subtests failed 2026-04-26 +Text::VimColor FAIL 4 4 2026-04-25 Text::VisualWidth::PP FAIL 5 0 16/5 subtests failed 2026-04-21 Text::VisualWidth::UTF8 FAIL 3 0 15/3 subtests failed 2026-04-12 +Text::vCard FAIL 11 0 112/11 subtests failed 2026-04-26 TextDialog FAIL Missing: Tk.pm 2026-04-21 TheSchwartz FAIL Missing: Data/ObjectDriver/Errors.pm 2026-04-21 +TheSchwartz::JobScheduler FAIL 2 2 Missing: Const/Fast.pm 2026-04-26 Thrift FAIL 2026-04-21 +Thrift::Parser FAIL 47 40 7/47 subtests failed 2026-04-25 Throwable::SugarFactory FAIL Unknown test outcome 2026-04-21 +Tie::Cache FAIL Unknown test outcome 2026-04-25 Tie::EncryptedHash FAIL 1 0 67/1 subtests failed 2026-04-22 Tie::File FAIL 4725 4389 336/4725 subtests failed 2026-04-12 Tie::Hash::LRU FAIL 2 2 2026-04-21 -Tie::IxHash FAIL 29 27 2/29 subtests failed 2026-04-22 +Tie::IxHash FAIL 29 27 2/29 subtests failed 2026-04-26 Tie::RegexpHash FAIL 10 0 10/10 subtests failed 2026-04-21 +TieScalarTest FAIL 1063 380 683/1063 subtests failed 2026-04-25 Time::Crontab FAIL Unknown test outcome 2026-04-21 Time::Duration::Concise::Localize FAIL 42 39 3/42 subtests failed 2026-04-21 -Time::Format FAIL 214 0 319/214 subtests failed 2026-04-12 -Time::HiRes FAIL Configure failed 2026-04-22 +Time::Format FAIL 194 0 339/194 subtests failed 2026-04-25 +Time::HiRes FAIL Configure failed 2026-04-26 Time::Moment FAIL 36 1 35/36 subtests failed 2026-04-12 Time::Object FAIL 2026-04-12 Time::ParseDate FAIL 8 2 6/8 subtests failed 2026-04-12 Time::Warp FAIL 2026-04-21 Timer::Simple FAIL 49 49 2026-04-22 -Tk FAIL Configure failed 2026-04-12 +Tinderconfig FAIL No parseable output 2026-04-25 +TinyURL FAIL 8 6 2/8 subtests failed 2026-04-25 +Tk FAIL Configure failed 2026-04-26 +Tk::JPEG FAIL Configure failed 2026-04-25 Tk::WorldCanvas FAIL Missing: Tk.pm 2026-04-12 +TkUtil::Configure FAIL 2 1 1/2 subtests failed 2026-04-26 +Tkx FAIL 2026-04-26 Toader FAIL 1 0 1/1 subtests failed 2026-04-22 +Toto FAIL TIMEOUT (>300s) 2026-04-25 Tree::XPathEngine FAIL 158 157 1/158 subtests failed 2026-04-22 +Triceps FAIL No parseable output 2026-04-26 +TripleStore FAIL No parseable output 2026-04-26 Try::Tiny FAIL 97 94 3/97 subtests failed 2026-04-22 Tui FAIL No parseable output 2026-04-22 +Type::Tiny::XS FAIL 76 0 118/76 subtests failed 2026-04-26 +Types::Core FAIL 8 0 11/8 subtests failed 2026-04-25 +Types::Encodings FAIL 61 58 3/61 subtests failed 2026-04-26 Types::Interface FAIL 2026-04-21 Types::Serialiser FAIL Missing: common/sense.pm 2026-04-12 UAV::Pilot FAIL 39 0 43/39 subtests failed 2026-04-22 +UAV::Pilot::Wumpus::Server FAIL 12 0 26/12 subtests failed 2026-04-26 +UAV::Pilot::WumpusRover::Control FAIL 33 0 123/33 subtests failed 2026-04-26 UDT::Simple FAIL Unknown test outcome 2026-04-22 +UI::Various FAIL Configure failed 2026-04-26 +UID2::Client::XS FAIL Configure failed 2026-04-25 +UMLS::Association FAIL 31 30 1/31 subtests failed 2026-04-25 UNIVERSAL::can FAIL 59 56 3/59 subtests failed 2026-04-22 UNIVERSAL::isa FAIL 76 53 23/76 subtests failed 2026-04-12 -UNIVERSAL::ref FAIL 2026-04-22 +UNIVERSAL::ref FAIL 2026-04-26 UNIX::Cal FAIL Configure failed 2026-04-12 URI::Encode::XS FAIL 2026-04-22 URI::Escape::XS FAIL 5 4 1/5 subtests failed 2026-04-21 URI::Fast FAIL Unknown test outcome 2026-04-22 -URI::Find FAIL 619 617 2/619 subtests failed 2026-04-21 +URI::Find FAIL 619 617 2/619 subtests failed 2026-04-26 +URI::Find::Delimited FAIL 1 0 18/1 subtests failed 2026-04-26 URI::Query FAIL 93 91 2/93 subtests failed 2026-04-12 URI::Simple FAIL 20 18 2/20 subtests failed 2026-04-22 URI::Template::Restrict FAIL Configure failed 2026-04-12 +URI::XSEscape FAIL 1 0 1/1 subtests failed 2026-04-26 URI::nats FAIL Unknown test outcome 2026-04-22 URL::Transform FAIL 18 6 12/18 subtests failed 2026-04-22 URL::XS FAIL 3 1 2/3 subtests failed 2026-04-22 UUID::Generator::PurePerl FAIL Unknown test outcome 2026-04-21 +UniLog FAIL Missing: Unix/Syslog.pm 2026-04-25 Unicode::Collate FAIL 2026-04-21 -Unicode::EastAsianWidth FAIL Configure failed 2026-04-21 +Unicode::EastAsianWidth FAIL Configure failed 2026-04-26 +Unicode::Japanese FAIL Unknown test outcome 2026-04-26 Unicode::LineBreak FAIL 9 0 202/9 subtests failed 2026-04-12 +Unix::Syslog FAIL 2026-04-25 +Uptake FAIL Unknown test outcome 2026-04-25 User FAIL Unknown test outcome 2026-04-22 User::Identity FAIL 4 0 75/4 subtests failed 2026-04-22 Util::H2O FAIL 2 0 343/2 subtests failed 2026-04-22 @@ -1950,22 +2750,49 @@ VBTK FAIL 3 2 1/3 subtests failed 2026-04-21 VBTK::Actions::Page FAIL Configure failed 2026-04-22 VCS::CSync FAIL Configure failed 2026-04-22 VCS::LibCVS::Client::LoggingFileHandle FAIL Unknown test outcome 2026-04-22 +VCS::PVCS FAIL 10 10 2026-04-26 +VCS::Rcs::Parser FAIL 57 49 8/57 subtests failed 2026-04-25 VIC FAIL 49 32 17/49 subtests failed 2026-04-22 +VK::MP3 FAIL Unknown test outcome 2026-04-25 VM::CloudAtCost FAIL 1 0 1/1 subtests failed 2026-04-12 +VM::Virtuozzo FAIL 2 1 1/2 subtests failed 2026-04-25 +VMPS::Packet FAIL 3 2 1/3 subtests failed 2026-04-26 VMS::Time FAIL No parseable output 2026-04-22 VSGDR::SQLServer::DataType FAIL 18 17 1/18 subtests failed 2026-04-22 +VSGDR::TestScriptGen FAIL 3 2 1/3 subtests failed 2026-04-25 +Valiemon FAIL 3 0 3/3 subtests failed 2026-04-25 Variable::Expand::AnyLevel FAIL 1 0 1/1 subtests failed 2026-04-21 Variable::Magic FAIL 1 0 886/1 subtests failed 2026-04-21 Venus FAIL 13 12 1/13 subtests failed 2026-04-21 +VerilogGrammar FAIL Unknown test outcome 2026-04-26 +W3C::LogValidator FAIL 2026-04-26 +WAP::SAXDriver::wbxml FAIL Unknown test outcome 2026-04-26 +WAP::wbxml FAIL Unknown test outcome 2026-04-26 WJSON FAIL 1 0 1/1 subtests failed 2026-04-22 WKHTMLTOPDF FAIL 1 0 1/1 subtests failed 2026-04-22 +WSDL::Generator FAIL Missing: Class/Hook.pm 2026-04-25 +WSDL::XML::Generator FAIL 5 5 2026-04-25 +WWW::BashOrg FAIL 6 0 6/6 subtests failed 2026-04-25 WWW::Bleep FAIL No parseable output 2026-04-22 +WWW::Bookmark::Crawler FAIL 2026-04-26 +WWW::Bund FAIL 294 215 79/294 subtests failed 2026-04-25 +WWW::CBF FAIL 2 1 1/2 subtests failed 2026-04-25 WWW::Comic::Plugin FAIL 63 27 36/63 subtests failed 2026-04-22 WWW::Curl FAIL Configure failed 2026-04-21 WWW::Dilbert FAIL 19 7 12/19 subtests failed 2026-04-22 +WWW::DreamHost::API FAIL No parseable output 2026-04-25 +WWW::Fido FAIL 2026-04-26 +WWW::Github::Files FAIL 18 16 2/18 subtests failed 2026-04-25 WWW::Google::Cloud::Messaging FAIL 14 14 Missing: Test/Flatten.pm 2026-04-21 WWW::Google::Groups FAIL 2026-04-22 +WWW::Google::Places FAIL 10 8 2/10 subtests failed 2026-04-26 +WWW::Google::UserAgent FAIL 3 2 1/3 subtests failed 2026-04-26 +WWW::Hanako FAIL 2 0 3/2 subtests failed 2026-04-26 WWW::HostipInfo FAIL 23 20 3/23 subtests failed 2026-04-22 +WWW::KeenIO FAIL 1 0 1/1 subtests failed 2026-04-26 +WWW::LongURL FAIL 2 2 Missing: LWP/Online.pm 2026-04-25 +WWW::MSA::Hadith FAIL 2026-04-26 +WWW::Mailgun FAIL Missing: Test/MockModule.pm 2026-04-25 WWW::Mechanize FAIL Unknown test outcome 2026-04-12 WWW::Mechanize::AutoPager FAIL Configure failed 2026-04-22 WWW::Mechanize::Meta FAIL 10 3 7/10 subtests failed 2026-04-21 @@ -1973,96 +2800,209 @@ WWW::Metaweb FAIL Missing: common/sense.pm 2026-04-22 WWW::NicoVideo FAIL 4 2 2/4 subtests failed 2026-04-22 WWW::NicoVideo::Download FAIL 1 0 1/1 subtests failed 2026-04-22 WWW::Opentracker::Stats FAIL 93 86 7/93 subtests failed 2026-04-22 +WWW::Pastebin::PastebinCa::Retrieve FAIL 5 0 5/5 subtests failed 2026-04-25 WWW::Patent::Page FAIL 6 0 259/6 subtests failed 2026-04-22 +WWW::Postmark FAIL 1 0 1/1 subtests failed 2026-04-25 +WWW::RiotGames::LeagueOfLegends FAIL 2 0 2/2 subtests failed 2026-04-26 WWW::Salesforce FAIL 1 1 2026-04-22 -WWW::Salesforce::Report FAIL 5 3 2/5 subtests failed 2026-04-22 +WWW::Salesforce::Report FAIL 5 3 2/5 subtests failed 2026-04-25 WWW::Scraper::ISBN::TWCwbook_Driver FAIL 3 0 12/3 subtests failed 2026-04-21 +WWW::Scraper::ISBN::TWPchome_Driver FAIL 3 0 13/3 subtests failed 2026-04-26 +WWW::Scraper::ISBN::TWTenlong_Driver FAIL 3 0 13/3 subtests failed 2026-04-26 WWW::Scripter FAIL 5 0 76/5 subtests failed 2026-04-22 WWW::Search FAIL 31 21 10/31 subtests failed 2026-04-22 +WWW::Search::ISBNDB FAIL 4 0 4/4 subtests failed 2026-04-25 +WWW::Search::NCBI::PubMed FAIL 1 0 1/1 subtests failed 2026-04-25 +WWW::Search::PRWire FAIL Unknown test outcome 2026-04-26 WWW::Search::PharmGKB FAIL 2 1 1/2 subtests failed 2026-04-22 WWW::Search::PubChem FAIL 5 4 1/5 subtests failed 2026-04-22 +WWW::Shopify FAIL 2 0 2/2 subtests failed 2026-04-26 WWW::Shorten::ShadyURL FAIL 3 0 6/3 subtests failed 2026-04-21 WWW::SimpleRobot FAIL Unknown test outcome 2026-04-22 -WWW::VenusEnvy FAIL 23 7 16/23 subtests failed 2026-04-22 +WWW::SubDB FAIL 1 0 1/1 subtests failed 2026-04-25 +WWW::Tabela::Fipe FAIL 2 0 2/2 subtests failed 2026-04-26 +WWW::UsePerl::Server FAIL Unknown test outcome 2026-04-25 +WWW::Velib FAIL 86 82 4/86 subtests failed 2026-04-26 +WWW::VenusEnvy FAIL No parseable output 2026-04-26 +WWW::WuFoo FAIL 1 0 1/1 subtests failed 2026-04-25 +WWW::Yahoo::Groups FAIL 16 0 130/16 subtests failed 2026-04-26 Want FAIL 1 0 147/1 subtests failed 2026-04-12 Wanted FAIL 2 0 2/2 subtests failed 2026-04-21 WeakRef FAIL 2026-04-21 +Web::API FAIL Unknown test outcome 2026-04-26 Web::Machine FAIL Unknown test outcome 2026-04-22 -Web::Scraper FAIL 1 0 1/1 subtests failed 2026-04-22 +Web::Scraper FAIL 1 0 1/1 subtests failed 2026-04-26 +WebDyne::Chain FAIL 18 2 16/18 subtests failed 2026-04-25 +WebDyne::Template::VERSION FAIL 2 0 2/2 subtests failed 2026-04-25 +WebNano FAIL 53 31 22/53 subtests failed 2026-04-26 +WebNano::Controller::CRUD FAIL Missing: Moose.pm 2026-04-26 +WebNano::Renderer::TT FAIL Missing: WebNano/Controller.pm 2026-04-26 +WebService::AcousticBrainz FAIL 1 0 1/1 subtests failed 2026-04-25 +WebService::Amazon::Route53 FAIL 5 2 3/5 subtests failed 2026-04-26 WebService::Beeminder FAIL 1 0 1/1 subtests failed 2026-04-22 +WebService::Bloglines FAIL 1 0 1/1 subtests failed 2026-04-25 +WebService::BorisBikes FAIL 3 3 2026-04-25 WebService::Cath::FuncNet FAIL 10 7 3/10 subtests failed 2026-04-22 WebService::ChatWorkApi FAIL 14 4 10/14 subtests failed 2026-04-12 WebService::DataDog FAIL 16 5 11/16 subtests failed 2026-04-21 +WebService::GoogleHack FAIL No parseable output 2026-04-26 +WebService::HMRC FAIL 4 1 3/4 subtests failed 2026-04-26 +WebService::HMRC::HelloWorld FAIL 1 0 1/1 subtests failed 2026-04-26 WebService::Hatena::BookmarkCount FAIL 6 3 3/6 subtests failed 2026-04-22 +WebService::Heartrails::Express FAIL 1 0 1/1 subtests failed 2026-04-26 WebService::IMDBAPI FAIL 10 10 Missing: HTTP/Online.pm 2026-04-22 WebService::ImKayac::Simple FAIL 1 0 1/1 subtests failed 2026-04-22 WebService::Instapaper FAIL 1 0 1/1 subtests failed 2026-04-22 WebService::KoreanSpeller FAIL 1 0 1/1 subtests failed 2026-04-22 +WebService::MerriamWebster FAIL Missing: Moose.pm 2026-04-25 +WebService::MyGengo FAIL Missing: Moose.pm 2026-04-26 +WebService::NFSN FAIL 87 86 1/87 subtests failed 2026-04-25 WebService::Northern911 FAIL 1 0 1/1 subtests failed 2026-04-22 +WebService::PlayaEvents FAIL Unknown test outcome 2026-04-26 +WebService::Pushwoosh FAIL 1 0 1/1 subtests failed 2026-04-26 +WebService::Qiita::V2 FAIL 15 15 2026-04-25 WebService::Strike FAIL 1 0 13/1 subtests failed 2026-04-22 WebService::Technorati::BlogSubject FAIL TIMEOUT (>300s) 2026-04-22 WebService::UMLSKS::ConnectUMLS FAIL 1 0 1/1 subtests failed 2026-04-21 +WebService::Uptrack FAIL 2 0 7/2 subtests failed 2026-04-26 +WebService::UrbanAirship FAIL 13 0 25/13 subtests failed 2026-04-25 WebService::ValidSign FAIL 31 31 Missing: common/sense.pm 2026-04-22 WebService::Vichan FAIL 9 1 8/9 subtests failed 2026-04-22 +WebService::XING FAIL 23 16 7/23 subtests failed 2026-04-26 +Win32 FAIL Configure failed 2026-04-26 Win32::App::which FAIL Configure failed 2026-04-22 Win32::Console FAIL Configure failed 2026-04-22 +Win32::CtrlGUI::Criteria::and FAIL TIMEOUT (>300s) 2026-04-25 +Win32::ExcelSimple FAIL Configure failed 2026-04-26 +Win32::Exchange FAIL Missing: Win32/OLE.pm 2026-04-25 +Win32::File FAIL Configure failed 2026-04-25 +Win32::File::VersionInfo FAIL Unknown test outcome 2026-04-26 Win32::FileNotify FAIL Configure failed 2026-04-22 Win32::GUI::HyperLink FAIL Configure failed 2026-04-12 -Win32::INET FAIL No parseable output 2026-04-22 +Win32::GUI::XMLBuilder FAIL 2026-04-25 +Win32::INET FAIL No parseable output 2026-04-26 +Win32::MCI::Basic FAIL No parseable output 2026-04-25 Win32::Monitoring::DLLInject FAIL 1 0 1/1 subtests failed 2026-04-22 Win32::Monitoring::Session FAIL 1 0 4/1 subtests failed 2026-04-22 Win32::MultiMedia::Joystick FAIL No parseable output 2026-04-22 Win32::ODBC FAIL Configure failed 2026-04-22 -Win32::OLE FAIL Configure failed 2026-04-22 +Win32::OLE FAIL Configure failed 2026-04-25 +Win32::Scsv FAIL 1 0 13/1 subtests failed 2026-04-25 +Win32::WebBrowser FAIL Configure failed 2026-04-26 +WiringPi::API FAIL 1 1 2026-04-25 WordList::ID::KBBI::ByClass::Noun FAIL No parseable output 2026-04-12 +WordNet::QueryData FAIL Configure failed 2026-04-25 +WordNet::get_wn_info FAIL 92 0 2021/92 subtests failed 2026-04-25 Wx::Perl::Imagick FAIL 2 1 1/2 subtests failed 2026-04-22 -X11::XRandR FAIL 21 19 2/21 subtests failed 2026-04-22 -XAO::Base FAIL Configure failed 2026-04-22 +X11::XEvent FAIL No parseable output 2026-04-26 +X11::XRandR FAIL 21 19 2/21 subtests failed 2026-04-25 +X500::DN FAIL 54 40 14/54 subtests failed 2026-04-25 +XAO::Base FAIL Unknown test outcome 2026-04-26 +XML::ASCX12::Catalogs FAIL TIMEOUT (>300s) 2026-04-26 XML::Assert FAIL 11 0 12/11 subtests failed 2026-04-22 -XML::Atom FAIL 114 0 164/114 subtests failed 2026-04-22 +XML::Atom FAIL 116 0 165/116 subtests failed 2026-04-26 +XML::Atom::Ext::Inline FAIL 2 1 1/2 subtests failed 2026-04-26 +XML::Atom::Ext::Media FAIL 1 0 1/1 subtests failed 2026-04-26 +XML::Atom::Feed FAIL 116 0 165/116 subtests failed 2026-04-26 XML::Atom::Stream FAIL 1 0 1/1 subtests failed 2026-04-22 +XML::Atom::Syndication FAIL Missing: XML/Elemental.pm 2026-04-26 +XML::AutoWriter FAIL 1 0 181/1 subtests failed 2026-04-26 +XML::Bare FAIL 10 0 10/10 subtests failed 2026-04-26 +XML::Catalog FAIL 5 2 3/5 subtests failed 2026-04-25 XML::CompactTree FAIL 9 0 189/9 subtests failed 2026-04-22 +XML::Compare FAIL 9 0 26/9 subtests failed 2026-04-26 +XML::Compile::C14N FAIL 8 6 2/8 subtests failed 2026-04-26 +XML::Compile::Licensed FAIL 2026-04-26 +XML::Compile::WSS FAIL 4 0 127/4 subtests failed 2026-04-26 +XML::Compile::WSS::KeyInfo FAIL 5 0 5/5 subtests failed 2026-04-26 XML::DT FAIL 3 0 46/3 subtests failed 2026-04-22 +XML::Declare FAIL 3 0 31/3 subtests failed 2026-04-26 +XML::Descent FAIL 3 0 17/3 subtests failed 2026-04-26 +XML::Element FAIL 4 0 9/4 subtests failed 2026-04-25 +XML::Elemental FAIL 47 15 32/47 subtests failed 2026-04-26 +XML::Enc FAIL 1 0 985/1 subtests failed 2026-04-26 +XML::Feed FAIL Unknown test outcome 2026-04-26 XML::FeedPP FAIL 1398 1394 4/1398 subtests failed 2026-04-22 XML::FeedPP::Plugin::AddMP3 FAIL 1 0 29/1 subtests failed 2026-04-22 +XML::Filter::BufferText FAIL 4 2 2/4 subtests failed 2026-04-26 XML::Flow FAIL 7 0 48/7 subtests failed 2026-04-21 XML::GDOME FAIL Missing: XML/GDOME.pm 2026-04-12 XML::GRDDL FAIL Configure failed 2026-04-22 -XML::Generator FAIL 149 131 18/149 subtests failed 2026-04-21 +XML::Generator FAIL 149 140 9/149 subtests failed 2026-04-26 +XML::Generator::vCard::RDF FAIL 18 12 6/18 subtests failed 2026-04-26 +XML::Grove FAIL 9 6 3/9 subtests failed 2026-04-26 +XML::Handler::Dtd2DocBook FAIL Unknown test outcome 2026-04-26 +XML::Handler::Dtd2Html FAIL Unknown test outcome 2026-04-26 XML::Handler::Trees FAIL Unknown test outcome 2026-04-22 +XML::Hash FAIL 2 0 4/2 subtests failed 2026-04-26 XML::Hash::LX FAIL 4 0 42/4 subtests failed 2026-04-21 +XML::IETF FAIL 1 0 1/1 subtests failed 2026-04-26 +XML::LibXML FAIL Configure failed 2026-04-26 +XML::LibXML::Augment FAIL 1 0 1/1 subtests failed 2026-04-26 +XML::LibXML::jQuery FAIL 3 1 2/3 subtests failed 2026-04-26 XML::Liberal FAIL 1 1 Missing: XML/LibXML.pm 2026-04-22 -XML::Parser::Wrapper FAIL 2 0 10/2 subtests failed 2026-04-12 +XML::NewsML FAIL 1 0 2/1 subtests failed 2026-04-26 +XML::OBEXFTP::FolderListing FAIL 152 142 10/152 subtests failed 2026-04-26 +XML::PP FAIL 6 0 6/6 subtests failed 2026-04-26 +XML::Parser::Lite FAIL 5 0 50/5 subtests failed 2026-04-26 +XML::Parser::Style::EasyTree FAIL 10 0 52/10 subtests failed 2026-04-25 +XML::Parser::Style::IxTree FAIL Unknown test outcome 2026-04-26 +XML::Parser::Wrapper FAIL 2 0 10/2 subtests failed 2026-04-26 XML::Quote FAIL 1 0 48/1 subtests failed 2026-04-21 -XML::RSS FAIL 441 402 39/441 subtests failed 2026-04-22 +XML::RSS FAIL 441 402 39/441 subtests failed 2026-04-26 +XML::RSS::LibXML FAIL 40 0 664/40 subtests failed 2026-04-26 +XML::RSS::Parser::Element FAIL TIMEOUT (>300s) 2026-04-26 +XML::RSS::Parser::Lite FAIL 2 0 4/2 subtests failed 2026-04-26 XML::RSS::PicLens FAIL 2 1 1/2 subtests failed 2026-04-22 +XML::RegExp FAIL Unknown test outcome 2026-04-26 +XML::Registry FAIL Unknown test outcome 2026-04-26 XML::SAX FAIL 109 105 4/109 subtests failed 2026-04-12 XML::SAX::Base FAIL Unknown test outcome 2026-04-12 -XML::SemanticDiff FAIL 47 45 2/47 subtests failed 2026-04-22 +XML::SRS FAIL 123 61 62/123 subtests failed 2026-04-26 +XML::Sablotron FAIL Configure failed 2026-04-26 +XML::SemanticDiff FAIL 47 45 2/47 subtests failed 2026-04-26 XML::Simple FAIL 503 502 1/503 subtests failed 2026-04-22 +XML::Smart FAIL 1 0 1/1 subtests failed 2026-04-26 XML::TMX FAIL 11 0 19/11 subtests failed 2026-04-22 XML::TMX::CWB FAIL 1 0 1/1 subtests failed 2026-04-22 XML::Table2XML FAIL No parseable output 2026-04-22 XML::TreePuller FAIL 1 0 57/1 subtests failed 2026-04-22 XML::Twig FAIL Unknown test outcome 2026-04-12 +XML::WBXML FAIL 3 0 27/3 subtests failed 2026-04-26 XML::Writer FAIL 273 267 6/273 subtests failed 2026-04-22 -XML::XSPF::Base FAIL TIMEOUT (>300s) 2026-04-22 -XS::Manifesto FAIL Unknown test outcome 2026-04-22 +XML::Writer::Namespaces FAIL TIMEOUT (>300s) 2026-04-26 +XML::XMetaL FAIL 45 0 95/45 subtests failed 2026-04-26 +XML::XSPF::Base FAIL TIMEOUT (>300s) 2026-04-26 +XML::XSS FAIL 13 0 14/13 subtests failed 2026-04-26 +XRD::Parser FAIL Configure failed 2026-04-26 +XRI FAIL 27 23 4/27 subtests failed 2026-04-26 +XS::Manifesto FAIL Unknown test outcome 2026-04-26 XS::Parse::Keyword::Builder FAIL Configure failed 2026-04-22 -XS::Parse::Sublike::Builder FAIL Configure failed 2026-04-22 -XS::libcatch FAIL Configure failed 2026-04-22 +XS::Parse::Sublike::Builder FAIL Configure failed 2026-04-26 +XS::libcares FAIL Configure failed 2026-04-26 +XS::libcatch FAIL Configure failed 2026-04-26 +XS::libuv FAIL Configure failed 2026-04-26 +XString FAIL 4 1 3/4 subtests failed 2026-04-26 +Xfce4 FAIL Configure failed 2026-04-26 +XiaoI FAIL 2026-04-26 YAML::Any FAIL 38 29 9/38 subtests failed 2026-04-12 YAML::Dump FAIL 35 27 8/35 subtests failed 2026-04-22 -YAML::PP FAIL 2595 2449 146/2595 subtests failed 2026-04-21 -YAML::Syck FAIL Configure failed 2026-04-22 +YAML::PP FAIL Unknown test outcome 2026-04-26 +YAML::Syck FAIL Configure failed 2026-04-26 YAML::Tiny FAIL 58 52 6/58 subtests failed 2026-04-12 YAML::XS FAIL 2 0 48/2 subtests failed 2026-04-12 +YAMLScript::FFI FAIL Missing: Alien/YAMLScript/ConfigData.pm 2026-04-26 YAMLScript::Function FAIL Configure failed 2026-04-22 +YAPE::Regex FAIL Unknown test outcome 2026-04-25 YN00 FAIL 2026-04-22 ZConf FAIL 9 6 3/9 subtests failed 2026-04-22 ZConf::Bookmarks FAIL 5 4 1/5 subtests failed 2026-04-22 +ZConf::DBI FAIL 5 4 1/5 subtests failed 2026-04-26 ZConf::GUI FAIL 5 4 1/5 subtests failed 2026-04-22 -ZConf::Runner FAIL 9 6 3/9 subtests failed 2026-04-22 +ZConf::Runner FAIL 9 6 3/9 subtests failed 2026-04-26 +ZMQ::Declare FAIL 1 0 1/1 subtests failed 2026-04-26 +ZOOM FAIL Configure failed 2026-04-26 +Zed FAIL Missing: Term/ReadPassword.pm 2026-04-26 Zydeco FAIL 2 0 3/2 subtests failed 2026-04-22 aliased FAIL 40 39 1/40 subtests failed 2026-04-21 autobox FAIL 2 0 670/2 subtests failed 2026-04-12 @@ -2071,14 +3011,17 @@ autobox::Transform FAIL 1 0 1/1 subtests failed 2026-04-22 autovivification FAIL 41 0 71/41 subtests failed 2026-04-12 bigint FAIL Unknown test outcome 2026-04-12 boolean FAIL 89 87 2/89 subtests failed 2026-04-12 -common::sense FAIL Missing: common/sense.pm 2026-04-22 +builtin::compat FAIL 2 2 2026-04-26 +common::sense FAIL Missing: common/sense.pm 2026-04-26 +constant::boolean FAIL 15 12 3/15 subtests failed 2026-04-26 lexical::underscore FAIL 7 6 1/7 subtests failed 2026-04-21 lib::abs FAIL 32 0 126/32 subtests failed 2026-04-21 lib::projectroot FAIL 22 15 7/22 subtests failed 2026-04-22 local::lib FAIL 245 132 113/245 subtests failed 2026-04-22 -mod_perl2 FAIL Configure failed 2026-04-21 +mod_perl FAIL Configure failed 2026-04-25 +mod_perl2 FAIL Configure failed 2026-04-26 namespace::autoclean FAIL 66 60 6/66 subtests failed 2026-04-21 -next::XS FAIL Configure failed 2026-04-22 +next::XS FAIL Configure failed 2026-04-26 routines FAIL 2026-04-21 sanity FAIL 22 9 13/22 subtests failed 2026-04-22 self FAIL Missing: B/Hooks/Parser.pm 2026-04-22 diff --git a/dev/cpan-reports/cpan-compatibility-pass.dat b/dev/cpan-reports/cpan-compatibility-pass.dat index 423d5bde0..d7ef0471c 100644 --- a/dev/cpan-reports/cpan-compatibility-pass.dat +++ b/dev/cpan-reports/cpan-compatibility-pass.dat @@ -1,16 +1,25 @@ AAAA::Crypt::DH PASS 2 2 2026-04-21 3f3336774 AAAA::Mail::SpamAssassin PASS 1 1 2026-04-21 3f3336774 AAAAAAAAA PASS 1 1 2026-04-21 3f3336774 +ABI PASS 15 15 2026-04-26 1d5def215 +ACL::Lite PASS 31 31 2026-04-25 1d5def215 +ACME::THEDANIEL::Utils PASS 7 7 2026-04-25 1d5def215 +AI::CRM114 PASS 2 2 2026-04-25 1d5def215 AI::Calibrate PASS 44 44 2026-04-21 3f3336774 AI::Chat PASS 7 7 2026-04-21 3f3336774 +AI::ConfusionMatrix PASS 19 19 2026-04-25 1d5def215 AI::NaiveBayes1 PASS 52 52 2026-04-22 e228c2529 +AI::NeuralNet::SOM::Hexa PASS 136 136 2026-04-25 1d5def215 AI::Perceptron PASS 18 18 2026-04-22 e228c2529 AI::Prolog PASS 460 460 2026-04-22 e228c2529 +AIX::LVM PASS 17 17 2026-04-26 1d5def215 API::CPanel PASS 61 61 2026-04-12 c1942aad0 +API::DirectAdmin PASS 34 34 2026-04-26 1d5def215 ARGV::ENV PASS 2 2 2026-04-22 e228c2529 +AWS::Signature::V2 PASS 2 2 2026-04-25 1d5def215 Algorithm::Diff PASS 1004 1004 2026-04-12 cc5efa220 Algorithm::Merge PASS 66 66 2026-04-21 73edc8aba -Algorithm::NaiveBayes PASS 23 23 2026-04-22 e228c2529 +Algorithm::NaiveBayes PASS 23 23 2026-04-26 1d5def215 Alien PASS 2 2 2026-04-21 3f3336774 Alien::Build::Plugin::Download::GitLab PASS 2 2 2026-04-12 cc5efa220 Alien::Build::Plugin::Probe::GnuWin32 PASS 5 5 2026-04-22 3f3336774 @@ -21,13 +30,19 @@ AnnoCPAN::Perldoc PASS 4 4 2026-04-21 73edc8aba Any::URI::Escape PASS 4 4 2026-04-21 3f3336774 AnyData2 PASS 21 21 2026-04-12 c1942aad0 AnyEvent::ConnPool PASS 41 41 2026-04-22 e228c2529 +AnyEvent::Ping::TCP PASS 1 1 2026-04-26 1d5def215 AnyEvent::Redis PASS 1 1 2026-04-21 73edc8aba AnyEvent::Semaphore PASS 2 2 2026-04-21 73edc8aba +AnyEvent::SerialPort PASS 9 9 2026-04-25 1d5def215 AnyMQ::AMQP PASS 1 1 2026-04-22 e228c2529 Apache2::AuthzNIS PASS 2 2 2026-04-12 c1942aad0 +ApacheLog::Compressor PASS 39 39 2026-04-26 1d5def215 App::Cache PASS 49 49 2026-04-21 73edc8aba +App::Cmd::Plugin::Prompt PASS 2 2 2026-04-26 1d5def215 +App::Prove::Plugin::Count PASS 17 17 2026-04-26 1d5def215 App::Rad PASS 180 180 2026-04-21 3f3336774 App::Spec PASS 79 79 2026-04-21 3f3336774 +Array::Compare PASS 37 37 2026-04-26 1d5def215 Array::Utils PASS 17 17 2026-04-12 cc5efa220 ArrayData::Lingua::Word::ID::KBBI::Proverb PASS 1 1 2026-04-21 73edc8aba ArrayData::WordList PASS 1 1 2026-04-22 e228c2529 @@ -37,31 +52,47 @@ ArrayDataRole::Spec::Basic PASS 8 8 2026-04-21 73edc8aba Asm::Z80::Table PASS 19641 19641 2026-04-12 c1942aad0 AsposeBarCodeCloud::ApiClient PASS 3 3 2026-04-12 c1942aad0 AsposeImagingCloud::ApiClient PASS 3 3 2026-04-12 c1942aad0 -AsposeStorageCloud::StorageApi PASS 3 3 2026-04-12 c1942aad0 +AsposeOcrCloud::ApiClient PASS 3 3 2026-04-25 1d5def215 +AsposePdfCloud::ApiClient PASS 3 3 2026-04-25 1d5def215 +AsposeStorageCloud::StorageApi PASS 3 3 2026-04-25 1d5def215 Asterisk PASS 71 71 2026-04-21 73edc8aba Astro::MoonPhase PASS 461 461 2026-04-21 73edc8aba Atheme PASS 1 1 2026-04-21 3f3336774 -AudioFile::Info PASS 14 14 2026-04-21 3f3336774 +AudioFile::Info PASS 14 14 2026-04-25 1d5def215 BBPerl PASS 93 93 2026-04-12 c1942aad0 BFD PASS 1 1 2026-04-21 3f3336774 +BankAccount PASS 14 14 2026-04-25 1d5def215 BenchmarkAnything::Storage::Search::Elasticsearch PASS 2 2 2026-04-21 3f3336774 +Best PASS 101 101 2026-04-26 1d5def215 +BigIP::GTM::ParseConfig PASS 1 1 2026-04-25 1d5def215 +BigIP::iControl PASS 5 5 2026-04-25 1d5def215 +Bijection PASS 5042 5042 2026-04-26 1d5def215 BitArray PASS 2 2 2026-04-12 c1942aad0 +BorderStyle::Test::Random PASS 2 2 2026-04-26 1d5def215 +BorderStyleRole::Spec::Basic PASS 9 9 2026-04-26 1d5def215 Brannigan PASS 272 272 2026-04-21 3f3336774 Builder PASS 31 31 2026-04-12 c1942aad0 +Bundler PASS 2 2 2026-04-25 1d5def215 Business::CreditCard PASS 11 11 2026-04-21 73edc8aba Business::ISBN::Data PASS 22 22 2026-04-22 e228c2529 C::Analyzer PASS 2 2 2026-04-21 73edc8aba C::Tokenize PASS 57 57 2026-04-21 3f3336774 C::Utility PASS 9 9 2026-04-21 3f3336774 +CA::AutoSys PASS 1 1 2026-04-25 1d5def215 CAD::Format::DWG::Version PASS 9 9 2026-04-21 3f3336774 +CAM::PDF PASS 215 215 2026-04-25 1d5def215 +CCCP::SQLiteWrap PASS 1 1 2026-04-26 1d5def215 +CDDB::File PASS 36 36 2026-04-26 1d5def215 CDR::Parser::SI3000 PASS 17 17 2026-04-12 c1942aad0 -CGI::Application PASS 190 190 2026-04-22 3f3336774 +CGI::Application PASS 190 190 2026-04-26 1d5def215 CGI::Application::Plugin::AbstractCallback PASS 2 2 2026-04-12 cc5efa220 +CGI::Application::Plugin::Config::Any PASS 9 9 2026-04-25 1d5def215 CGI::Application::Plugin::ConfigAuto PASS 12 12 2026-04-21 3f3336774 CGI::Application::Plugin::DebugScreen PASS 1 1 2026-04-21 3f3336774 CGI::Application::Plugin::DetectAjax PASS 4 4 2026-04-12 c1942aad0 CGI::Application::Plugin::FillInForm PASS 35 35 2026-04-21 3f3336774 -CGI::Application::Plugin::Forward PASS 50 50 2026-04-21 3f3336774 +CGI::Application::Plugin::Forward PASS 50 50 2026-04-26 1d5def215 +CGI::Application::Plugin::JSON PASS 22 22 2026-04-25 1d5def215 CGI::Application::Plugin::LogDispatch PASS 25 25 2026-04-21 3f3336774 CGI::Application::Plugin::MessageStack PASS 9 9 2026-04-12 c1942aad0 CGI::Application::Plugin::Redirect PASS 9 9 2026-04-21 3f3336774 @@ -73,6 +104,7 @@ CGI::FormBuilder::Source::Perl PASS 1 1 2026-04-12 c1942aad0 CGI::Scriptpaths PASS 18 18 2026-04-12 c1942aad0 CGI::Struct PASS 126 126 2026-04-12 c1942aad0 CGI::Untaint PASS 75 75 2026-04-21 73edc8aba +CGI::Untaint::ipaddress PASS 10 10 2026-04-25 1d5def215 CGI::okTemplate PASS 5 5 2026-04-21 3f3336774 CLI::LaTeX::Table PASS 1 1 2026-04-21 3f3336774 CLI::MetaUtil::Getopt::Long::Complete PASS 1 1 2026-04-22 e228c2529 @@ -80,19 +112,25 @@ COPS::Client PASS 1 1 2026-04-21 73edc8aba CORBA::Perl PASS 10 10 2026-04-21 73edc8aba CORBA::Python PASS 14 14 2026-04-12 c1942aad0 CORBA::XS PASS 7 7 2026-04-21 73edc8aba +CPAN::02Packages::Search PASS 1 1 2026-04-26 1d5def215 CPAN::AutoINC PASS 1 1 2026-04-21 73edc8aba +CPAN::Changes::Cwalitee PASS 4 4 2026-04-26 1d5def215 CPAN::DistnameInfo PASS 829 829 2026-04-12 c1942aad0 CPAN::Maker PASS 26 26 2026-04-21 73edc8aba CPAN::Meta::Prereqs::Filter PASS 3 3 2026-04-22 3f3336774 CPAN::Mini PASS 48 48 2026-04-12 c1942aad0 CPAN::Mini::FromList PASS 6 6 2026-04-22 3f3336774 +CPAN::Perl::Releases::MetaCPAN PASS 1 1 2026-04-26 1d5def215 CPAN::Releases::Latest PASS 9 9 2026-04-22 3f3336774 +CPAN::Static PASS 32 32 2026-04-26 1d5def215 CPAN::Tarball::Patch PASS 1 1 2026-04-12 c1942aad0 CPAN::Test::Dummy::MultiPkgVer PASS 1 1 2026-04-22 3f3336774 CPAN::Test::Dummy::Perl5::Build::DepeFails PASS 2 2 2026-04-12 c1942aad0 CPAN::Test::Dummy::Perl5::ExtUtilsMakeMaker PASS 1 1 2026-04-12 c1942aad0 +CPAN::Test::Dummy::Perl5::Make PASS 2 2 2026-04-26 1d5def215 CPAN::Test::Dummy::Perl5::Make::CircularPrereq PASS 3 3 2026-04-21 73edc8aba CPAN::Test::Dummy::Perl5::Make::OptionalPrereq PASS 2 2 2026-04-21 73edc8aba +CPAN::Test::Dummy::Perl5::Make::UnsatPrereq PASS 2 2 2026-04-26 1d5def215 CPAN::Test::Dummy::Perl5::StaticInstall PASS 1 1 2026-04-12 c1942aad0 CPAN::Test::Dummy::Perl5::VersionQV PASS 1 1 2026-04-12 c1942aad0 CPAN::Testers::Common::DBUtils PASS 4 4 2026-04-12 c1942aad0 @@ -105,78 +143,106 @@ CPU::Emulator::Memory::Banked PASS 91 91 2026-04-12 c1942aad0 CSS::Moonfall PASS 28 28 2026-04-22 3f3336774 CSS::SAC PASS 294 294 2026-04-22 3f3336774 CSS::Scopifier PASS 13 13 2026-04-21 73edc8aba +CSS::Squish PASS 15 15 2026-04-25 1d5def215 CSS::Tiny PASS 36 36 2026-04-12 c1942aad0 CSV::Examples PASS 1 1 2026-04-22 e228c2529 CSVAWK PASS 2 2 2026-04-12 c1942aad0 CWB::CQI PASS 4 4 2026-04-22 e228c2529 -Calendar::Simple PASS 83 83 2026-04-12 c1942aad0 +Calendar::Simple PASS 83 83 2026-04-25 1d5def215 Caller::Hide PASS 19 19 2026-04-21 73edc8aba Canary::Stability PASS 1 1 2026-04-12 cc5efa220 Canella PASS 1 1 2026-04-21 73edc8aba +Captcha::noCAPTCHA PASS 37 37 2026-04-26 1d5def215 Carp::POE PASS 2 2 2026-04-21 73edc8aba +CellBIS::Random PASS 7 7 2026-04-26 1d5def215 CellFunc PASS 1 1 2026-04-22 e228c2529 Class::Accessor::Array PASS 5 5 2026-04-22 3f3336774 Class::Accessor::Array::Glob PASS 3 3 2026-04-22 3f3336774 Class::Accessor::Chained PASS 8 8 2026-04-22 e228c2529 -Class::Accessor::Chained::Fast PASS 8 8 2026-04-22 e228c2529 +Class::Accessor::Chained::Fast PASS 8 8 2026-04-25 1d5def215 +Class::Accessor::Fast::Contained PASS 43 43 2026-04-26 1d5def215 Class::Accessor::Lite PASS 26 26 2026-04-21 73edc8aba -Class::Accessor::Lite::Lazy PASS 22 22 2026-04-22 e228c2529 +Class::Accessor::Lite::Lazy PASS 22 22 2026-04-25 1d5def215 +Class::Accessor::Named PASS 2 2 2026-04-25 1d5def215 Class::Accessor::Validated PASS 5 5 2026-04-21 73edc8aba Class::ArrayObjects PASS 8 8 2026-04-22 3f3336774 Class::AutoAccess PASS 5 5 2026-04-21 73edc8aba Class::Base PASS 47 47 2026-04-21 73edc8aba Class::C3::Componentised PASS 46 46 2026-04-21 73edc8aba +Class::Constructor PASS 101 101 2026-04-26 1d5def215 Class::DBI::AbstractSearch PASS 3 3 2026-04-21 73edc8aba Class::DBI::Loader PASS 21 21 2026-04-21 73edc8aba +Class::DBI::Pg PASS 6 6 2026-04-26 1d5def215 Class::Data::Accessor PASS 20 20 2026-04-21 73edc8aba Class::Data::Inheritable PASS 16 16 2026-04-21 73edc8aba Class::ErrorHandler PASS 10 10 2026-04-21 73edc8aba Class::ISA PASS 4 4 2026-04-21 73edc8aba Class::Inner PASS 13 13 2026-04-21 73edc8aba Class::Loader PASS 12 12 2026-04-22 3f3336774 +Class::Member PASS 49 49 2026-04-26 1d5def215 Class::ParamParser PASS 90 90 2026-04-21 73edc8aba Class::Singleton PASS 29 29 2026-04-21 73edc8aba Class::StrongSingleton PASS 26 26 2026-04-12 c1942aad0 Class::Trigger PASS 51 51 2026-04-21 73edc8aba Class::Utils PASS 22 22 2026-04-21 73edc8aba +ClassLoader PASS 5 5 2026-04-26 1d5def215 +ColorTheme::NoColor PASS 2 2 2026-04-26 1d5def215 +ColorTheme::Test::RandomANSI16BG PASS 10 10 2026-04-26 1d5def215 +ColorThemeBase::Base PASS 12 12 2026-04-26 1d5def215 +ColorThemeBase::Static::FromStructColors PASS 12 12 2026-04-26 1d5def215 +ColorThemeRole::ANSI PASS 2 2 2026-04-26 1d5def215 ColorThemeUtil::ANSI PASS 2 2 2026-04-22 3f3336774 Complete::Bash PASS 27 27 2026-04-22 e228c2529 Complete::Env PASS 4 4 2026-04-22 e228c2529 Complete::File PASS 14 14 2026-04-22 e228c2529 Complete::Fish PASS 3 3 2026-04-22 e228c2529 +Complete::Module PASS 14 14 2026-04-26 1d5def215 Complete::Path PASS 1 1 2026-04-22 e228c2529 Complete::Tcsh PASS 1 1 2026-04-22 e228c2529 Complete::Zsh PASS 1 1 2026-04-22 e228c2529 Config::Frontend PASS 136 136 2026-04-12 c1942aad0 +Config::General::Match PASS 269 269 2026-04-26 1d5def215 Config::INI::Serializer PASS 9 9 2026-04-21 3f3336774 Config::Settings PASS 20 20 2026-04-22 3f3336774 Config::ZOMG PASS 97 97 2026-04-22 3f3336774 +ConfigReader::Simple PASS 204 204 2026-04-26 1d5def215 ConstantCalculus::CircleConstant PASS 1 1 2026-04-22 3f3336774 Convert::Base64 PASS 1 1 2026-04-22 e228c2529 +Convert::NLS_DATE_FORMAT PASS 30 30 2026-04-26 1d5def215 Crypt::Random::Seed PASS 26 26 2026-04-12 c1942aad0 Crypt::Random::TESHA2 PASS 20 20 2026-04-12 c1942aad0 Crypt::SaltedHash PASS 10 10 2026-04-12 cc5efa220 Crypt::SysRandom PASS 4 4 2026-04-12 c1942aad0 +Cucumber::TagExpressions PASS 68 68 2026-04-26 1d5def215 +Cwalitee::Common PASS 1 1 2026-04-26 1d5def215 Cwd::Ext PASS 31 31 2026-04-12 c1942aad0 -Cwd::Guard PASS 6 6 2026-04-22 e228c2529 +Cwd::Guard PASS 6 6 2026-04-26 1d5def215 D64::Disk::Layout::Base PASS 23 23 2026-04-12 c1942aad0 DB::Tutorial::DBIx::Class::PT::BR PASS 1 1 2026-04-21 73edc8aba +DBD::AnyData2 PASS 1 1 2026-04-25 1d5def215 DBD::Multiplex PASS 1 1 2026-04-12 c1942aad0 DBD::WMI PASS 1 1 2026-04-22 3f3336774 +DBD::Wire10 PASS 3 3 2026-04-25 1d5def215 +DBIx::AnyDBD PASS 1 1 2026-04-26 1d5def215 DBIx::CSVDumper PASS 2 2 2026-04-22 3f3336774 DBIx::Class::HTMLWidget PASS 1 1 2026-04-22 e228c2529 DBIx::Class::InflateColumn::Geo PASS 3 3 2026-04-12 c1942aad0 DBIx::Class::InflateColumn::Time PASS 15 15 2026-04-21 73edc8aba +DBIx::Class::QueryLog PASS 43 43 2026-04-26 1d5def215 DBIx::Connect::Any PASS 1 1 2026-04-22 3f3336774 DBIx::Connect::FromConfig PASS 5 5 2026-04-12 c1942aad0 DBIx::Connect::MySQL PASS 1 1 2026-04-22 3f3336774 DBIx::DBSchema PASS 8 8 2026-04-22 3f3336774 DBIx::Introspector PASS 17 17 2026-04-22 3f3336774 +DBIx::MultiDB PASS 11 11 2026-04-26 1d5def215 DBIx::MyPassword PASS 13 13 2026-04-12 d833a1ecb DBIx::NamedQuery PASS 3 3 2026-04-22 3f3336774 +DBIx::ParseError::MySQL PASS 77 77 2026-04-25 1d5def215 +DBIx::TransactionManager::EndHook PASS 7 7 2026-04-25 1d5def215 DBIx::Wrapper::VerySimple PASS 20 20 2026-04-12 c1942aad0 DCE::Perl::RPC PASS 4 4 2026-04-12 c1942aad0 DD::Dummy PASS 2 2 2026-04-22 3f3336774 +DIME::Identifier PASS 1 1 2026-04-26 1d5def215 DNS::Record::Check PASS 5 5 2026-04-12 c1942aad0 DNS::WorldWideDns PASS 8 8 2026-04-12 c1942aad0 DNS::ZoneParse PASS 124 124 2026-04-22 3f3336774 @@ -185,33 +251,58 @@ Dancer2::Plugin::AppRole::Helper PASS 5 5 2026-04-22 e228c2529 Dancer2::Plugin::CSRF PASS 1 1 2026-04-22 3f3336774 Dancer2::Plugin::Showterm PASS 3 3 2026-04-22 e228c2529 Dancer2::Template::MojoTemplate PASS 1 1 2026-04-22 3f3336774 +Dancer::Plugin::Database::Core PASS 26 26 2026-04-26 1d5def215 DarkPAN::Utils PASS 2 2 2026-04-21 73edc8aba Data::Debug PASS 2 2 2026-04-21 73edc8aba Data::Define PASS 57 57 2026-04-21 73edc8aba Data::Float PASS 719 719 2026-04-22 3f3336774 +Data::Flow PASS 12 12 2026-04-25 1d5def215 +Data::FormValidator::Constraints::MethodsFactory PASS 35 35 2026-04-26 1d5def215 +Data::Format::Pretty::JSON PASS 4 4 2026-04-26 1d5def215 Data::MethodProxy PASS 10 10 2026-04-12 cc5efa220 Data::Monad PASS 71 71 2026-04-21 73edc8aba Data::Page::NoTotalEntries PASS 5 5 2026-04-21 3f3336774 +Data::Pairs PASS 179 179 2026-04-26 1d5def215 +Data::Phrasebook PASS 110 110 2026-04-26 1d5def215 Data::Properties::YAML PASS 10 10 2026-04-21 73edc8aba +Data::Sah::Normalize PASS 6 6 2026-04-25 1d5def215 +Data::Sah::Resolve PASS 4 4 2026-04-25 1d5def215 Data::Section::Simple PASS 8 8 2026-04-21 73edc8aba +Data::Table PASS 92 92 2026-04-26 1d5def215 +Data::Traverse PASS 5 5 2026-04-25 1d5def215 Data::Walk PASS 266 266 2026-04-12 c1942aad0 Date::DayOfWeek PASS 32 32 2026-04-22 e228c2529 +Date::Hijri PASS 3 3 2026-04-25 1d5def215 Date::Leapyear PASS 764 764 2026-04-22 e228c2529 Date::Tolkien::Shire::Data PASS 5558 5558 2026-04-12 c1942aad0 +DateStamp PASS 46 46 2026-04-25 1d5def215 +DateTime::Calendar::Hijri PASS 2010 2010 2026-04-25 1d5def215 +DateTime::Calendar::Pataphysical PASS 526 526 2026-04-25 1d5def215 DateTime::Calendar::TauStation PASS 69 69 2026-04-22 3f3336774 +DateTime::Duration::Fuzzy PASS 35 35 2026-04-25 1d5def215 DateTime::Duration::Patch::StringifyAsISO8601 PASS 1 1 2026-04-22 3f3336774 -DateTime::Format::DateParse PASS 261 261 2026-04-22 3f3336774 +DateTime::Format::DateParse PASS 261 261 2026-04-26 1d5def215 DateTime::Format::Duration::DurationString PASS 15 15 2026-04-22 3f3336774 +DateTime::Format::GeekTime PASS 17 17 2026-04-26 1d5def215 DateTime::Format::HTTP PASS 136 136 2026-04-21 73edc8aba -DateTime::Format::MySQL PASS 97 97 2026-04-22 e228c2529 -DateTime::Format::Pg PASS 216 216 2026-04-22 3f3336774 +DateTime::Format::Human PASS 50 50 2026-04-26 1d5def215 +DateTime::Format::ICal PASS 134 134 2026-04-25 1d5def215 +DateTime::Format::MySQL PASS 97 97 2026-04-26 1d5def215 +DateTime::Format::Oracle PASS 76 76 2026-04-26 1d5def215 +DateTime::Format::PayPal::IPN PASS 2 2 2026-04-25 1d5def215 +DateTime::Format::Pg PASS 216 216 2026-04-26 1d5def215 DateTime::Format::Roman PASS 23 23 2026-04-22 3f3336774 DateTime::Format::Strptime PASS 143 143 2026-04-12 cc5efa220 DateTime::Format::XSD PASS 2 2 2026-04-22 e228c2529 DateTime::Functions PASS 2 2 2026-04-12 c1942aad0 +DateTime::HiRes PASS 7 7 2026-04-26 1d5def215 +DateTime::Incomplete PASS 218 218 2026-04-25 1d5def215 DateTime::Moonpig PASS 22 22 2026-04-12 c1942aad0 +DateTime::Set PASS 959 959 2026-04-26 1d5def215 +DateTime::Span PASS 959 959 2026-04-26 1d5def215 DateTime::TimeZone::Alias PASS 2453 2453 2026-04-12 c1942aad0 DateTime::TimeZone::Catalog::Extend PASS 355 355 2026-04-12 c1942aad0 +DateTime::TimeZone::HPUX PASS 18 18 2026-04-25 1d5def215 DateTime::Tiny PASS 33 33 2026-04-22 3f3336774 DateTime::Util::DayOfWeek PASS 16 16 2026-04-22 e228c2529 DateTimeX::Format::Ago PASS 602 602 2026-04-12 c1942aad0 @@ -221,6 +312,8 @@ Defined::KV PASS 4 4 2026-04-22 e228c2529 Devel::Cover::Report::Coveralls PASS 9 9 2026-04-21 73edc8aba Devel::FindPerl PASS 2 2 2026-04-22 3f3336774 Devel::StrictMode PASS 4 4 2026-04-21 73edc8aba +Devel::TakeHashArgs PASS 17 17 2026-04-26 1d5def215 +Device::Onkyo PASS 17 17 2026-04-25 1d5def215 Device::ParallelPort PASS 35 35 2026-04-12 c1942aad0 Diamond PASS 1 1 2026-04-22 3f3336774 Digest::Adler32 PASS 10 10 2026-04-22 3f3336774 @@ -228,13 +321,16 @@ Digest::CRC PASS 32 32 2026-04-21 73edc8aba Dir::Watch PASS 5 5 2026-04-22 3f3336774 DublinCore::Element PASS 137 137 2026-04-12 c1942aad0 DynGig::Multiplex PASS 4 4 2026-04-12 c1942aad0 +DynGig::RCE PASS 7 7 2026-04-25 1d5def215 DynGig::Range PASS 10 10 2026-04-12 c1942aad0 DynGig::Range::Time PASS 6 6 2026-04-12 c1942aad0 DynGig::Schedule PASS 5 5 2026-04-22 3f3336774 DynGig::Util PASS 15 15 2026-04-12 c1942aad0 -DynaLoader::Functions PASS 1 1 2026-04-22 3f3336774 +DynaLoader::Functions PASS 1 1 2026-04-26 1d5def215 ESPPlus::Storage PASS 45 45 2026-04-12 c1942aad0 Eidolon PASS 126 126 2026-04-12 c1942aad0 +Encode::Detect::CJK PASS 11 11 2026-04-26 1d5def215 +Encode::StdIO PASS 1 1 2026-04-26 1d5def215 Env::ShellWords PASS 14 14 2026-04-22 3f3336774 Error::Pure::Output::Text PASS 41 41 2026-04-12 c1942aad0 Exception PASS 4 4 2026-04-12 cc5efa220 @@ -244,41 +340,60 @@ Exporter::Tidy PASS 44 44 2026-04-12 c1942aad0 ExtUtils::FindFunctions PASS 10 10 2026-04-21 73edc8aba ExtUtils::MakeMaker PASS 26 26 2026-04-22 e228c2529 ExtUtils::MakeMaker::CPANfile PASS 5 5 2026-04-12 c1942aad0 +ExtUtils::MakeMaker::META_MERGE::GitHub PASS 57 57 2026-04-25 1d5def215 FAST PASS 312 312 2026-04-12 c1942aad0 FASTAParse PASS 21 21 2026-04-22 3f3336774 +FASTAid PASS 11 11 2026-04-25 1d5def215 +FASTX::Reader PASS 444 444 2026-04-26 1d5def215 FCGI::Client PASS 1 1 2026-04-22 3f3336774 FSM::Basic PASS 53 53 2026-04-12 c1942aad0 FTN::Addr PASS 394 394 2026-04-21 73edc8aba FTN::Address PASS 24 24 2026-04-21 73edc8aba FTN::Msg PASS 1 1 2026-04-12 c1942aad0 +FTN::Outbound::Reference_file PASS 8 8 2026-04-26 1d5def215 File::Bidirectional PASS 511 511 2026-04-22 3f3336774 File::Fetch PASS 304 304 2026-04-12 c1942aad0 File::HomeDir PASS 90 90 2026-04-12 cc5efa220 +File::ReadBackwards PASS 171 171 2026-04-26 1d5def215 File::ShareDir::Dist PASS 19 19 2026-04-12 c1942aad0 +File::ShareDir::ProjectDistDir PASS 21 21 2026-04-26 1d5def215 File::ShareDir::Tiny PASS 35 35 2026-04-12 c1942aad0 File::Signature PASS 53 53 2026-04-22 3f3336774 File::Slurp::Tiny PASS 10 10 2026-04-22 e228c2529 File::Slurper PASS 8 8 2026-04-12 cc5efa220 File::Spec::Native PASS 9 9 2026-04-21 73edc8aba File::Tabular PASS 32 32 2026-04-22 3f3336774 -File::Type PASS 58 58 2026-04-22 3f3336774 +File::Type PASS 58 58 2026-04-25 1d5def215 File::Versions PASS 10 10 2026-04-21 3f3336774 +File::XDG PASS 9 9 2026-04-26 1d5def215 +Filesys::Cap PASS 1 1 2026-04-26 1d5def215 FrameMaker::FromHTML PASS 1 1 2026-04-21 73edc8aba +FreeBSD::Pkgs PASS 5 5 2026-04-25 1d5def215 +FreeBSD::Src PASS 5 5 2026-04-26 1d5def215 +FreeDesktop::Icons PASS 68 68 2026-04-26 1d5def215 GPS::OID PASS 21 21 2026-04-21 73edc8aba Geo::Constants PASS 14 14 2026-04-21 73edc8aba +Geo::Coordinates::Transform PASS 17 17 2026-04-26 1d5def215 +Geo::Coordinates::UTM PASS 8114 8114 2026-04-25 1d5def215 Geo::Ellipsoids PASS 49 49 2026-04-21 73edc8aba Geo::Forward PASS 2027 2027 2026-04-21 73edc8aba Geo::Functions PASS 2239 2239 2026-04-21 73edc8aba Geo::Inverse PASS 30 30 2026-04-21 73edc8aba +Geo::Postcode PASS 40 40 2026-04-25 1d5def215 Getopt::ArgvFile PASS 44 44 2026-04-22 3f3336774 Getopt::Complete PASS 18 18 2026-04-22 3f3336774 +Getopt::Easy PASS 14 14 2026-04-25 1d5def215 Getopt::Long::Complete PASS 3 3 2026-04-22 e228c2529 Getopt::Lucid PASS 397 397 2026-04-22 3f3336774 Getopt::Mixed PASS 26 26 2026-04-12 c1942aad0 +Gftracks PASS 60 60 2026-04-25 1d5def215 +Graphics::ColorNamesLite::WWW PASS 1 1 2026-04-26 1d5def215 Graphics::ColorUtils PASS 3708 3708 2026-04-22 3f3336774 HON::EC2::Snapshots::Monitoring PASS 9 9 2026-04-21 73edc8aba HTML::AA PASS 1 1 2026-04-21 73edc8aba HTML::Calendar::Monthly PASS 3 3 2026-04-21 73edc8aba +HTML::CruftText PASS 2 2 2026-04-26 1d5def215 +HTML::Detoxifier PASS 1 1 2026-04-26 1d5def215 HTML::EasyTags PASS 79 79 2026-04-21 73edc8aba HTML::Email::Obfuscate PASS 24 24 2026-04-22 3f3336774 HTML::Form PASS 223 223 2026-04-12 cc5efa220 @@ -288,16 +403,29 @@ HTML::FormWizard PASS 24 24 2026-04-21 73edc8aba HTML::FromArrayref PASS 16 16 2026-04-21 73edc8aba HTML::Menu::Hierarchical PASS 1 1 2026-04-22 3f3336774 HTML::Myasp PASS 1 1 2026-04-21 73edc8aba +HTML::Obliterate PASS 41 41 2026-04-26 1d5def215 +HTML::PageIndex PASS 1 1 2026-04-25 1d5def215 HTML::QuickTable PASS 8 8 2026-04-21 3f3336774 +HTML::SimpleParse PASS 23 23 2026-04-25 1d5def215 +HTML::Stream PASS 24 24 2026-04-25 1d5def215 HTML::StripScripts PASS 1894 1894 2026-04-22 3f3336774 HTML::SuperForm PASS 1 1 2026-04-21 3f3336774 HTML::TableContentParser PASS 42 42 2026-04-22 3f3336774 +HTML::TableExtractor PASS 5 5 2026-04-25 1d5def215 +HTML::TagCloud PASS 21 21 2026-04-26 1d5def215 +HTML::TagCloud::Extended PASS 70 70 2026-04-26 1d5def215 HTML::Template::Compiled::Plugin::HTML2 PASS 13 13 2026-04-22 3f3336774 +HTML::Template::Compiled::Plugin::InlineImage PASS 3 3 2026-04-25 1d5def215 HTML::Template::Compiled::Plugin::VBEscape PASS 7 7 2026-04-21 73edc8aba +HTML::Template::Dumper PASS 13 13 2026-04-26 1d5def215 HTML::Template::Filter::TT2 PASS 37 37 2026-04-21 73edc8aba +HTML::Tiny PASS 2299 2299 2026-04-26 1d5def215 HTML::Truncate PASS 129 129 2026-04-22 3f3336774 -HTTP::AcceptLanguage PASS 23 23 2026-04-21 3f3336774 +HTML::Widgets::Table PASS 1 1 2026-04-25 1d5def215 +HTTP::AcceptLanguage PASS 23 23 2026-04-25 1d5def215 HTTP::BrowserDetect PASS 2601 2601 2026-04-12 c1942aad0 +HTTP::BrowserDetect::isRobot PASS 17 17 2026-04-26 1d5def215 +HTTP::Engine::FirePHP PASS 1 1 2026-04-25 1d5def215 HTTP::Link::Parser PASS 1 1 2026-04-21 73edc8aba HTTP::Lite PASS 21 21 2026-04-22 3f3336774 HTTP::Negotiate PASS 5 5 2026-04-22 3f3336774 @@ -306,50 +434,79 @@ HTTP::Response::Stringable PASS 1 1 2026-04-22 3f3336774 HTTP::Retry PASS 5 5 2026-04-22 3f3336774 HTTP::Server::Simple::PSGI PASS 1 1 2026-04-12 c1942aad0 HTTP::Server::Simple::Static PASS 2 2 2026-04-21 3f3336774 +HTTP::ServerEvent PASS 40 40 2026-04-25 1d5def215 HTTP::Simple PASS 778 778 2026-04-22 3f3336774 HTTP::Throwable PASS 48 48 2026-04-22 3f3336774 HTTP::Tiny::Bandwidth PASS 1 1 2026-04-22 3f3336774 HTTP::Tiny::FileProtocol PASS 46 46 2026-04-22 3f3336774 HTTP::Tiny::Multipart PASS 29 29 2026-04-21 73edc8aba +HTTP::Tiny::Patch::SetUserAgent PASS 1 1 2026-04-25 1d5def215 HTTP::Tiny::Plugin::Delay PASS 1 1 2026-04-21 73edc8aba HTTP::Tinyish PASS 1 1 2026-04-22 3f3336774 HTTPD::Bench::ApacheBench PASS 46 46 2026-04-21 73edc8aba +HTTPD::Log::Filter PASS 25 25 2026-04-26 1d5def215 +Hash::Layout PASS 159 159 2026-04-26 1d5def215 +Hash::MD5 PASS 34 34 2026-04-25 1d5def215 Hash::MoreUtils PASS 66 66 2026-04-12 c1942aad0 +HashData::Array PASS 90 90 2026-04-25 1d5def215 HashData::Color::CMYK::JohnDecemberCom PASS 1 1 2026-04-21 73edc8aba +HashData::ColorCode::CMYK::ToutesLesCouleursCom PASS 12 12 2026-04-26 1d5def215 HashDataRole::Source::LinesInDATA PASS 90 90 2026-04-21 73edc8aba HashDataRole::Spec::Basic PASS 8 8 2026-04-21 73edc8aba +Hither PASS 2 2 2026-04-26 1d5def215 I18N::AcceptLanguage PASS 34 34 2026-04-22 e228c2529 I18NFool PASS 25 25 2026-04-22 3f3336774 +IBM::ThinkPad::ACPI::Extras PASS 1 1 2026-04-25 1d5def215 +IMDB::TitlePage::Extract PASS 1 1 2026-04-26 1d5def215 IO::BufferedSelect PASS 1 1 2026-04-22 3f3336774 -IO::File::AtomicChange PASS 26 26 2026-04-21 73edc8aba +IO::File::AtomicChange PASS 26 26 2026-04-26 1d5def215 IO::Handle::Util PASS 373 373 2026-04-22 3f3336774 IO::Null PASS 5 5 2026-04-21 73edc8aba +IO::Pipeline PASS 1 1 2026-04-26 1d5def215 IO::Prompt::Tiny PASS 5 5 2026-04-12 c1942aad0 +IO::React PASS 12 12 2026-04-25 1d5def215 IO::Scalar PASS 127 127 2026-04-12 cc5efa220 +IO::Socket::RedisPubSub PASS 2 2 2026-04-26 1d5def215 IO::Socket::SecureSocks PASS 2 2 2026-04-22 3f3336774 +IO::Socket::Timeout PASS 9 9 2026-04-26 1d5def215 IO::TieCombine PASS 7 7 2026-04-12 cc5efa220 IPC::Capture PASS 14 14 2026-04-21 73edc8aba +IPC::Open2::Simple PASS 4 4 2026-04-25 1d5def215 +IPC::Open3::Utils PASS 97 97 2026-04-26 1d5def215 +IPC::Run::SafeHandles PASS 6 6 2026-04-26 1d5def215 IPC::Signal PASS 7 7 2026-04-21 73edc8aba +IPTables::Parse PASS 1 1 2026-04-25 1d5def215 IPTables::Rule PASS 205 205 2026-04-21 73edc8aba Image::GIF::Encoder::PP PASS 2 2 2026-04-12 cc5efa220 Image::SVG::Path PASS 185 185 2026-04-21 73edc8aba InfluxDB::LineProtocol PASS 167 167 2026-04-22 3f3336774 InfoBrief PASS 2 2 2026-04-22 3f3336774 +Input::Validator PASS 247 247 2026-04-26 1d5def215 +JLogger PASS 12 12 2026-04-25 1d5def215 JSAN::Parse::FileDeps PASS 9 9 2026-04-22 3f3336774 JSAN::ServerSide PASS 13 13 2026-04-22 3f3336774 +JSON::Color PASS 6 6 2026-04-26 1d5def215 JSON::DJARE::Writer PASS 25 25 2026-04-22 3f3336774 JSON::Diffable PASS 2 2 2026-04-21 73edc8aba +JSON::Feed PASS 43 43 2026-04-25 1d5def215 +JSON::LINQ PASS 729 729 2026-04-26 1d5def215 +JSON::PP::Compat5006 PASS 2 2 2026-04-26 1d5def215 +JSON::Pointer PASS 63 63 2026-04-25 1d5def215 +JSON::Schema::Validate PASS 284 284 2026-04-26 1d5def215 JavaScript::Autocomplete::Backend PASS 10 10 2026-04-21 73edc8aba +JavaScript::MochiKit PASS 6 6 2026-04-25 1d5def215 JavaScript::Swell PASS 3 3 2026-04-21 73edc8aba JavaScript::Value::Escape PASS 4 4 2026-04-22 3f3336774 JavaScript::XRay PASS 19 19 2026-04-21 73edc8aba Jq PASS 1 1 2026-04-21 73edc8aba KIF::Bootloader PASS 1 1 2026-04-21 73edc8aba Kasago PASS 3 3 2026-04-21 73edc8aba -LCS PASS 219 219 2026-04-21 73edc8aba -LEOCHARRE::CLI PASS 22 22 2026-04-12 c1942aad0 -LEOCHARRE::DEBUG PASS 10 10 2026-04-21 3f3336774 +Kwargs PASS 7 7 2026-04-25 1d5def215 +LCS PASS 219 219 2026-04-25 1d5def215 +LEOCHARRE::CLI PASS 22 22 2026-04-25 1d5def215 +LEOCHARRE::DEBUG PASS 10 10 2026-04-26 1d5def215 LWP::UserAgent::Patch::Delay PASS 1 1 2026-04-22 3f3336774 +LWP::UserAgent::Plugin::Delay PASS 1 1 2026-04-26 1d5def215 Limper PASS 1 1 2026-04-22 e228c2529 Limper::Engine::PSGI PASS 9 9 2026-04-22 e228c2529 Limper::SendFile PASS 1 1 2026-04-22 e228c2529 @@ -360,86 +517,131 @@ Lingua::EN::Inflect::Number PASS 21 21 2026-04-12 c1942aad0 Lingua::EN::Number::IsOrdinal PASS 20 20 2026-04-12 c1942aad0 Lingua::EN::Words2Nums PASS 66 66 2026-04-12 c1942aad0 Lingua::GL::Stemmer PASS 12 12 2026-04-12 c1942aad0 +Lingua::Han::Utils PASS 11 11 2026-04-26 1d5def215 +Lingua::Identify::Any PASS 1 1 2026-04-26 1d5def215 Lingua::PT::Abbrev PASS 7 7 2026-04-22 3f3336774 -Lingua::Stem PASS 7 7 2026-04-22 e228c2529 +Lingua::Stem PASS 7 7 2026-04-26 1d5def215 Lingua::Stem::Fr PASS 16 16 2026-04-12 c1942aad0 Lingua::Stem::It PASS 98 98 2026-04-12 c1942aad0 -Lingua::Stem::Snowball::No PASS 20633 20633 2026-04-22 e228c2529 -Lingua::Stem::Snowball::Se PASS 30628 30628 2026-04-22 e228c2529 +Lingua::Stem::Snowball::No PASS 20633 20633 2026-04-26 1d5def215 +Lingua::Stem::Snowball::Se PASS 30628 30628 2026-04-26 1d5def215 Lingua::StopWords PASS 85 85 2026-04-22 3f3336774 Linux::usermod PASS 10 10 2026-04-12 c1942aad0 List::Categorize PASS 20 20 2026-04-22 3f3336774 -Locale::SubCountry PASS 15 15 2026-04-21 73edc8aba +List::Cycle PASS 33 33 2026-04-25 1d5def215 +List::Uniq PASS 37 37 2026-04-26 1d5def215 +Locale::SubCountry PASS 15 15 2026-04-25 1d5def215 Log::Any::Adapter::Callback PASS 2 2 2026-04-21 3f3336774 +Log::Any::Adapter::Screen PASS 1 1 2026-04-25 1d5def215 Log::Any::Plugin::Format PASS 4 4 2026-04-22 3f3336774 Log::Any::Plugin::History PASS 9 9 2026-04-22 3f3336774 +Log::Log4perl::Appender::TAP PASS 5 5 2026-04-26 1d5def215 Log::Message PASS 40 40 2026-04-22 3f3336774 Log::Message::Simple PASS 97 97 2026-04-22 3f3336774 -Log::Minimal PASS 53 53 2026-04-21 73edc8aba +Log::Minimal PASS 53 53 2026-04-26 1d5def215 Log::ger::Level::trace PASS 8 8 2026-04-21 73edc8aba MARC::Parser::RAW PASS 19 19 2026-04-22 3f3336774 METS::Parse::Simple PASS 5 5 2026-04-22 3f3336774 +MIME::Lite::TT PASS 1 1 2026-04-25 1d5def215 MMS::Mail::Message PASS 32 32 2026-04-22 3f3336774 MMS::Mail::Message::Parsed PASS 29 29 2026-04-22 3f3336774 MMS::Mail::Provider PASS 2 2 2026-04-22 3f3336774 +MMS::Mail::Provider::UKVirgin PASS 5 5 2026-04-26 1d5def215 MP3::M3U::Parser PASS 27 27 2026-04-22 3f3336774 +MT::Import::Base PASS 1 1 2026-04-26 1d5def215 Math::Cartesian::Product PASS 88 88 2026-04-21 73edc8aba Math::Combinatorics PASS 25 25 2026-04-21 73edc8aba Math::Currency PASS 185 185 2026-04-21 73edc8aba +Math::Fibonacci::Phi PASS 1 1 2026-04-25 1d5def215 Math::ReedSolomon::Encoder PASS 9 9 2026-04-21 73edc8aba Math::Round PASS 10 10 2026-04-22 3f3336774 Math::Round::Var PASS 10 10 2026-04-12 c1942aad0 +Math::SparseMatrix PASS 45 45 2026-04-26 1d5def215 +Math::String PASS 667 667 2026-04-25 1d5def215 +Math::Vector::Similarity PASS 27 27 2026-04-26 1d5def215 +MathML::Entities PASS 12 12 2026-04-26 1d5def215 +MealMaster PASS 85 85 2026-04-25 1d5def215 +MediaWiki::Bot::Plugin::Steward PASS 6 6 2026-04-26 1d5def215 +Merror PASS 8 8 2026-04-26 1d5def215 Method::WeakCallback PASS 13 13 2026-04-12 c1942aad0 +Mew PASS 44 44 2026-04-25 1d5def215 ModPerl::VersionUtil PASS 25 25 2026-04-21 73edc8aba -Module::Build::Pluggable PASS 4 4 2026-04-22 3f3336774 +Module::Build::FFI PASS 5 5 2026-04-26 1d5def215 +Module::Build::Pluggable PASS 4 4 2026-04-25 1d5def215 Module::Build::Pluggable::CPANfile PASS 1 1 2026-04-22 3f3336774 -Module::Build::Prereqs::FromCPANfile PASS 11 11 2026-04-22 3f3336774 +Module::Build::Pluggable::PPPort PASS 1 1 2026-04-25 1d5def215 +Module::Build::Prereqs::FromCPANfile PASS 11 11 2026-04-26 1d5def215 Module::Build::WithXSpp PASS 1 1 2026-04-12 c1942aad0 Module::Depends PASS 20 20 2026-04-22 e228c2529 +Module::Optional PASS 19 19 2026-04-26 1d5def215 Module::Pluggable::Fast PASS 6 6 2026-04-12 cc5efa220 -MooX::ChainedAttributes PASS 9 9 2026-04-21 73edc8aba +MooX PASS 9 9 2026-04-25 1d5def215 +MooX::ChainedAttributes PASS 9 9 2026-04-25 1d5def215 +MooX::Role::SEOTags PASS 21 21 2026-04-26 1d5def215 +MooX::SetOnce PASS 24 24 2026-04-26 1d5def215 +MooX::ShortHas PASS 18 18 2026-04-25 1d5def215 MooX::Should PASS 10 10 2026-04-21 73edc8aba -MooX::Singleton PASS 139 139 2026-04-22 3f3336774 +MooX::Singleton PASS 139 139 2026-04-26 1d5def215 MooX::StrictConstructor PASS 23 23 2026-04-21 73edc8aba MooX::Thunking PASS 16 16 2026-04-22 3f3336774 +MooX::TypeTiny PASS 43 43 2026-04-26 1d5def215 MooX::Types::MooseLike PASS 169 169 2026-04-22 3f3336774 MooX::Types::MooseLike::Base PASS 169 169 2026-04-12 c1942aad0 +MooX::Types::MooseLike::DateTime PASS 7 7 2026-04-25 1d5def215 MooX::Types::MooseLike::Numeric PASS 43 43 2026-04-12 c1942aad0 MooseX::ConstructInstance PASS 13 13 2026-04-22 3f3336774 MooseX::Log::Log4perl PASS 30 30 2026-04-21 73edc8aba +MooseX::Role::Logger PASS 7 7 2026-04-26 1d5def215 +Morale PASS 1 1 2026-04-26 1d5def215 +MozRepl::RemoteObject PASS 1 1 2026-04-26 1d5def215 Mozilla::CA PASS 2 2 2026-04-12 c1942aad0 +Mu PASS 14 14 2026-04-25 1d5def215 Mutex PASS 8 8 2026-04-22 e228c2529 MyDB::Schema PASS 129 129 2026-04-22 3f3336774 MyDemoServer PASS 2 2 2026-04-21 73edc8aba +MyPassword PASS 107 107 2026-04-25 1d5def215 +MySQL::Backup PASS 1 1 2026-04-26 1d5def215 MySQL::Config PASS 82 82 2026-04-21 73edc8aba NOTEDB PASS 3 3 2026-04-21 73edc8aba Neo4j::Error PASS 28 28 2026-04-21 73edc8aba Neo4j::Types PASS 124 124 2026-04-21 73edc8aba Net::Amazon::Signature::V4 PASS 126 126 2026-04-21 73edc8aba +Net::CIDR PASS 6 6 2026-04-26 1d5def215 Net::CIDR::Lite PASS 54 54 2026-04-12 c1942aad0 Net::CIDR::Set PASS 219 219 2026-04-12 c1942aad0 +Net::DNS::Paranoid PASS 13 13 2026-04-26 1d5def215 Net::DNS::RR::SRV::Helper PASS 5 5 2026-04-22 3f3336774 Net::FastCGI PASS 408 408 2026-04-21 73edc8aba Net::GPSD::Satellite PASS 53 53 2026-04-21 73edc8aba Net::IP PASS 36069 36069 2026-04-21 3f3336774 +Net::IP::Route::Reject PASS 2 2 2026-04-26 1d5def215 Net::LDAP::Makepath PASS 5 5 2026-04-22 3f3336774 +Net::MAC PASS 964 964 2026-04-26 1d5def215 Net::OpenSSH PASS 19 19 2026-04-21 73edc8aba Net::SOCKS PASS 1 1 2026-04-22 3f3336774 Net::Telnet PASS 3 3 2026-04-12 cc5efa220 +Net::Wire10 PASS 2 2 2026-04-25 1d5def215 +Number::Bytes::Human PASS 222 222 2026-04-26 1d5def215 OCR::OcrSpace PASS 7 7 2026-04-22 3f3336774 OLE::Storage_Lite PASS 199 199 2026-04-22 3f3336774 +OVH::OvhApi PASS 15 15 2026-04-26 1d5def215 +Object::Tiny::RW PASS 28 28 2026-04-26 1d5def215 OpenMP::Environment PASS 431 431 2026-04-22 3f3336774 OpenTracing::GlobalTracer PASS 1 1 2026-04-21 73edc8aba +OptionHash PASS 11 11 2026-04-25 1d5def215 OpusVL::Text::Util PASS 50 50 2026-04-12 cc5efa220 OurNet::BBSAgent PASS 2 2 2026-04-12 cc5efa220 PAR::Repository::Query PASS 1 1 2026-04-22 3f3336774 PBS::Client PASS 15 15 2026-04-21 73edc8aba PCGI PASS 1 1 2026-04-22 3f3336774 +PDF::Burst PASS 43 43 2026-04-25 1d5def215 PDF::Create PASS 211 211 2026-04-21 73edc8aba +PDF::Kit PASS 3 3 2026-04-26 1d5def215 PDF::Table PASS 31 31 2026-04-21 73edc8aba PERLANCAR::List::Util::PP PASS 1 1 2026-04-21 73edc8aba PERLANCAR::Tree::Examples PASS 1 1 2026-04-22 3f3336774 PGObject::Util::LogRep::TestDecoding PASS 22 22 2026-04-21 73edc8aba +PGP::Words::Tiny PASS 7 7 2026-04-26 1d5def215 PITA::Test::Dummy::Perl5::Build PASS 2 2 2026-04-21 73edc8aba PITA::Test::Dummy::Perl5::Deps PASS 2 2 2026-04-21 73edc8aba PITA::Test::Dummy::Perl5::MI PASS 3 3 2026-04-21 73edc8aba @@ -447,22 +649,42 @@ PITA::Test::Dummy::Perl5::Make PASS 2 2 2026-04-21 73edc8aba PMIR PASS 1 1 2026-04-22 3f3336774 POD2::Base PASS 28 28 2026-04-21 73edc8aba POE::Component::FastCGI PASS 27 27 2026-04-21 73edc8aba +POE::Component::IRC::Object PASS 1 1 2026-04-26 1d5def215 POE::Component::IRC::Plugin::IRCDHelp PASS 1 1 2026-04-21 73edc8aba +POE::Component::IRC::Plugin::MultiProxy PASS 5 5 2026-04-25 1d5def215 POE::Component::Log4perl PASS 2 2 2026-04-21 73edc8aba +POE::Component::MXML PASS 27 27 2026-04-26 1d5def215 POE::Component::Pluggable PASS 12 12 2026-04-21 73edc8aba +POE::Component::Schedule PASS 137 137 2026-04-26 1d5def215 POE::Component::Syndicator PASS 44 44 2026-04-22 3f3336774 +POE::Devel::Profiler PASS 3 3 2026-04-26 1d5def215 +POE::Filter::BigBrother PASS 14 14 2026-04-25 1d5def215 +POE::Filter::CSV PASS 11 11 2026-04-25 1d5def215 +POE::Filter::JSONMaybeXS PASS 6 6 2026-04-26 1d5def215 +POE::Filter::KennySpeak PASS 38 38 2026-04-25 1d5def215 +POE::Filter::Redis PASS 61 61 2026-04-26 1d5def215 POE::Filter::Slim::CLI PASS 18 18 2026-04-21 73edc8aba POE::Filter::Transparent::SMTP PASS 53 53 2026-04-21 73edc8aba +POE::TIKC PASS 1 1 2026-04-26 1d5def215 POE::Wheel::Sendfile PASS 43 43 2026-04-22 3f3336774 +PPM::Repositories PASS 6 6 2026-04-25 1d5def215 PT::PostalCode PASS 41 41 2026-04-22 3f3336774 PYX::Stack PASS 24 24 2026-04-21 73edc8aba +Papery PASS 57 57 2026-04-26 1d5def215 Parse::RecDescent PASS 139 139 2026-04-22 3f3336774 Parse::Yapp PASS 33 33 2026-04-21 3f3336774 +PartialApplication PASS 17 17 2026-04-26 1d5def215 +Passwd::Keyring::Auto PASS 97 97 2026-04-26 1d5def215 +Passwd::Keyring::Memory PASS 72 72 2026-04-26 1d5def215 Path::Class::File::Lockable PASS 18 18 2026-04-22 3f3336774 Path::Class::File::Stat PASS 16 16 2026-04-22 3f3336774 +Path::FindDev PASS 5 5 2026-04-26 1d5def215 +Path::IsDev PASS 111 111 2026-04-26 1d5def215 Perl5::Build::Warnings PASS 43 43 2026-04-21 73edc8aba Perl6::Caller PASS 93 93 2026-04-21 73edc8aba -PerlIO::via::Timeout PASS 1 1 2026-04-22 3f3336774 +Perl6::Doc PASS 1 1 2026-04-26 1d5def215 +PerlIO::via::Timeout PASS 1 1 2026-04-26 1d5def215 +PerlPoint::Generator::XML::XHTML PASS 2 2 2026-04-26 1d5def215 PerlPoint::Import::POD PASS 2 2 2026-04-22 3f3336774 PerlX::ifor PASS 2 2 2026-04-21 73edc8aba Plack::App::Proxy PASS 7 7 2026-04-21 73edc8aba @@ -472,139 +694,224 @@ Plack::Middleware::Debug PASS 17 17 2026-04-22 3f3336774 Plack::Middleware::Header PASS 7 7 2026-04-21 73edc8aba Plack::Middleware::MethodOverride PASS 36 36 2026-04-21 73edc8aba Plack::Middleware::ReverseProxy PASS 40 40 2026-04-21 73edc8aba +Plack::Middleware::Timeout PASS 12 12 2026-04-25 1d5def215 +Plack::Session PASS 532 532 2026-04-26 1d5def215 Plack::Test::ExternalServer PASS 1 1 2026-04-21 73edc8aba PlayStation::MemoryCard PASS 1 1 2026-04-12 cc5efa220 Pod::Constants PASS 20 20 2026-04-21 73edc8aba +Pod::Elemental::Transformer::Codebox PASS 1 1 2026-04-25 1d5def215 +Pod::Elemental::Transformer::PPIHTML PASS 1 1 2026-04-25 1d5def215 +Pod::Elemental::Transformer::VimHTML PASS 1 1 2026-04-25 1d5def215 Pod::Extract PASS 1 1 2026-04-21 73edc8aba +Pod::Markdown::Github PASS 24 24 2026-04-26 1d5def215 Pod::Simpler::Aoh PASS 11 11 2026-04-22 3f3336774 Pod::Xhtml PASS 43 43 2026-04-21 3f3336774 Preloaded PASS 55 55 2026-04-22 3f3336774 Probe::Perl PASS 19 19 2026-04-21 73edc8aba +Proc::Find PASS 5 5 2026-04-26 1d5def215 Progress::Any PASS 6 6 2026-04-21 73edc8aba +Properties PASS 9 9 2026-04-26 1d5def215 Protocol::Notifo PASS 40 40 2026-04-12 c1942aad0 Pye PASS 1 1 2026-04-21 73edc8aba +Queue::Base PASS 22 22 2026-04-25 1d5def215 +RCU PASS 1 1 2026-04-25 1d5def215 RDF::NS::Curated PASS 14 14 2026-04-22 3f3336774 RDF::Prefixes PASS 25 25 2026-04-22 3f3336774 +RF::Functions PASS 24 24 2026-04-25 1d5def215 +RPM::NEVRA PASS 4 4 2026-04-25 1d5def215 +RPSL PASS 2 2 2026-04-26 1d5def215 RPi::Const PASS 78 78 2026-04-21 73edc8aba +RPi::GPIOExpander::MCP23017 PASS 1 1 2026-04-26 1d5def215 RPi::I2C PASS 1 1 2026-04-22 3f3336774 RPi::MultiPCA9685 PASS 1 1 2026-04-22 3f3336774 +RPi::WiringPi::Constant PASS 53 53 2026-04-25 1d5def215 +RT::Client::CLI PASS 3 3 2026-04-25 1d5def215 +RT::Condition::NotStartedInBusinessHours PASS 5 5 2026-04-25 1d5def215 RT::Extension::GroupBroadcast PASS 2 2 2026-04-22 3f3336774 RT::Extension::MandatoryRequestor PASS 5 5 2026-04-21 73edc8aba +RT::Extension::TicketPDF PASS 2 2 2026-04-26 1d5def215 RTFM::Extension::ArticleTemplates PASS 3 3 2026-04-22 3f3336774 RTMP::Client PASS 1 1 2026-04-22 3f3336774 +Random::Any PASS 2 2 2026-04-25 1d5def215 Range::Iter PASS 8 8 2026-04-21 73edc8aba +RateLimitations::Pluggable PASS 12 12 2026-04-25 1d5def215 +Redis PASS 4 4 2026-04-26 1d5def215 Regexp::Trie PASS 1 1 2026-04-12 c1942aad0 +ReleaseAction PASS 6 6 2026-04-25 1d5def215 ReplaceMultiple PASS 1 1 2026-04-21 73edc8aba +Return::Value PASS 98 98 2026-04-25 1d5def215 +RogueCurses PASS 1 1 2026-04-25 1d5def215 +RogueQuest PASS 1 1 2026-04-25 1d5def215 Role::TinyCommons::BinarySearch::LinesInHandle PASS 1 1 2026-04-21 3f3336774 Role::TinyCommons::Collection::GetItemByPos PASS 11 11 2026-04-21 73edc8aba Role::TinyCommons::Iterator::Resettable PASS 12 12 2026-04-21 73edc8aba Role::TinyCommons::Tree::NodeMethods PASS 21 21 2026-04-22 3f3336774 Rose::DateTime PASS 5554 5554 2026-04-22 3f3336774 Rose::ObjectX::CAF PASS 10 10 2026-04-22 3f3336774 +Router::Generic PASS 81 81 2026-04-26 1d5def215 +Router::Simple PASS 43 43 2026-04-25 1d5def215 +RowFunc PASS 1 1 2026-04-26 1d5def215 SIL::Encode_all PASS 2 2 2026-04-21 73edc8aba SMS::Send::Sergel::Simple::HTTP PASS 1 1 2026-04-22 3f3336774 +SMS::Send::TW::Qma PASS 1 1 2026-04-25 1d5def215 SNMP::ToolBox PASS 96 96 2026-04-22 3f3336774 +SOAP::DateTime PASS 2 2 2026-04-26 1d5def215 SOAP::DirectI PASS 12 12 2026-04-22 3f3336774 SOOT::App PASS 1 1 2026-04-22 3f3336774 SQL::Abstract::Limit PASS 32 32 2026-04-21 73edc8aba SQL::Abstract::Pg PASS 15 15 2026-04-22 3f3336774 SQL::Easy PASS 1 1 2026-04-22 3f3336774 +SQL::Maker PASS 103 103 2026-04-26 1d5def215 +SQL::PatchDAG PASS 24 24 2026-04-26 1d5def215 SQL::QueryMaker PASS 17 17 2026-04-21 3f3336774 +SQL::ReservedWords PASS 376 376 2026-04-26 1d5def215 +SQL::Script PASS 15 15 2026-04-26 1d5def215 +SQL::SqlObject PASS 28 28 2026-04-25 1d5def215 SQL::Tokenizer PASS 71 71 2026-04-21 73edc8aba +SQL::Wizard PASS 311 311 2026-04-26 1d5def215 SVG::Calendar PASS 137 137 2026-04-22 3f3336774 +SVG::Parser PASS 15 15 2026-04-26 1d5def215 +SVG::Template::Graph PASS 51 51 2026-04-25 1d5def215 +SVN::Dumpfilter PASS 1 1 2026-04-26 1d5def215 Script::isAperlScript PASS 5 5 2026-04-22 3f3336774 Search::Elasticsearch::Compat::QueryParser PASS 207 207 2026-04-22 e228c2529 -Search::QueryParser PASS 17 17 2026-04-22 3f3336774 +Search::QueryParser PASS 17 17 2026-04-25 1d5def215 +Sed PASS 3 3 2026-04-26 1d5def215 Set::Infinite PASS 446 446 2026-04-21 73edc8aba +Shell PASS 14 14 2026-04-26 1d5def215 +Shell::Command PASS 7 7 2026-04-26 1d5def215 Shell::Config::Generate PASS 80 80 2026-04-12 c1942aad0 Shell::Guess PASS 181 181 2026-04-12 c1942aad0 +SkewHeap::PP PASS 3 3 2026-04-26 1d5def215 +Solr PASS 1 1 2026-04-25 1d5def215 +Soo PASS 9 9 2026-04-26 1d5def215 Sort::Naturally PASS 23 23 2026-04-22 3f3336774 Sort::SQL PASS 12 12 2026-04-21 73edc8aba Sort::Versions PASS 96 96 2026-04-12 c1942aad0 +SortKey::Num::file_mtime PASS 1 1 2026-04-25 1d5def215 SortSpec PASS 1 1 2026-04-22 3f3336774 Splunklib PASS 5 5 2026-04-22 3f3336774 StanzaFile PASS 1 1 2026-04-21 73edc8aba -Statistics::Contingency PASS 24 24 2026-04-22 e228c2529 -Statistics::Descriptive PASS 131 131 2026-04-22 3f3336774 +Statistics::ChiSquare PASS 11 11 2026-04-26 1d5def215 +Statistics::Contingency PASS 24 24 2026-04-26 1d5def215 +Statistics::Descriptive PASS 131 131 2026-04-26 1d5def215 Stream::Reader PASS 1 1 2026-04-22 3f3336774 String::CamelSnakeKebab PASS 30 30 2026-04-22 3f3336774 String::Escape PASS 46 46 2026-04-22 3f3336774 +String::Expand PASS 16 16 2026-04-26 1d5def215 String::Formatter PASS 22 22 2026-04-12 c1942aad0 String::Interpolate::RE PASS 32 32 2026-04-22 e228c2529 +String::LineNumber PASS 5 5 2026-04-26 1d5def215 String::Numeric PASS 664 664 2026-04-22 3f3336774 -String::Random PASS 202 202 2026-04-22 3f3336774 +String::Random PASS 202 202 2026-04-26 1d5def215 String::RewritePrefix PASS 39 39 2026-04-12 cc5efa220 +String::Super PASS 42 42 2026-04-26 1d5def215 +String::Tokenizer PASS 117 117 2026-04-26 1d5def215 +Struct::Compare PASS 23 23 2026-04-26 1d5def215 +StupidMarkov PASS 3 3 2026-04-25 1d5def215 Sub::MultiMethod PASS 135 135 2026-04-22 3f3336774 Syntax::Highlight::Engine::Kate PASS 588 588 2026-04-22 3f3336774 Sys::Syscall PASS 1 1 2026-04-12 c1942aad0 TAP::Harness::Metrics PASS 4 4 2026-04-12 cc5efa220 +TAP::Harness::Remote PASS 2 2 2026-04-26 1d5def215 TOML::Dumper PASS 12 12 2026-04-22 3f3336774 +TOON PASS 22 22 2026-04-26 1d5def215 TRD::DebugLog PASS 2 2 2026-04-22 3f3336774 +TSQL::Common::Regexp PASS 2 2 2026-04-25 1d5def215 TUI::App PASS 27 27 2026-04-22 3f3336774 +TXTCOD PASS 1 1 2026-04-25 1d5def215 +TableData::Lingua::Word::EN::Adjective::TalkEnglish PASS 2 2 2026-04-25 1d5def215 +TableData::Lingua::Word::EN::ByClass::Adjective::TalkEnglish PASS 2 2 2026-04-25 1d5def215 +TableData::Perl::CPAN::Release::Static::1995 PASS 28 28 2026-04-26 1d5def215 +TableData::Perl::CPAN::Release::Static::2023 PASS 1 1 2026-04-26 1d5def215 +TableDef PASS 3 3 2026-04-25 1d5def215 Tags PASS 196 196 2026-04-22 3f3336774 Tak PASS 32 32 2026-04-22 3f3336774 Template::Plugin::Class PASS 2 2 2026-04-21 73edc8aba +Template::Plugin::HTML::SuperForm PASS 1 1 2026-04-26 1d5def215 +Template::Provider::FromDATA PASS 49 49 2026-04-26 1d5def215 Template::Timer PASS 5 5 2026-04-21 73edc8aba Term::CallEditor PASS 16 16 2026-04-22 3f3336774 Term::Encoding PASS 8 8 2026-04-22 3f3336774 -Term::ReadKey PASS 1 1 2026-04-22 e228c2529 +Term::ReadKey PASS 1 1 2026-04-26 1d5def215 Term::Screen PASS 29 29 2026-04-12 c1942aad0 Term::UI PASS 36 36 2026-04-22 3f3336774 +Test2::Plugin::FauxHomeDir PASS 9 9 2026-04-26 1d5def215 +Test2::Plugin::TodoFailOnSuccess PASS 5 5 2026-04-25 1d5def215 Test::API PASS 32 32 2026-04-12 c1942aad0 Test::CPAN::Meta PASS 196 196 2026-04-12 c1942aad0 Test::Carp PASS 72 72 2026-04-22 e228c2529 Test::CheckManifest PASS 113 113 2026-04-21 73edc8aba Test::Data PASS 119 119 2026-04-21 73edc8aba +Test::Deep::Fuzzy PASS 12 12 2026-04-25 1d5def215 +Test::Deep::JSON PASS 7 7 2026-04-25 1d5def215 +Test::Deep::UnorderedPairs PASS 15 15 2026-04-26 1d5def215 Test::DescribeMe PASS 12 12 2026-04-21 73edc8aba -Test::Distribution PASS 42 42 2026-04-22 3f3336774 -Test::Fake::HTTPD PASS 1 1 2026-04-21 73edc8aba +Test::Dist::VersionSync PASS 47 47 2026-04-26 1d5def215 +Test::Distribution PASS 42 42 2026-04-26 1d5def215 +Test::Fake::HTTPD PASS 1 1 2026-04-26 1d5def215 +Test::File::Contents PASS 70 70 2026-04-26 1d5def215 Test::Filename PASS 27 27 2026-04-21 73edc8aba Test::HexDifferences PASS 75 75 2026-04-22 3f3336774 Test::HexString PASS 7 7 2026-04-21 73edc8aba -Test::Identity PASS 10 10 2026-04-22 3f3336774 +Test::Identity PASS 10 10 2026-04-25 1d5def215 Test::InDistDir PASS 6 6 2026-04-12 c1942aad0 Test::Inter PASS 90 90 2026-04-12 c1942aad0 -Test::JSON PASS 38 38 2026-04-22 3f3336774 +Test::JSON PASS 38 38 2026-04-26 1d5def215 Test::LoadAllModules PASS 5 5 2026-04-22 3f3336774 Test::MockDateTime PASS 7 7 2026-04-22 3f3336774 Test::More::UTF8 PASS 14 14 2026-04-12 cc5efa220 Test::Most PASS 88 88 2026-04-12 cc5efa220 +Test::NoTabs PASS 16 16 2026-04-26 1d5def215 Test::Number::Delta PASS 72 72 2026-04-12 c1942aad0 Test::Object PASS 5 5 2026-04-12 c1942aad0 Test::Output PASS 1217 1217 2026-04-12 cc5efa220 Test::Postgresql58 PASS 6 6 2026-04-21 73edc8aba Test::RandomResult PASS 1 1 2026-04-21 73edc8aba Test::Settings PASS 47 47 2026-04-21 73edc8aba +Test::Spellunker PASS 161 161 2026-04-26 1d5def215 Test::Strict PASS 80 80 2026-04-12 cc5efa220 Test::SubCalls PASS 25 25 2026-04-12 c1942aad0 Test::TempDir::Tiny PASS 4 4 2026-04-21 73edc8aba +Test::Timer PASS 88 88 2026-04-26 1d5def215 Test::TinyMocker PASS 56 56 2026-04-22 3f3336774 Test::WWW::Mechanize::PSGI PASS 33 33 2026-04-22 3f3336774 -Text::Aligner PASS 513 513 2026-04-22 e228c2529 +Text::Aligner PASS 513 513 2026-04-26 1d5def215 Text::Brew PASS 18 18 2026-04-12 c1942aad0 Text::Diff PASS 33 33 2026-04-12 cc5efa220 Text::German PASS 34 34 2026-04-12 c1942aad0 Text::LineNumber PASS 2 2 2026-04-21 3f3336774 +Text::Lorem PASS 23 23 2026-04-25 1d5def215 +Text::MicroTemplate::DataSection PASS 3 3 2026-04-25 1d5def215 Text::Patch PASS 1 1 2026-04-12 c1942aad0 Text::Quote PASS 53 53 2026-04-12 c1942aad0 Text::SimpleTable PASS 10 10 2026-04-12 c1942aad0 Text::SimpleTable::AutoWidth PASS 6 6 2026-04-12 c1942aad0 Text::Soundex PASS 18 18 2026-04-12 c1942aad0 Text::SpanningTable PASS 20 20 2026-04-21 73edc8aba +Text::Table PASS 175 175 2026-04-26 1d5def215 Text::Tags PASS 89 89 2026-04-22 3f3336774 Text::Unidecode PASS 1483 1483 2026-04-12 c1942aad0 +Text::WikiFormat PASS 143 143 2026-04-26 1d5def215 Text::vFile::asData PASS 183 183 2026-04-21 73edc8aba Thread::Queue PASS 59 59 2026-04-12 c1942aad0 Thread::Semaphore PASS 17 17 2026-04-12 c1942aad0 +ThreatDetector PASS 99 99 2026-04-26 1d5def215 Tie::Hash::Method PASS 12 12 2026-04-22 3f3336774 Tie::Hash::Vivify PASS 31 31 2026-04-12 c1942aad0 +Tie::Simple PASS 31 31 2026-04-25 1d5def215 Tie::Sub PASS 20 20 2026-04-22 3f3336774 Tie::ToObject PASS 10 10 2026-04-12 cc5efa220 Tie::UnionHash PASS 36 36 2026-04-21 73edc8aba +TieCSV PASS 4 4 2026-04-26 1d5def215 +Time::Clock PASS 142 142 2026-04-26 1d5def215 +Time::Concise PASS 8 8 2026-04-26 1d5def215 Time::Duration PASS 250 250 2026-04-12 c1942aad0 Time::Duration::Parse PASS 2051 2051 2026-04-12 c1942aad0 +Time::Duration::Parse::AsHash PASS 49 49 2026-04-25 1d5def215 Time::Epoch PASS 5 5 2026-04-21 73edc8aba Time::Progress PASS 2 2 2026-04-12 c1942aad0 +Transform::Canvas PASS 33 33 2026-04-25 1d5def215 Tree::Create::Callback::ChildrenPerLevel PASS 4 4 2026-04-22 3f3336774 Tree::Dump PASS 1 1 2026-04-22 3f3336774 Tree::Numbered PASS 37 37 2026-04-22 3f3336774 @@ -615,63 +922,126 @@ Try::Tiny::Retry PASS 13 13 2026-04-22 e228c2529 Twiggy PASS 1 1 2026-04-22 3f3336774 Types::DateTime PASS 9 9 2026-04-22 3f3336774 Types::Path::Tiny PASS 20 20 2026-04-12 c1942aad0 +Types::Self PASS 5 5 2026-04-26 1d5def215 +UI::Notify::Cocoa PASS 5 5 2026-04-26 1d5def215 +UK::Vehicle PASS 13 13 2026-04-26 1d5def215 UNIVERSAL::require PASS 25 25 2026-04-12 cc5efa220 UPS::Nut PASS 1 1 2026-04-21 73edc8aba +URI::Encode PASS 18 18 2026-04-26 1d5def215 +URI::Escape::Any PASS 1 1 2026-04-26 1d5def215 +URI::Escape::Path PASS 2 2 2026-04-26 1d5def215 +URI::Fetch PASS 1 1 2026-04-25 1d5def215 URI::Title PASS 11 11 2026-04-21 73edc8aba URI::ToDisk PASS 130 130 2026-04-22 3f3336774 URI::fasp PASS 11 11 2026-04-22 3f3336774 URI::redis PASS 10 10 2026-04-21 73edc8aba +URI::ws_Punix PASS 14 14 2026-04-26 1d5def215 URL::Encode PASS 468 468 2026-04-22 e228c2529 USB::Descriptor PASS 22 22 2026-04-22 3f3336774 UUID::Object PASS 124 124 2026-04-21 73edc8aba +UkrMoney::API PASS 1 1 2026-04-25 1d5def215 Unicode::Stringprep PASS 194 194 2026-04-12 c1942aad0 +Uniq PASS 6 6 2026-04-26 1d5def215 +Unix::PID PASS 1 1 2026-04-25 1d5def215 Unix::Process PASS 2 2 2026-04-12 c1942aad0 +VCS::Lite PASS 47 47 2026-04-26 1d5def215 VK PASS 1 1 2026-04-22 3f3336774 VK::App PASS 1 1 2026-04-22 3f3336774 +VSGDR::StaticData PASS 6 6 2026-04-25 1d5def215 +VSO PASS 52 52 2026-04-26 1d5def215 +VT::API PASS 2 2 2026-04-26 1d5def215 Validate::Tiny PASS 180 180 2026-04-22 3f3336774 +Version::Next PASS 91 91 2026-04-26 1d5def215 Voo PASS 2 2 2026-04-22 3f3336774 +WWW::AdventCalendar PASS 1 1 2026-04-25 1d5def215 WWW::CPANRatings::RSS PASS 109 109 2026-04-21 73edc8aba WWW::CSRF PASS 14 14 2026-04-22 3f3336774 WWW::Comic::Plugin::Jerkcity PASS 2 2 2026-04-22 3f3336774 WWW::DoctypeGrabber PASS 12 12 2026-04-22 3f3336774 WWW::Facebook::API PASS 188 188 2026-04-22 3f3336774 WWW::Firecrawl PASS 66 66 2026-04-22 3f3336774 +WWW::Gazetteer PASS 3 3 2026-04-26 1d5def215 WWW::Google::PageRank PASS 9 9 2026-04-22 3f3336774 +WWW::ItsABot PASS 8 8 2026-04-25 1d5def215 WWW::Mechanize::GZip PASS 5 5 2026-04-22 3f3336774 +WWW::Mechanize::Tor PASS 1 1 2026-04-25 1d5def215 WWW::ModulrFinance PASS 1 1 2026-04-22 3f3336774 WWW::Moviepilot PASS 4 4 2026-04-22 3f3336774 +WWW::OReillyMedia::Store PASS 5 5 2026-04-26 1d5def215 +WWW::Omegle PASS 1 1 2026-04-25 1d5def215 +WWW::Pastebin::Base::Retrieve PASS 8 8 2026-04-25 1d5def215 +WWW::Pastebin::Bot::Pastebot::Create PASS 9 9 2026-04-25 1d5def215 +WWW::PlaceEngine PASS 1 1 2026-04-25 1d5def215 WWW::RT::CPAN PASS 1 1 2026-04-22 e228c2529 WWW::Scraper::ISBN::Foyles_Driver PASS 33 33 2026-04-22 3f3336774 WWW::Scraper::ISBN::LOC_Driver PASS 20 20 2026-04-22 3f3336774 WWW::Shorten::Bitly PASS 66 66 2026-04-22 3f3336774 +WWW::Shorten::Naver PASS 1 1 2026-04-26 1d5def215 +WWW::Shorten::OneShortLink PASS 1 1 2026-04-25 1d5def215 WWW::Shorten::Yourls PASS 58 58 2026-04-22 3f3336774 +WWW::SlideShare PASS 1 1 2026-04-26 1d5def215 +WWW::TextMarks PASS 1 1 2026-04-25 1d5def215 +WWW::VastAI PASS 44 44 2026-04-25 1d5def215 +WWW::Yandex::BarTIC PASS 13 13 2026-04-25 1d5def215 +WWW::Yandex::MailForDomain PASS 2 2 2026-04-25 1d5def215 +WWW::Zotero PASS 3 3 2026-04-26 1d5def215 +WWW::Zotero::Write PASS 2 2 2026-04-26 1d5def215 WWW::eiNetwork PASS 2 2 2026-04-22 3f3336774 +WebDyne::Bundle::VERSION PASS 2 2 2026-04-26 1d5def215 +WebService::Audioscrobbler PASS 1 1 2026-04-26 1d5def215 WebService::Azure::Search PASS 7 7 2026-04-22 3f3336774 +WebService::CRUST PASS 2 2 2026-04-25 1d5def215 WebService::Client PASS 4 4 2026-04-22 3f3336774 +WebService::Geograph::API PASS 8 8 2026-04-26 1d5def215 +WebService::Google::Sets PASS 5 5 2026-04-25 1d5def215 WebService::HashiCorp::Vault PASS 16 16 2026-04-22 3f3336774 +WebService::Idonethis PASS 1 1 2026-04-26 1d5def215 +WebService::PhotoZou PASS 1 1 2026-04-26 1d5def215 WebService::Speechmatics PASS 1 1 2026-04-22 3f3336774 WebService::Sprint PASS 5 5 2026-04-22 3f3336774 +WebService::Validator::CSS::W3C PASS 4 4 2026-04-26 1d5def215 +WebService::YahooJapan::WebMA PASS 1 1 2026-04-25 1d5def215 Win32::Locale PASS 2 2 2026-04-22 3f3336774 Win32::ShellQuote PASS 197 197 2026-04-22 3f3336774 WordList PASS 37 37 2026-04-22 3f3336774 +WordList::Char::ZH::HSK PASS 14 14 2026-04-26 1d5def215 +WordList::EN::Adjective::TalkEnglish PASS 2 2 2026-04-25 1d5def215 +WordList::EN::ByCategory::Animal PASS 10 10 2026-04-26 1d5def215 WordList::EN::Common::COCA::Top1000 PASS 1 1 2026-04-22 3f3336774 +WordList::EN::Oxford3000::Learner PASS 1 1 2026-04-25 1d5def215 WordList::ID::BIP39 PASS 1 1 2026-04-22 3f3336774 WordList::ID::ByCategory::Animal PASS 10 10 2026-04-22 3f3336774 WordList::ID::Color::PERLANCAR PASS 1 1 2026-04-22 3f3336774 +WordList::ID::ColorName::HTML_ID PASS 1 1 2026-04-25 1d5def215 +WordList::ID::KBBI PASS 1 1 2026-04-25 1d5def215 WordList::ZH::Traditional::BIP39 PASS 1 1 2026-04-22 3f3336774 +WordListRole::RandomSeekPick PASS 1 1 2026-04-25 1d5def215 +WordListRole::Source::ArrayData PASS 1 1 2026-04-26 1d5def215 WordPress::XMLRPC PASS 10 10 2026-04-22 3f3336774 X11::FreeDesktop::DesktopEntry PASS 1 1 2026-04-22 3f3336774 X11::GUITest PASS 1 1 2026-04-21 73edc8aba +X11::Resolution PASS 5 5 2026-04-26 1d5def215 XML::Atom::SimpleFeed PASS 32 32 2026-04-22 3f3336774 +XML::DOM2 PASS 32 32 2026-04-26 1d5def215 +XML::FeedPP::Plugin::DumpJSON PASS 1 1 2026-04-26 1d5def215 +XML::Generator::vCard::Base PASS 1 1 2026-04-26 1d5def215 XML::NamespaceSupport PASS 49 49 2026-04-12 cc5efa220 XML::OPML PASS 1 1 2026-04-22 3f3336774 +XML::OPML::SimpleGen PASS 11 11 2026-04-26 1d5def215 XML::OverHTTP PASS 77 77 2026-04-22 3f3336774 +XML::Perl PASS 19 19 2026-04-26 1d5def215 XML::SAX::Expat PASS 2 2 2026-04-12 c1942aad0 +XML::Trivial PASS 9 9 2026-04-26 1d5def215 +XTerm::Util PASS 1 1 2026-04-26 1d5def215 +Xporter PASS 21 21 2026-04-25 1d5def215 +YAML::Shell PASS 2 2 2026-04-26 1d5def215 ZML PASS 5 5 2026-04-22 3f3336774 accessors PASS 59 59 2026-04-22 e228c2529 alias::module PASS 1 1 2026-04-21 73edc8aba asa PASS 19 19 2026-04-21 73edc8aba match::simple PASS 396 396 2026-04-21 73edc8aba +mem PASS 3 3 2026-04-25 1d5def215 parent PASS 37 37 2026-04-21 73edc8aba rlib PASS 7 7 2026-04-12 c1942aad0 +subroutines PASS 1 1 2026-04-25 1d5def215 syntax PASS 4 4 2026-04-12 c1942aad0 diff --git a/dev/cpan-reports/cpan-compatibility.md b/dev/cpan-reports/cpan-compatibility.md index 208481681..010ea90b6 100644 --- a/dev/cpan-reports/cpan-compatibility.md +++ b/dev/cpan-reports/cpan-compatibility.md @@ -1,6 +1,6 @@ # CPAN Module Compatibility Report for PerlOnJava -> Auto-generated by `dev/tools/cpan_random_tester.pl` on 2026-04-22 13:27:13 +> Auto-generated by `dev/tools/cpan_random_tester.pl` on 2026-04-26 17:36:51 > > Modules are randomly selected from the full CPAN index and tested > with `./jcpan -t`. Dependencies are tested too; every module that @@ -10,9 +10,9 @@ | Metric | Count | |--------|-------| -| **Modules Tested** | 2768 | -| **Pass** | 677 (24.5%) | -| **Fail** | 2091 | +| **Modules Tested** | 4081 | +| **Pass** | 1047 (25.7%) | +| **Fail** | 3034 | | **Skipped (XS-only)** | 0 | ## Modules That Pass All Tests @@ -22,16 +22,25 @@ | AAAA::Crypt::DH | 2 | 2026-04-21 | 3f3336774 | | AAAA::Mail::SpamAssassin | 1 | 2026-04-21 | 3f3336774 | | AAAAAAAAA | 1 | 2026-04-21 | 3f3336774 | +| ABI | 15 | 2026-04-26 | 1d5def215 | +| ACL::Lite | 31 | 2026-04-25 | 1d5def215 | +| ACME::THEDANIEL::Utils | 7 | 2026-04-25 | 1d5def215 | +| AI::CRM114 | 2 | 2026-04-25 | 1d5def215 | | AI::Calibrate | 44 | 2026-04-21 | 3f3336774 | | AI::Chat | 7 | 2026-04-21 | 3f3336774 | +| AI::ConfusionMatrix | 19 | 2026-04-25 | 1d5def215 | | AI::NaiveBayes1 | 52 | 2026-04-22 | e228c2529 | +| AI::NeuralNet::SOM::Hexa | 136 | 2026-04-25 | 1d5def215 | | AI::Perceptron | 18 | 2026-04-22 | e228c2529 | | AI::Prolog | 460 | 2026-04-22 | e228c2529 | +| AIX::LVM | 17 | 2026-04-26 | 1d5def215 | | API::CPanel | 61 | 2026-04-12 | c1942aad0 | +| API::DirectAdmin | 34 | 2026-04-26 | 1d5def215 | | ARGV::ENV | 2 | 2026-04-22 | e228c2529 | +| AWS::Signature::V2 | 2 | 2026-04-25 | 1d5def215 | | Algorithm::Diff | 1004 | 2026-04-12 | cc5efa220 | | Algorithm::Merge | 66 | 2026-04-21 | 73edc8aba | -| Algorithm::NaiveBayes | 23 | 2026-04-22 | e228c2529 | +| Algorithm::NaiveBayes | 23 | 2026-04-26 | 1d5def215 | | Alien | 2 | 2026-04-21 | 3f3336774 | | Alien::Build::Plugin::Download::GitLab | 2 | 2026-04-12 | cc5efa220 | | Alien::Build::Plugin::Probe::GnuWin32 | 5 | 2026-04-22 | 3f3336774 | @@ -42,13 +51,19 @@ | Any::URI::Escape | 4 | 2026-04-21 | 3f3336774 | | AnyData2 | 21 | 2026-04-12 | c1942aad0 | | AnyEvent::ConnPool | 41 | 2026-04-22 | e228c2529 | +| AnyEvent::Ping::TCP | 1 | 2026-04-26 | 1d5def215 | | AnyEvent::Redis | 1 | 2026-04-21 | 73edc8aba | | AnyEvent::Semaphore | 2 | 2026-04-21 | 73edc8aba | +| AnyEvent::SerialPort | 9 | 2026-04-25 | 1d5def215 | | AnyMQ::AMQP | 1 | 2026-04-22 | e228c2529 | | Apache2::AuthzNIS | 2 | 2026-04-12 | c1942aad0 | +| ApacheLog::Compressor | 39 | 2026-04-26 | 1d5def215 | | App::Cache | 49 | 2026-04-21 | 73edc8aba | +| App::Cmd::Plugin::Prompt | 2 | 2026-04-26 | 1d5def215 | +| App::Prove::Plugin::Count | 17 | 2026-04-26 | 1d5def215 | | App::Rad | 180 | 2026-04-21 | 3f3336774 | | App::Spec | 79 | 2026-04-21 | 3f3336774 | +| Array::Compare | 37 | 2026-04-26 | 1d5def215 | | Array::Utils | 17 | 2026-04-12 | cc5efa220 | | ArrayData::Lingua::Word::ID::KBBI::Proverb | 1 | 2026-04-21 | 73edc8aba | | ArrayData::WordList | 1 | 2026-04-22 | e228c2529 | @@ -58,31 +73,47 @@ | Asm::Z80::Table | 19641 | 2026-04-12 | c1942aad0 | | AsposeBarCodeCloud::ApiClient | 3 | 2026-04-12 | c1942aad0 | | AsposeImagingCloud::ApiClient | 3 | 2026-04-12 | c1942aad0 | -| AsposeStorageCloud::StorageApi | 3 | 2026-04-12 | c1942aad0 | +| AsposeOcrCloud::ApiClient | 3 | 2026-04-25 | 1d5def215 | +| AsposePdfCloud::ApiClient | 3 | 2026-04-25 | 1d5def215 | +| AsposeStorageCloud::StorageApi | 3 | 2026-04-25 | 1d5def215 | | Asterisk | 71 | 2026-04-21 | 73edc8aba | | Astro::MoonPhase | 461 | 2026-04-21 | 73edc8aba | | Atheme | 1 | 2026-04-21 | 3f3336774 | -| AudioFile::Info | 14 | 2026-04-21 | 3f3336774 | +| AudioFile::Info | 14 | 2026-04-25 | 1d5def215 | | BBPerl | 93 | 2026-04-12 | c1942aad0 | | BFD | 1 | 2026-04-21 | 3f3336774 | +| BankAccount | 14 | 2026-04-25 | 1d5def215 | | BenchmarkAnything::Storage::Search::Elasticsearch | 2 | 2026-04-21 | 3f3336774 | +| Best | 101 | 2026-04-26 | 1d5def215 | +| BigIP::GTM::ParseConfig | 1 | 2026-04-25 | 1d5def215 | +| BigIP::iControl | 5 | 2026-04-25 | 1d5def215 | +| Bijection | 5042 | 2026-04-26 | 1d5def215 | | BitArray | 2 | 2026-04-12 | c1942aad0 | +| BorderStyle::Test::Random | 2 | 2026-04-26 | 1d5def215 | +| BorderStyleRole::Spec::Basic | 9 | 2026-04-26 | 1d5def215 | | Brannigan | 272 | 2026-04-21 | 3f3336774 | | Builder | 31 | 2026-04-12 | c1942aad0 | +| Bundler | 2 | 2026-04-25 | 1d5def215 | | Business::CreditCard | 11 | 2026-04-21 | 73edc8aba | | Business::ISBN::Data | 22 | 2026-04-22 | e228c2529 | | C::Analyzer | 2 | 2026-04-21 | 73edc8aba | | C::Tokenize | 57 | 2026-04-21 | 3f3336774 | | C::Utility | 9 | 2026-04-21 | 3f3336774 | +| CA::AutoSys | 1 | 2026-04-25 | 1d5def215 | | CAD::Format::DWG::Version | 9 | 2026-04-21 | 3f3336774 | +| CAM::PDF | 215 | 2026-04-25 | 1d5def215 | +| CCCP::SQLiteWrap | 1 | 2026-04-26 | 1d5def215 | +| CDDB::File | 36 | 2026-04-26 | 1d5def215 | | CDR::Parser::SI3000 | 17 | 2026-04-12 | c1942aad0 | -| CGI::Application | 190 | 2026-04-22 | 3f3336774 | +| CGI::Application | 190 | 2026-04-26 | 1d5def215 | | CGI::Application::Plugin::AbstractCallback | 2 | 2026-04-12 | cc5efa220 | +| CGI::Application::Plugin::Config::Any | 9 | 2026-04-25 | 1d5def215 | | CGI::Application::Plugin::ConfigAuto | 12 | 2026-04-21 | 3f3336774 | | CGI::Application::Plugin::DebugScreen | 1 | 2026-04-21 | 3f3336774 | | CGI::Application::Plugin::DetectAjax | 4 | 2026-04-12 | c1942aad0 | | CGI::Application::Plugin::FillInForm | 35 | 2026-04-21 | 3f3336774 | -| CGI::Application::Plugin::Forward | 50 | 2026-04-21 | 3f3336774 | +| CGI::Application::Plugin::Forward | 50 | 2026-04-26 | 1d5def215 | +| CGI::Application::Plugin::JSON | 22 | 2026-04-25 | 1d5def215 | | CGI::Application::Plugin::LogDispatch | 25 | 2026-04-21 | 3f3336774 | | CGI::Application::Plugin::MessageStack | 9 | 2026-04-12 | c1942aad0 | | CGI::Application::Plugin::Redirect | 9 | 2026-04-21 | 3f3336774 | @@ -94,6 +125,7 @@ | CGI::Scriptpaths | 18 | 2026-04-12 | c1942aad0 | | CGI::Struct | 126 | 2026-04-12 | c1942aad0 | | CGI::Untaint | 75 | 2026-04-21 | 73edc8aba | +| CGI::Untaint::ipaddress | 10 | 2026-04-25 | 1d5def215 | | CGI::okTemplate | 5 | 2026-04-21 | 3f3336774 | | CLI::LaTeX::Table | 1 | 2026-04-21 | 3f3336774 | | CLI::MetaUtil::Getopt::Long::Complete | 1 | 2026-04-22 | e228c2529 | @@ -101,19 +133,25 @@ | CORBA::Perl | 10 | 2026-04-21 | 73edc8aba | | CORBA::Python | 14 | 2026-04-12 | c1942aad0 | | CORBA::XS | 7 | 2026-04-21 | 73edc8aba | +| CPAN::02Packages::Search | 1 | 2026-04-26 | 1d5def215 | | CPAN::AutoINC | 1 | 2026-04-21 | 73edc8aba | +| CPAN::Changes::Cwalitee | 4 | 2026-04-26 | 1d5def215 | | CPAN::DistnameInfo | 829 | 2026-04-12 | c1942aad0 | | CPAN::Maker | 26 | 2026-04-21 | 73edc8aba | | CPAN::Meta::Prereqs::Filter | 3 | 2026-04-22 | 3f3336774 | | CPAN::Mini | 48 | 2026-04-12 | c1942aad0 | | CPAN::Mini::FromList | 6 | 2026-04-22 | 3f3336774 | +| CPAN::Perl::Releases::MetaCPAN | 1 | 2026-04-26 | 1d5def215 | | CPAN::Releases::Latest | 9 | 2026-04-22 | 3f3336774 | +| CPAN::Static | 32 | 2026-04-26 | 1d5def215 | | CPAN::Tarball::Patch | 1 | 2026-04-12 | c1942aad0 | | CPAN::Test::Dummy::MultiPkgVer | 1 | 2026-04-22 | 3f3336774 | | CPAN::Test::Dummy::Perl5::Build::DepeFails | 2 | 2026-04-12 | c1942aad0 | | CPAN::Test::Dummy::Perl5::ExtUtilsMakeMaker | 1 | 2026-04-12 | c1942aad0 | +| CPAN::Test::Dummy::Perl5::Make | 2 | 2026-04-26 | 1d5def215 | | CPAN::Test::Dummy::Perl5::Make::CircularPrereq | 3 | 2026-04-21 | 73edc8aba | | CPAN::Test::Dummy::Perl5::Make::OptionalPrereq | 2 | 2026-04-21 | 73edc8aba | +| CPAN::Test::Dummy::Perl5::Make::UnsatPrereq | 2 | 2026-04-26 | 1d5def215 | | CPAN::Test::Dummy::Perl5::StaticInstall | 1 | 2026-04-12 | c1942aad0 | | CPAN::Test::Dummy::Perl5::VersionQV | 1 | 2026-04-12 | c1942aad0 | | CPAN::Testers::Common::DBUtils | 4 | 2026-04-12 | c1942aad0 | @@ -126,78 +164,106 @@ | CSS::Moonfall | 28 | 2026-04-22 | 3f3336774 | | CSS::SAC | 294 | 2026-04-22 | 3f3336774 | | CSS::Scopifier | 13 | 2026-04-21 | 73edc8aba | +| CSS::Squish | 15 | 2026-04-25 | 1d5def215 | | CSS::Tiny | 36 | 2026-04-12 | c1942aad0 | | CSV::Examples | 1 | 2026-04-22 | e228c2529 | | CSVAWK | 2 | 2026-04-12 | c1942aad0 | | CWB::CQI | 4 | 2026-04-22 | e228c2529 | -| Calendar::Simple | 83 | 2026-04-12 | c1942aad0 | +| Calendar::Simple | 83 | 2026-04-25 | 1d5def215 | | Caller::Hide | 19 | 2026-04-21 | 73edc8aba | | Canary::Stability | 1 | 2026-04-12 | cc5efa220 | | Canella | 1 | 2026-04-21 | 73edc8aba | +| Captcha::noCAPTCHA | 37 | 2026-04-26 | 1d5def215 | | Carp::POE | 2 | 2026-04-21 | 73edc8aba | +| CellBIS::Random | 7 | 2026-04-26 | 1d5def215 | | CellFunc | 1 | 2026-04-22 | e228c2529 | | Class::Accessor::Array | 5 | 2026-04-22 | 3f3336774 | | Class::Accessor::Array::Glob | 3 | 2026-04-22 | 3f3336774 | | Class::Accessor::Chained | 8 | 2026-04-22 | e228c2529 | -| Class::Accessor::Chained::Fast | 8 | 2026-04-22 | e228c2529 | +| Class::Accessor::Chained::Fast | 8 | 2026-04-25 | 1d5def215 | +| Class::Accessor::Fast::Contained | 43 | 2026-04-26 | 1d5def215 | | Class::Accessor::Lite | 26 | 2026-04-21 | 73edc8aba | -| Class::Accessor::Lite::Lazy | 22 | 2026-04-22 | e228c2529 | +| Class::Accessor::Lite::Lazy | 22 | 2026-04-25 | 1d5def215 | +| Class::Accessor::Named | 2 | 2026-04-25 | 1d5def215 | | Class::Accessor::Validated | 5 | 2026-04-21 | 73edc8aba | | Class::ArrayObjects | 8 | 2026-04-22 | 3f3336774 | | Class::AutoAccess | 5 | 2026-04-21 | 73edc8aba | | Class::Base | 47 | 2026-04-21 | 73edc8aba | | Class::C3::Componentised | 46 | 2026-04-21 | 73edc8aba | +| Class::Constructor | 101 | 2026-04-26 | 1d5def215 | | Class::DBI::AbstractSearch | 3 | 2026-04-21 | 73edc8aba | | Class::DBI::Loader | 21 | 2026-04-21 | 73edc8aba | +| Class::DBI::Pg | 6 | 2026-04-26 | 1d5def215 | | Class::Data::Accessor | 20 | 2026-04-21 | 73edc8aba | | Class::Data::Inheritable | 16 | 2026-04-21 | 73edc8aba | | Class::ErrorHandler | 10 | 2026-04-21 | 73edc8aba | | Class::ISA | 4 | 2026-04-21 | 73edc8aba | | Class::Inner | 13 | 2026-04-21 | 73edc8aba | | Class::Loader | 12 | 2026-04-22 | 3f3336774 | +| Class::Member | 49 | 2026-04-26 | 1d5def215 | | Class::ParamParser | 90 | 2026-04-21 | 73edc8aba | | Class::Singleton | 29 | 2026-04-21 | 73edc8aba | | Class::StrongSingleton | 26 | 2026-04-12 | c1942aad0 | | Class::Trigger | 51 | 2026-04-21 | 73edc8aba | | Class::Utils | 22 | 2026-04-21 | 73edc8aba | +| ClassLoader | 5 | 2026-04-26 | 1d5def215 | +| ColorTheme::NoColor | 2 | 2026-04-26 | 1d5def215 | +| ColorTheme::Test::RandomANSI16BG | 10 | 2026-04-26 | 1d5def215 | +| ColorThemeBase::Base | 12 | 2026-04-26 | 1d5def215 | +| ColorThemeBase::Static::FromStructColors | 12 | 2026-04-26 | 1d5def215 | +| ColorThemeRole::ANSI | 2 | 2026-04-26 | 1d5def215 | | ColorThemeUtil::ANSI | 2 | 2026-04-22 | 3f3336774 | | Complete::Bash | 27 | 2026-04-22 | e228c2529 | | Complete::Env | 4 | 2026-04-22 | e228c2529 | | Complete::File | 14 | 2026-04-22 | e228c2529 | | Complete::Fish | 3 | 2026-04-22 | e228c2529 | +| Complete::Module | 14 | 2026-04-26 | 1d5def215 | | Complete::Path | 1 | 2026-04-22 | e228c2529 | | Complete::Tcsh | 1 | 2026-04-22 | e228c2529 | | Complete::Zsh | 1 | 2026-04-22 | e228c2529 | | Config::Frontend | 136 | 2026-04-12 | c1942aad0 | +| Config::General::Match | 269 | 2026-04-26 | 1d5def215 | | Config::INI::Serializer | 9 | 2026-04-21 | 3f3336774 | | Config::Settings | 20 | 2026-04-22 | 3f3336774 | | Config::ZOMG | 97 | 2026-04-22 | 3f3336774 | +| ConfigReader::Simple | 204 | 2026-04-26 | 1d5def215 | | ConstantCalculus::CircleConstant | 1 | 2026-04-22 | 3f3336774 | | Convert::Base64 | 1 | 2026-04-22 | e228c2529 | +| Convert::NLS_DATE_FORMAT | 30 | 2026-04-26 | 1d5def215 | | Crypt::Random::Seed | 26 | 2026-04-12 | c1942aad0 | | Crypt::Random::TESHA2 | 20 | 2026-04-12 | c1942aad0 | | Crypt::SaltedHash | 10 | 2026-04-12 | cc5efa220 | | Crypt::SysRandom | 4 | 2026-04-12 | c1942aad0 | +| Cucumber::TagExpressions | 68 | 2026-04-26 | 1d5def215 | +| Cwalitee::Common | 1 | 2026-04-26 | 1d5def215 | | Cwd::Ext | 31 | 2026-04-12 | c1942aad0 | -| Cwd::Guard | 6 | 2026-04-22 | e228c2529 | +| Cwd::Guard | 6 | 2026-04-26 | 1d5def215 | | D64::Disk::Layout::Base | 23 | 2026-04-12 | c1942aad0 | | DB::Tutorial::DBIx::Class::PT::BR | 1 | 2026-04-21 | 73edc8aba | +| DBD::AnyData2 | 1 | 2026-04-25 | 1d5def215 | | DBD::Multiplex | 1 | 2026-04-12 | c1942aad0 | | DBD::WMI | 1 | 2026-04-22 | 3f3336774 | +| DBD::Wire10 | 3 | 2026-04-25 | 1d5def215 | +| DBIx::AnyDBD | 1 | 2026-04-26 | 1d5def215 | | DBIx::CSVDumper | 2 | 2026-04-22 | 3f3336774 | | DBIx::Class::HTMLWidget | 1 | 2026-04-22 | e228c2529 | | DBIx::Class::InflateColumn::Geo | 3 | 2026-04-12 | c1942aad0 | | DBIx::Class::InflateColumn::Time | 15 | 2026-04-21 | 73edc8aba | +| DBIx::Class::QueryLog | 43 | 2026-04-26 | 1d5def215 | | DBIx::Connect::Any | 1 | 2026-04-22 | 3f3336774 | | DBIx::Connect::FromConfig | 5 | 2026-04-12 | c1942aad0 | | DBIx::Connect::MySQL | 1 | 2026-04-22 | 3f3336774 | | DBIx::DBSchema | 8 | 2026-04-22 | 3f3336774 | | DBIx::Introspector | 17 | 2026-04-22 | 3f3336774 | +| DBIx::MultiDB | 11 | 2026-04-26 | 1d5def215 | | DBIx::MyPassword | 13 | 2026-04-12 | d833a1ecb | | DBIx::NamedQuery | 3 | 2026-04-22 | 3f3336774 | +| DBIx::ParseError::MySQL | 77 | 2026-04-25 | 1d5def215 | +| DBIx::TransactionManager::EndHook | 7 | 2026-04-25 | 1d5def215 | | DBIx::Wrapper::VerySimple | 20 | 2026-04-12 | c1942aad0 | | DCE::Perl::RPC | 4 | 2026-04-12 | c1942aad0 | | DD::Dummy | 2 | 2026-04-22 | 3f3336774 | +| DIME::Identifier | 1 | 2026-04-26 | 1d5def215 | | DNS::Record::Check | 5 | 2026-04-12 | c1942aad0 | | DNS::WorldWideDns | 8 | 2026-04-12 | c1942aad0 | | DNS::ZoneParse | 124 | 2026-04-22 | 3f3336774 | @@ -206,33 +272,58 @@ | Dancer2::Plugin::CSRF | 1 | 2026-04-22 | 3f3336774 | | Dancer2::Plugin::Showterm | 3 | 2026-04-22 | e228c2529 | | Dancer2::Template::MojoTemplate | 1 | 2026-04-22 | 3f3336774 | +| Dancer::Plugin::Database::Core | 26 | 2026-04-26 | 1d5def215 | | DarkPAN::Utils | 2 | 2026-04-21 | 73edc8aba | | Data::Debug | 2 | 2026-04-21 | 73edc8aba | | Data::Define | 57 | 2026-04-21 | 73edc8aba | | Data::Float | 719 | 2026-04-22 | 3f3336774 | +| Data::Flow | 12 | 2026-04-25 | 1d5def215 | +| Data::FormValidator::Constraints::MethodsFactory | 35 | 2026-04-26 | 1d5def215 | +| Data::Format::Pretty::JSON | 4 | 2026-04-26 | 1d5def215 | | Data::MethodProxy | 10 | 2026-04-12 | cc5efa220 | | Data::Monad | 71 | 2026-04-21 | 73edc8aba | | Data::Page::NoTotalEntries | 5 | 2026-04-21 | 3f3336774 | +| Data::Pairs | 179 | 2026-04-26 | 1d5def215 | +| Data::Phrasebook | 110 | 2026-04-26 | 1d5def215 | | Data::Properties::YAML | 10 | 2026-04-21 | 73edc8aba | +| Data::Sah::Normalize | 6 | 2026-04-25 | 1d5def215 | +| Data::Sah::Resolve | 4 | 2026-04-25 | 1d5def215 | | Data::Section::Simple | 8 | 2026-04-21 | 73edc8aba | +| Data::Table | 92 | 2026-04-26 | 1d5def215 | +| Data::Traverse | 5 | 2026-04-25 | 1d5def215 | | Data::Walk | 266 | 2026-04-12 | c1942aad0 | | Date::DayOfWeek | 32 | 2026-04-22 | e228c2529 | +| Date::Hijri | 3 | 2026-04-25 | 1d5def215 | | Date::Leapyear | 764 | 2026-04-22 | e228c2529 | | Date::Tolkien::Shire::Data | 5558 | 2026-04-12 | c1942aad0 | +| DateStamp | 46 | 2026-04-25 | 1d5def215 | +| DateTime::Calendar::Hijri | 2010 | 2026-04-25 | 1d5def215 | +| DateTime::Calendar::Pataphysical | 526 | 2026-04-25 | 1d5def215 | | DateTime::Calendar::TauStation | 69 | 2026-04-22 | 3f3336774 | +| DateTime::Duration::Fuzzy | 35 | 2026-04-25 | 1d5def215 | | DateTime::Duration::Patch::StringifyAsISO8601 | 1 | 2026-04-22 | 3f3336774 | -| DateTime::Format::DateParse | 261 | 2026-04-22 | 3f3336774 | +| DateTime::Format::DateParse | 261 | 2026-04-26 | 1d5def215 | | DateTime::Format::Duration::DurationString | 15 | 2026-04-22 | 3f3336774 | +| DateTime::Format::GeekTime | 17 | 2026-04-26 | 1d5def215 | | DateTime::Format::HTTP | 136 | 2026-04-21 | 73edc8aba | -| DateTime::Format::MySQL | 97 | 2026-04-22 | e228c2529 | -| DateTime::Format::Pg | 216 | 2026-04-22 | 3f3336774 | +| DateTime::Format::Human | 50 | 2026-04-26 | 1d5def215 | +| DateTime::Format::ICal | 134 | 2026-04-25 | 1d5def215 | +| DateTime::Format::MySQL | 97 | 2026-04-26 | 1d5def215 | +| DateTime::Format::Oracle | 76 | 2026-04-26 | 1d5def215 | +| DateTime::Format::PayPal::IPN | 2 | 2026-04-25 | 1d5def215 | +| DateTime::Format::Pg | 216 | 2026-04-26 | 1d5def215 | | DateTime::Format::Roman | 23 | 2026-04-22 | 3f3336774 | | DateTime::Format::Strptime | 143 | 2026-04-12 | cc5efa220 | | DateTime::Format::XSD | 2 | 2026-04-22 | e228c2529 | | DateTime::Functions | 2 | 2026-04-12 | c1942aad0 | +| DateTime::HiRes | 7 | 2026-04-26 | 1d5def215 | +| DateTime::Incomplete | 218 | 2026-04-25 | 1d5def215 | | DateTime::Moonpig | 22 | 2026-04-12 | c1942aad0 | +| DateTime::Set | 959 | 2026-04-26 | 1d5def215 | +| DateTime::Span | 959 | 2026-04-26 | 1d5def215 | | DateTime::TimeZone::Alias | 2453 | 2026-04-12 | c1942aad0 | | DateTime::TimeZone::Catalog::Extend | 355 | 2026-04-12 | c1942aad0 | +| DateTime::TimeZone::HPUX | 18 | 2026-04-25 | 1d5def215 | | DateTime::Tiny | 33 | 2026-04-22 | 3f3336774 | | DateTime::Util::DayOfWeek | 16 | 2026-04-22 | e228c2529 | | DateTimeX::Format::Ago | 602 | 2026-04-12 | c1942aad0 | @@ -242,6 +333,8 @@ | Devel::Cover::Report::Coveralls | 9 | 2026-04-21 | 73edc8aba | | Devel::FindPerl | 2 | 2026-04-22 | 3f3336774 | | Devel::StrictMode | 4 | 2026-04-21 | 73edc8aba | +| Devel::TakeHashArgs | 17 | 2026-04-26 | 1d5def215 | +| Device::Onkyo | 17 | 2026-04-25 | 1d5def215 | | Device::ParallelPort | 35 | 2026-04-12 | c1942aad0 | | Diamond | 1 | 2026-04-22 | 3f3336774 | | Digest::Adler32 | 10 | 2026-04-22 | 3f3336774 | @@ -249,13 +342,16 @@ | Dir::Watch | 5 | 2026-04-22 | 3f3336774 | | DublinCore::Element | 137 | 2026-04-12 | c1942aad0 | | DynGig::Multiplex | 4 | 2026-04-12 | c1942aad0 | +| DynGig::RCE | 7 | 2026-04-25 | 1d5def215 | | DynGig::Range | 10 | 2026-04-12 | c1942aad0 | | DynGig::Range::Time | 6 | 2026-04-12 | c1942aad0 | | DynGig::Schedule | 5 | 2026-04-22 | 3f3336774 | | DynGig::Util | 15 | 2026-04-12 | c1942aad0 | -| DynaLoader::Functions | 1 | 2026-04-22 | 3f3336774 | +| DynaLoader::Functions | 1 | 2026-04-26 | 1d5def215 | | ESPPlus::Storage | 45 | 2026-04-12 | c1942aad0 | | Eidolon | 126 | 2026-04-12 | c1942aad0 | +| Encode::Detect::CJK | 11 | 2026-04-26 | 1d5def215 | +| Encode::StdIO | 1 | 2026-04-26 | 1d5def215 | | Env::ShellWords | 14 | 2026-04-22 | 3f3336774 | | Error::Pure::Output::Text | 41 | 2026-04-12 | c1942aad0 | | Exception | 4 | 2026-04-12 | cc5efa220 | @@ -265,41 +361,60 @@ | ExtUtils::FindFunctions | 10 | 2026-04-21 | 73edc8aba | | ExtUtils::MakeMaker | 26 | 2026-04-22 | e228c2529 | | ExtUtils::MakeMaker::CPANfile | 5 | 2026-04-12 | c1942aad0 | +| ExtUtils::MakeMaker::META_MERGE::GitHub | 57 | 2026-04-25 | 1d5def215 | | FAST | 312 | 2026-04-12 | c1942aad0 | | FASTAParse | 21 | 2026-04-22 | 3f3336774 | +| FASTAid | 11 | 2026-04-25 | 1d5def215 | +| FASTX::Reader | 444 | 2026-04-26 | 1d5def215 | | FCGI::Client | 1 | 2026-04-22 | 3f3336774 | | FSM::Basic | 53 | 2026-04-12 | c1942aad0 | | FTN::Addr | 394 | 2026-04-21 | 73edc8aba | | FTN::Address | 24 | 2026-04-21 | 73edc8aba | | FTN::Msg | 1 | 2026-04-12 | c1942aad0 | +| FTN::Outbound::Reference_file | 8 | 2026-04-26 | 1d5def215 | | File::Bidirectional | 511 | 2026-04-22 | 3f3336774 | | File::Fetch | 304 | 2026-04-12 | c1942aad0 | | File::HomeDir | 90 | 2026-04-12 | cc5efa220 | +| File::ReadBackwards | 171 | 2026-04-26 | 1d5def215 | | File::ShareDir::Dist | 19 | 2026-04-12 | c1942aad0 | +| File::ShareDir::ProjectDistDir | 21 | 2026-04-26 | 1d5def215 | | File::ShareDir::Tiny | 35 | 2026-04-12 | c1942aad0 | | File::Signature | 53 | 2026-04-22 | 3f3336774 | | File::Slurp::Tiny | 10 | 2026-04-22 | e228c2529 | | File::Slurper | 8 | 2026-04-12 | cc5efa220 | | File::Spec::Native | 9 | 2026-04-21 | 73edc8aba | | File::Tabular | 32 | 2026-04-22 | 3f3336774 | -| File::Type | 58 | 2026-04-22 | 3f3336774 | +| File::Type | 58 | 2026-04-25 | 1d5def215 | | File::Versions | 10 | 2026-04-21 | 3f3336774 | +| File::XDG | 9 | 2026-04-26 | 1d5def215 | +| Filesys::Cap | 1 | 2026-04-26 | 1d5def215 | | FrameMaker::FromHTML | 1 | 2026-04-21 | 73edc8aba | +| FreeBSD::Pkgs | 5 | 2026-04-25 | 1d5def215 | +| FreeBSD::Src | 5 | 2026-04-26 | 1d5def215 | +| FreeDesktop::Icons | 68 | 2026-04-26 | 1d5def215 | | GPS::OID | 21 | 2026-04-21 | 73edc8aba | | Geo::Constants | 14 | 2026-04-21 | 73edc8aba | +| Geo::Coordinates::Transform | 17 | 2026-04-26 | 1d5def215 | +| Geo::Coordinates::UTM | 8114 | 2026-04-25 | 1d5def215 | | Geo::Ellipsoids | 49 | 2026-04-21 | 73edc8aba | | Geo::Forward | 2027 | 2026-04-21 | 73edc8aba | | Geo::Functions | 2239 | 2026-04-21 | 73edc8aba | | Geo::Inverse | 30 | 2026-04-21 | 73edc8aba | +| Geo::Postcode | 40 | 2026-04-25 | 1d5def215 | | Getopt::ArgvFile | 44 | 2026-04-22 | 3f3336774 | | Getopt::Complete | 18 | 2026-04-22 | 3f3336774 | +| Getopt::Easy | 14 | 2026-04-25 | 1d5def215 | | Getopt::Long::Complete | 3 | 2026-04-22 | e228c2529 | | Getopt::Lucid | 397 | 2026-04-22 | 3f3336774 | | Getopt::Mixed | 26 | 2026-04-12 | c1942aad0 | +| Gftracks | 60 | 2026-04-25 | 1d5def215 | +| Graphics::ColorNamesLite::WWW | 1 | 2026-04-26 | 1d5def215 | | Graphics::ColorUtils | 3708 | 2026-04-22 | 3f3336774 | | HON::EC2::Snapshots::Monitoring | 9 | 2026-04-21 | 73edc8aba | | HTML::AA | 1 | 2026-04-21 | 73edc8aba | | HTML::Calendar::Monthly | 3 | 2026-04-21 | 73edc8aba | +| HTML::CruftText | 2 | 2026-04-26 | 1d5def215 | +| HTML::Detoxifier | 1 | 2026-04-26 | 1d5def215 | | HTML::EasyTags | 79 | 2026-04-21 | 73edc8aba | | HTML::Email::Obfuscate | 24 | 2026-04-22 | 3f3336774 | | HTML::Form | 223 | 2026-04-12 | cc5efa220 | @@ -309,16 +424,29 @@ | HTML::FromArrayref | 16 | 2026-04-21 | 73edc8aba | | HTML::Menu::Hierarchical | 1 | 2026-04-22 | 3f3336774 | | HTML::Myasp | 1 | 2026-04-21 | 73edc8aba | +| HTML::Obliterate | 41 | 2026-04-26 | 1d5def215 | +| HTML::PageIndex | 1 | 2026-04-25 | 1d5def215 | | HTML::QuickTable | 8 | 2026-04-21 | 3f3336774 | +| HTML::SimpleParse | 23 | 2026-04-25 | 1d5def215 | +| HTML::Stream | 24 | 2026-04-25 | 1d5def215 | | HTML::StripScripts | 1894 | 2026-04-22 | 3f3336774 | | HTML::SuperForm | 1 | 2026-04-21 | 3f3336774 | | HTML::TableContentParser | 42 | 2026-04-22 | 3f3336774 | +| HTML::TableExtractor | 5 | 2026-04-25 | 1d5def215 | +| HTML::TagCloud | 21 | 2026-04-26 | 1d5def215 | +| HTML::TagCloud::Extended | 70 | 2026-04-26 | 1d5def215 | | HTML::Template::Compiled::Plugin::HTML2 | 13 | 2026-04-22 | 3f3336774 | +| HTML::Template::Compiled::Plugin::InlineImage | 3 | 2026-04-25 | 1d5def215 | | HTML::Template::Compiled::Plugin::VBEscape | 7 | 2026-04-21 | 73edc8aba | +| HTML::Template::Dumper | 13 | 2026-04-26 | 1d5def215 | | HTML::Template::Filter::TT2 | 37 | 2026-04-21 | 73edc8aba | +| HTML::Tiny | 2299 | 2026-04-26 | 1d5def215 | | HTML::Truncate | 129 | 2026-04-22 | 3f3336774 | -| HTTP::AcceptLanguage | 23 | 2026-04-21 | 3f3336774 | +| HTML::Widgets::Table | 1 | 2026-04-25 | 1d5def215 | +| HTTP::AcceptLanguage | 23 | 2026-04-25 | 1d5def215 | | HTTP::BrowserDetect | 2601 | 2026-04-12 | c1942aad0 | +| HTTP::BrowserDetect::isRobot | 17 | 2026-04-26 | 1d5def215 | +| HTTP::Engine::FirePHP | 1 | 2026-04-25 | 1d5def215 | | HTTP::Link::Parser | 1 | 2026-04-21 | 73edc8aba | | HTTP::Lite | 21 | 2026-04-22 | 3f3336774 | | HTTP::Negotiate | 5 | 2026-04-22 | 3f3336774 | @@ -327,50 +455,79 @@ | HTTP::Retry | 5 | 2026-04-22 | 3f3336774 | | HTTP::Server::Simple::PSGI | 1 | 2026-04-12 | c1942aad0 | | HTTP::Server::Simple::Static | 2 | 2026-04-21 | 3f3336774 | +| HTTP::ServerEvent | 40 | 2026-04-25 | 1d5def215 | | HTTP::Simple | 778 | 2026-04-22 | 3f3336774 | | HTTP::Throwable | 48 | 2026-04-22 | 3f3336774 | | HTTP::Tiny::Bandwidth | 1 | 2026-04-22 | 3f3336774 | | HTTP::Tiny::FileProtocol | 46 | 2026-04-22 | 3f3336774 | | HTTP::Tiny::Multipart | 29 | 2026-04-21 | 73edc8aba | +| HTTP::Tiny::Patch::SetUserAgent | 1 | 2026-04-25 | 1d5def215 | | HTTP::Tiny::Plugin::Delay | 1 | 2026-04-21 | 73edc8aba | | HTTP::Tinyish | 1 | 2026-04-22 | 3f3336774 | | HTTPD::Bench::ApacheBench | 46 | 2026-04-21 | 73edc8aba | +| HTTPD::Log::Filter | 25 | 2026-04-26 | 1d5def215 | +| Hash::Layout | 159 | 2026-04-26 | 1d5def215 | +| Hash::MD5 | 34 | 2026-04-25 | 1d5def215 | | Hash::MoreUtils | 66 | 2026-04-12 | c1942aad0 | +| HashData::Array | 90 | 2026-04-25 | 1d5def215 | | HashData::Color::CMYK::JohnDecemberCom | 1 | 2026-04-21 | 73edc8aba | +| HashData::ColorCode::CMYK::ToutesLesCouleursCom | 12 | 2026-04-26 | 1d5def215 | | HashDataRole::Source::LinesInDATA | 90 | 2026-04-21 | 73edc8aba | | HashDataRole::Spec::Basic | 8 | 2026-04-21 | 73edc8aba | +| Hither | 2 | 2026-04-26 | 1d5def215 | | I18N::AcceptLanguage | 34 | 2026-04-22 | e228c2529 | | I18NFool | 25 | 2026-04-22 | 3f3336774 | +| IBM::ThinkPad::ACPI::Extras | 1 | 2026-04-25 | 1d5def215 | +| IMDB::TitlePage::Extract | 1 | 2026-04-26 | 1d5def215 | | IO::BufferedSelect | 1 | 2026-04-22 | 3f3336774 | -| IO::File::AtomicChange | 26 | 2026-04-21 | 73edc8aba | +| IO::File::AtomicChange | 26 | 2026-04-26 | 1d5def215 | | IO::Handle::Util | 373 | 2026-04-22 | 3f3336774 | | IO::Null | 5 | 2026-04-21 | 73edc8aba | +| IO::Pipeline | 1 | 2026-04-26 | 1d5def215 | | IO::Prompt::Tiny | 5 | 2026-04-12 | c1942aad0 | +| IO::React | 12 | 2026-04-25 | 1d5def215 | | IO::Scalar | 127 | 2026-04-12 | cc5efa220 | +| IO::Socket::RedisPubSub | 2 | 2026-04-26 | 1d5def215 | | IO::Socket::SecureSocks | 2 | 2026-04-22 | 3f3336774 | +| IO::Socket::Timeout | 9 | 2026-04-26 | 1d5def215 | | IO::TieCombine | 7 | 2026-04-12 | cc5efa220 | | IPC::Capture | 14 | 2026-04-21 | 73edc8aba | +| IPC::Open2::Simple | 4 | 2026-04-25 | 1d5def215 | +| IPC::Open3::Utils | 97 | 2026-04-26 | 1d5def215 | +| IPC::Run::SafeHandles | 6 | 2026-04-26 | 1d5def215 | | IPC::Signal | 7 | 2026-04-21 | 73edc8aba | +| IPTables::Parse | 1 | 2026-04-25 | 1d5def215 | | IPTables::Rule | 205 | 2026-04-21 | 73edc8aba | | Image::GIF::Encoder::PP | 2 | 2026-04-12 | cc5efa220 | | Image::SVG::Path | 185 | 2026-04-21 | 73edc8aba | | InfluxDB::LineProtocol | 167 | 2026-04-22 | 3f3336774 | | InfoBrief | 2 | 2026-04-22 | 3f3336774 | +| Input::Validator | 247 | 2026-04-26 | 1d5def215 | +| JLogger | 12 | 2026-04-25 | 1d5def215 | | JSAN::Parse::FileDeps | 9 | 2026-04-22 | 3f3336774 | | JSAN::ServerSide | 13 | 2026-04-22 | 3f3336774 | +| JSON::Color | 6 | 2026-04-26 | 1d5def215 | | JSON::DJARE::Writer | 25 | 2026-04-22 | 3f3336774 | | JSON::Diffable | 2 | 2026-04-21 | 73edc8aba | +| JSON::Feed | 43 | 2026-04-25 | 1d5def215 | +| JSON::LINQ | 729 | 2026-04-26 | 1d5def215 | +| JSON::PP::Compat5006 | 2 | 2026-04-26 | 1d5def215 | +| JSON::Pointer | 63 | 2026-04-25 | 1d5def215 | +| JSON::Schema::Validate | 284 | 2026-04-26 | 1d5def215 | | JavaScript::Autocomplete::Backend | 10 | 2026-04-21 | 73edc8aba | +| JavaScript::MochiKit | 6 | 2026-04-25 | 1d5def215 | | JavaScript::Swell | 3 | 2026-04-21 | 73edc8aba | | JavaScript::Value::Escape | 4 | 2026-04-22 | 3f3336774 | | JavaScript::XRay | 19 | 2026-04-21 | 73edc8aba | | Jq | 1 | 2026-04-21 | 73edc8aba | | KIF::Bootloader | 1 | 2026-04-21 | 73edc8aba | | Kasago | 3 | 2026-04-21 | 73edc8aba | -| LCS | 219 | 2026-04-21 | 73edc8aba | -| LEOCHARRE::CLI | 22 | 2026-04-12 | c1942aad0 | -| LEOCHARRE::DEBUG | 10 | 2026-04-21 | 3f3336774 | +| Kwargs | 7 | 2026-04-25 | 1d5def215 | +| LCS | 219 | 2026-04-25 | 1d5def215 | +| LEOCHARRE::CLI | 22 | 2026-04-25 | 1d5def215 | +| LEOCHARRE::DEBUG | 10 | 2026-04-26 | 1d5def215 | | LWP::UserAgent::Patch::Delay | 1 | 2026-04-22 | 3f3336774 | +| LWP::UserAgent::Plugin::Delay | 1 | 2026-04-26 | 1d5def215 | | Limper | 1 | 2026-04-22 | e228c2529 | | Limper::Engine::PSGI | 9 | 2026-04-22 | e228c2529 | | Limper::SendFile | 1 | 2026-04-22 | e228c2529 | @@ -381,86 +538,131 @@ | Lingua::EN::Number::IsOrdinal | 20 | 2026-04-12 | c1942aad0 | | Lingua::EN::Words2Nums | 66 | 2026-04-12 | c1942aad0 | | Lingua::GL::Stemmer | 12 | 2026-04-12 | c1942aad0 | +| Lingua::Han::Utils | 11 | 2026-04-26 | 1d5def215 | +| Lingua::Identify::Any | 1 | 2026-04-26 | 1d5def215 | | Lingua::PT::Abbrev | 7 | 2026-04-22 | 3f3336774 | -| Lingua::Stem | 7 | 2026-04-22 | e228c2529 | +| Lingua::Stem | 7 | 2026-04-26 | 1d5def215 | | Lingua::Stem::Fr | 16 | 2026-04-12 | c1942aad0 | | Lingua::Stem::It | 98 | 2026-04-12 | c1942aad0 | -| Lingua::Stem::Snowball::No | 20633 | 2026-04-22 | e228c2529 | -| Lingua::Stem::Snowball::Se | 30628 | 2026-04-22 | e228c2529 | +| Lingua::Stem::Snowball::No | 20633 | 2026-04-26 | 1d5def215 | +| Lingua::Stem::Snowball::Se | 30628 | 2026-04-26 | 1d5def215 | | Lingua::StopWords | 85 | 2026-04-22 | 3f3336774 | | Linux::usermod | 10 | 2026-04-12 | c1942aad0 | | List::Categorize | 20 | 2026-04-22 | 3f3336774 | -| Locale::SubCountry | 15 | 2026-04-21 | 73edc8aba | +| List::Cycle | 33 | 2026-04-25 | 1d5def215 | +| List::Uniq | 37 | 2026-04-26 | 1d5def215 | +| Locale::SubCountry | 15 | 2026-04-25 | 1d5def215 | | Log::Any::Adapter::Callback | 2 | 2026-04-21 | 3f3336774 | +| Log::Any::Adapter::Screen | 1 | 2026-04-25 | 1d5def215 | | Log::Any::Plugin::Format | 4 | 2026-04-22 | 3f3336774 | | Log::Any::Plugin::History | 9 | 2026-04-22 | 3f3336774 | +| Log::Log4perl::Appender::TAP | 5 | 2026-04-26 | 1d5def215 | | Log::Message | 40 | 2026-04-22 | 3f3336774 | | Log::Message::Simple | 97 | 2026-04-22 | 3f3336774 | -| Log::Minimal | 53 | 2026-04-21 | 73edc8aba | +| Log::Minimal | 53 | 2026-04-26 | 1d5def215 | | Log::ger::Level::trace | 8 | 2026-04-21 | 73edc8aba | | MARC::Parser::RAW | 19 | 2026-04-22 | 3f3336774 | | METS::Parse::Simple | 5 | 2026-04-22 | 3f3336774 | +| MIME::Lite::TT | 1 | 2026-04-25 | 1d5def215 | | MMS::Mail::Message | 32 | 2026-04-22 | 3f3336774 | | MMS::Mail::Message::Parsed | 29 | 2026-04-22 | 3f3336774 | | MMS::Mail::Provider | 2 | 2026-04-22 | 3f3336774 | +| MMS::Mail::Provider::UKVirgin | 5 | 2026-04-26 | 1d5def215 | | MP3::M3U::Parser | 27 | 2026-04-22 | 3f3336774 | +| MT::Import::Base | 1 | 2026-04-26 | 1d5def215 | | Math::Cartesian::Product | 88 | 2026-04-21 | 73edc8aba | | Math::Combinatorics | 25 | 2026-04-21 | 73edc8aba | | Math::Currency | 185 | 2026-04-21 | 73edc8aba | +| Math::Fibonacci::Phi | 1 | 2026-04-25 | 1d5def215 | | Math::ReedSolomon::Encoder | 9 | 2026-04-21 | 73edc8aba | | Math::Round | 10 | 2026-04-22 | 3f3336774 | | Math::Round::Var | 10 | 2026-04-12 | c1942aad0 | +| Math::SparseMatrix | 45 | 2026-04-26 | 1d5def215 | +| Math::String | 667 | 2026-04-25 | 1d5def215 | +| Math::Vector::Similarity | 27 | 2026-04-26 | 1d5def215 | +| MathML::Entities | 12 | 2026-04-26 | 1d5def215 | +| MealMaster | 85 | 2026-04-25 | 1d5def215 | +| MediaWiki::Bot::Plugin::Steward | 6 | 2026-04-26 | 1d5def215 | +| Merror | 8 | 2026-04-26 | 1d5def215 | | Method::WeakCallback | 13 | 2026-04-12 | c1942aad0 | +| Mew | 44 | 2026-04-25 | 1d5def215 | | ModPerl::VersionUtil | 25 | 2026-04-21 | 73edc8aba | -| Module::Build::Pluggable | 4 | 2026-04-22 | 3f3336774 | +| Module::Build::FFI | 5 | 2026-04-26 | 1d5def215 | +| Module::Build::Pluggable | 4 | 2026-04-25 | 1d5def215 | | Module::Build::Pluggable::CPANfile | 1 | 2026-04-22 | 3f3336774 | -| Module::Build::Prereqs::FromCPANfile | 11 | 2026-04-22 | 3f3336774 | +| Module::Build::Pluggable::PPPort | 1 | 2026-04-25 | 1d5def215 | +| Module::Build::Prereqs::FromCPANfile | 11 | 2026-04-26 | 1d5def215 | | Module::Build::WithXSpp | 1 | 2026-04-12 | c1942aad0 | | Module::Depends | 20 | 2026-04-22 | e228c2529 | +| Module::Optional | 19 | 2026-04-26 | 1d5def215 | | Module::Pluggable::Fast | 6 | 2026-04-12 | cc5efa220 | -| MooX::ChainedAttributes | 9 | 2026-04-21 | 73edc8aba | +| MooX | 9 | 2026-04-25 | 1d5def215 | +| MooX::ChainedAttributes | 9 | 2026-04-25 | 1d5def215 | +| MooX::Role::SEOTags | 21 | 2026-04-26 | 1d5def215 | +| MooX::SetOnce | 24 | 2026-04-26 | 1d5def215 | +| MooX::ShortHas | 18 | 2026-04-25 | 1d5def215 | | MooX::Should | 10 | 2026-04-21 | 73edc8aba | -| MooX::Singleton | 139 | 2026-04-22 | 3f3336774 | +| MooX::Singleton | 139 | 2026-04-26 | 1d5def215 | | MooX::StrictConstructor | 23 | 2026-04-21 | 73edc8aba | | MooX::Thunking | 16 | 2026-04-22 | 3f3336774 | +| MooX::TypeTiny | 43 | 2026-04-26 | 1d5def215 | | MooX::Types::MooseLike | 169 | 2026-04-22 | 3f3336774 | | MooX::Types::MooseLike::Base | 169 | 2026-04-12 | c1942aad0 | +| MooX::Types::MooseLike::DateTime | 7 | 2026-04-25 | 1d5def215 | | MooX::Types::MooseLike::Numeric | 43 | 2026-04-12 | c1942aad0 | | MooseX::ConstructInstance | 13 | 2026-04-22 | 3f3336774 | | MooseX::Log::Log4perl | 30 | 2026-04-21 | 73edc8aba | +| MooseX::Role::Logger | 7 | 2026-04-26 | 1d5def215 | +| Morale | 1 | 2026-04-26 | 1d5def215 | +| MozRepl::RemoteObject | 1 | 2026-04-26 | 1d5def215 | | Mozilla::CA | 2 | 2026-04-12 | c1942aad0 | +| Mu | 14 | 2026-04-25 | 1d5def215 | | Mutex | 8 | 2026-04-22 | e228c2529 | | MyDB::Schema | 129 | 2026-04-22 | 3f3336774 | | MyDemoServer | 2 | 2026-04-21 | 73edc8aba | +| MyPassword | 107 | 2026-04-25 | 1d5def215 | +| MySQL::Backup | 1 | 2026-04-26 | 1d5def215 | | MySQL::Config | 82 | 2026-04-21 | 73edc8aba | | NOTEDB | 3 | 2026-04-21 | 73edc8aba | | Neo4j::Error | 28 | 2026-04-21 | 73edc8aba | | Neo4j::Types | 124 | 2026-04-21 | 73edc8aba | | Net::Amazon::Signature::V4 | 126 | 2026-04-21 | 73edc8aba | +| Net::CIDR | 6 | 2026-04-26 | 1d5def215 | | Net::CIDR::Lite | 54 | 2026-04-12 | c1942aad0 | | Net::CIDR::Set | 219 | 2026-04-12 | c1942aad0 | +| Net::DNS::Paranoid | 13 | 2026-04-26 | 1d5def215 | | Net::DNS::RR::SRV::Helper | 5 | 2026-04-22 | 3f3336774 | | Net::FastCGI | 408 | 2026-04-21 | 73edc8aba | | Net::GPSD::Satellite | 53 | 2026-04-21 | 73edc8aba | | Net::IP | 36069 | 2026-04-21 | 3f3336774 | +| Net::IP::Route::Reject | 2 | 2026-04-26 | 1d5def215 | | Net::LDAP::Makepath | 5 | 2026-04-22 | 3f3336774 | +| Net::MAC | 964 | 2026-04-26 | 1d5def215 | | Net::OpenSSH | 19 | 2026-04-21 | 73edc8aba | | Net::SOCKS | 1 | 2026-04-22 | 3f3336774 | | Net::Telnet | 3 | 2026-04-12 | cc5efa220 | +| Net::Wire10 | 2 | 2026-04-25 | 1d5def215 | +| Number::Bytes::Human | 222 | 2026-04-26 | 1d5def215 | | OCR::OcrSpace | 7 | 2026-04-22 | 3f3336774 | | OLE::Storage_Lite | 199 | 2026-04-22 | 3f3336774 | +| OVH::OvhApi | 15 | 2026-04-26 | 1d5def215 | +| Object::Tiny::RW | 28 | 2026-04-26 | 1d5def215 | | OpenMP::Environment | 431 | 2026-04-22 | 3f3336774 | | OpenTracing::GlobalTracer | 1 | 2026-04-21 | 73edc8aba | +| OptionHash | 11 | 2026-04-25 | 1d5def215 | | OpusVL::Text::Util | 50 | 2026-04-12 | cc5efa220 | | OurNet::BBSAgent | 2 | 2026-04-12 | cc5efa220 | | PAR::Repository::Query | 1 | 2026-04-22 | 3f3336774 | | PBS::Client | 15 | 2026-04-21 | 73edc8aba | | PCGI | 1 | 2026-04-22 | 3f3336774 | +| PDF::Burst | 43 | 2026-04-25 | 1d5def215 | | PDF::Create | 211 | 2026-04-21 | 73edc8aba | +| PDF::Kit | 3 | 2026-04-26 | 1d5def215 | | PDF::Table | 31 | 2026-04-21 | 73edc8aba | | PERLANCAR::List::Util::PP | 1 | 2026-04-21 | 73edc8aba | | PERLANCAR::Tree::Examples | 1 | 2026-04-22 | 3f3336774 | | PGObject::Util::LogRep::TestDecoding | 22 | 2026-04-21 | 73edc8aba | +| PGP::Words::Tiny | 7 | 2026-04-26 | 1d5def215 | | PITA::Test::Dummy::Perl5::Build | 2 | 2026-04-21 | 73edc8aba | | PITA::Test::Dummy::Perl5::Deps | 2 | 2026-04-21 | 73edc8aba | | PITA::Test::Dummy::Perl5::MI | 3 | 2026-04-21 | 73edc8aba | @@ -468,22 +670,42 @@ | PMIR | 1 | 2026-04-22 | 3f3336774 | | POD2::Base | 28 | 2026-04-21 | 73edc8aba | | POE::Component::FastCGI | 27 | 2026-04-21 | 73edc8aba | +| POE::Component::IRC::Object | 1 | 2026-04-26 | 1d5def215 | | POE::Component::IRC::Plugin::IRCDHelp | 1 | 2026-04-21 | 73edc8aba | +| POE::Component::IRC::Plugin::MultiProxy | 5 | 2026-04-25 | 1d5def215 | | POE::Component::Log4perl | 2 | 2026-04-21 | 73edc8aba | +| POE::Component::MXML | 27 | 2026-04-26 | 1d5def215 | | POE::Component::Pluggable | 12 | 2026-04-21 | 73edc8aba | +| POE::Component::Schedule | 137 | 2026-04-26 | 1d5def215 | | POE::Component::Syndicator | 44 | 2026-04-22 | 3f3336774 | +| POE::Devel::Profiler | 3 | 2026-04-26 | 1d5def215 | +| POE::Filter::BigBrother | 14 | 2026-04-25 | 1d5def215 | +| POE::Filter::CSV | 11 | 2026-04-25 | 1d5def215 | +| POE::Filter::JSONMaybeXS | 6 | 2026-04-26 | 1d5def215 | +| POE::Filter::KennySpeak | 38 | 2026-04-25 | 1d5def215 | +| POE::Filter::Redis | 61 | 2026-04-26 | 1d5def215 | | POE::Filter::Slim::CLI | 18 | 2026-04-21 | 73edc8aba | | POE::Filter::Transparent::SMTP | 53 | 2026-04-21 | 73edc8aba | +| POE::TIKC | 1 | 2026-04-26 | 1d5def215 | | POE::Wheel::Sendfile | 43 | 2026-04-22 | 3f3336774 | +| PPM::Repositories | 6 | 2026-04-25 | 1d5def215 | | PT::PostalCode | 41 | 2026-04-22 | 3f3336774 | | PYX::Stack | 24 | 2026-04-21 | 73edc8aba | +| Papery | 57 | 2026-04-26 | 1d5def215 | | Parse::RecDescent | 139 | 2026-04-22 | 3f3336774 | | Parse::Yapp | 33 | 2026-04-21 | 3f3336774 | +| PartialApplication | 17 | 2026-04-26 | 1d5def215 | +| Passwd::Keyring::Auto | 97 | 2026-04-26 | 1d5def215 | +| Passwd::Keyring::Memory | 72 | 2026-04-26 | 1d5def215 | | Path::Class::File::Lockable | 18 | 2026-04-22 | 3f3336774 | | Path::Class::File::Stat | 16 | 2026-04-22 | 3f3336774 | +| Path::FindDev | 5 | 2026-04-26 | 1d5def215 | +| Path::IsDev | 111 | 2026-04-26 | 1d5def215 | | Perl5::Build::Warnings | 43 | 2026-04-21 | 73edc8aba | | Perl6::Caller | 93 | 2026-04-21 | 73edc8aba | -| PerlIO::via::Timeout | 1 | 2026-04-22 | 3f3336774 | +| Perl6::Doc | 1 | 2026-04-26 | 1d5def215 | +| PerlIO::via::Timeout | 1 | 2026-04-26 | 1d5def215 | +| PerlPoint::Generator::XML::XHTML | 2 | 2026-04-26 | 1d5def215 | | PerlPoint::Import::POD | 2 | 2026-04-22 | 3f3336774 | | PerlX::ifor | 2 | 2026-04-21 | 73edc8aba | | Plack::App::Proxy | 7 | 2026-04-21 | 73edc8aba | @@ -493,139 +715,224 @@ | Plack::Middleware::Header | 7 | 2026-04-21 | 73edc8aba | | Plack::Middleware::MethodOverride | 36 | 2026-04-21 | 73edc8aba | | Plack::Middleware::ReverseProxy | 40 | 2026-04-21 | 73edc8aba | +| Plack::Middleware::Timeout | 12 | 2026-04-25 | 1d5def215 | +| Plack::Session | 532 | 2026-04-26 | 1d5def215 | | Plack::Test::ExternalServer | 1 | 2026-04-21 | 73edc8aba | | PlayStation::MemoryCard | 1 | 2026-04-12 | cc5efa220 | | Pod::Constants | 20 | 2026-04-21 | 73edc8aba | +| Pod::Elemental::Transformer::Codebox | 1 | 2026-04-25 | 1d5def215 | +| Pod::Elemental::Transformer::PPIHTML | 1 | 2026-04-25 | 1d5def215 | +| Pod::Elemental::Transformer::VimHTML | 1 | 2026-04-25 | 1d5def215 | | Pod::Extract | 1 | 2026-04-21 | 73edc8aba | +| Pod::Markdown::Github | 24 | 2026-04-26 | 1d5def215 | | Pod::Simpler::Aoh | 11 | 2026-04-22 | 3f3336774 | | Pod::Xhtml | 43 | 2026-04-21 | 3f3336774 | | Preloaded | 55 | 2026-04-22 | 3f3336774 | | Probe::Perl | 19 | 2026-04-21 | 73edc8aba | +| Proc::Find | 5 | 2026-04-26 | 1d5def215 | | Progress::Any | 6 | 2026-04-21 | 73edc8aba | +| Properties | 9 | 2026-04-26 | 1d5def215 | | Protocol::Notifo | 40 | 2026-04-12 | c1942aad0 | | Pye | 1 | 2026-04-21 | 73edc8aba | +| Queue::Base | 22 | 2026-04-25 | 1d5def215 | +| RCU | 1 | 2026-04-25 | 1d5def215 | | RDF::NS::Curated | 14 | 2026-04-22 | 3f3336774 | | RDF::Prefixes | 25 | 2026-04-22 | 3f3336774 | +| RF::Functions | 24 | 2026-04-25 | 1d5def215 | +| RPM::NEVRA | 4 | 2026-04-25 | 1d5def215 | +| RPSL | 2 | 2026-04-26 | 1d5def215 | | RPi::Const | 78 | 2026-04-21 | 73edc8aba | +| RPi::GPIOExpander::MCP23017 | 1 | 2026-04-26 | 1d5def215 | | RPi::I2C | 1 | 2026-04-22 | 3f3336774 | | RPi::MultiPCA9685 | 1 | 2026-04-22 | 3f3336774 | +| RPi::WiringPi::Constant | 53 | 2026-04-25 | 1d5def215 | +| RT::Client::CLI | 3 | 2026-04-25 | 1d5def215 | +| RT::Condition::NotStartedInBusinessHours | 5 | 2026-04-25 | 1d5def215 | | RT::Extension::GroupBroadcast | 2 | 2026-04-22 | 3f3336774 | | RT::Extension::MandatoryRequestor | 5 | 2026-04-21 | 73edc8aba | +| RT::Extension::TicketPDF | 2 | 2026-04-26 | 1d5def215 | | RTFM::Extension::ArticleTemplates | 3 | 2026-04-22 | 3f3336774 | | RTMP::Client | 1 | 2026-04-22 | 3f3336774 | +| Random::Any | 2 | 2026-04-25 | 1d5def215 | | Range::Iter | 8 | 2026-04-21 | 73edc8aba | +| RateLimitations::Pluggable | 12 | 2026-04-25 | 1d5def215 | +| Redis | 4 | 2026-04-26 | 1d5def215 | | Regexp::Trie | 1 | 2026-04-12 | c1942aad0 | +| ReleaseAction | 6 | 2026-04-25 | 1d5def215 | | ReplaceMultiple | 1 | 2026-04-21 | 73edc8aba | +| Return::Value | 98 | 2026-04-25 | 1d5def215 | +| RogueCurses | 1 | 2026-04-25 | 1d5def215 | +| RogueQuest | 1 | 2026-04-25 | 1d5def215 | | Role::TinyCommons::BinarySearch::LinesInHandle | 1 | 2026-04-21 | 3f3336774 | | Role::TinyCommons::Collection::GetItemByPos | 11 | 2026-04-21 | 73edc8aba | | Role::TinyCommons::Iterator::Resettable | 12 | 2026-04-21 | 73edc8aba | | Role::TinyCommons::Tree::NodeMethods | 21 | 2026-04-22 | 3f3336774 | | Rose::DateTime | 5554 | 2026-04-22 | 3f3336774 | | Rose::ObjectX::CAF | 10 | 2026-04-22 | 3f3336774 | +| Router::Generic | 81 | 2026-04-26 | 1d5def215 | +| Router::Simple | 43 | 2026-04-25 | 1d5def215 | +| RowFunc | 1 | 2026-04-26 | 1d5def215 | | SIL::Encode_all | 2 | 2026-04-21 | 73edc8aba | | SMS::Send::Sergel::Simple::HTTP | 1 | 2026-04-22 | 3f3336774 | +| SMS::Send::TW::Qma | 1 | 2026-04-25 | 1d5def215 | | SNMP::ToolBox | 96 | 2026-04-22 | 3f3336774 | +| SOAP::DateTime | 2 | 2026-04-26 | 1d5def215 | | SOAP::DirectI | 12 | 2026-04-22 | 3f3336774 | | SOOT::App | 1 | 2026-04-22 | 3f3336774 | | SQL::Abstract::Limit | 32 | 2026-04-21 | 73edc8aba | | SQL::Abstract::Pg | 15 | 2026-04-22 | 3f3336774 | | SQL::Easy | 1 | 2026-04-22 | 3f3336774 | +| SQL::Maker | 103 | 2026-04-26 | 1d5def215 | +| SQL::PatchDAG | 24 | 2026-04-26 | 1d5def215 | | SQL::QueryMaker | 17 | 2026-04-21 | 3f3336774 | +| SQL::ReservedWords | 376 | 2026-04-26 | 1d5def215 | +| SQL::Script | 15 | 2026-04-26 | 1d5def215 | +| SQL::SqlObject | 28 | 2026-04-25 | 1d5def215 | | SQL::Tokenizer | 71 | 2026-04-21 | 73edc8aba | +| SQL::Wizard | 311 | 2026-04-26 | 1d5def215 | | SVG::Calendar | 137 | 2026-04-22 | 3f3336774 | +| SVG::Parser | 15 | 2026-04-26 | 1d5def215 | +| SVG::Template::Graph | 51 | 2026-04-25 | 1d5def215 | +| SVN::Dumpfilter | 1 | 2026-04-26 | 1d5def215 | | Script::isAperlScript | 5 | 2026-04-22 | 3f3336774 | | Search::Elasticsearch::Compat::QueryParser | 207 | 2026-04-22 | e228c2529 | -| Search::QueryParser | 17 | 2026-04-22 | 3f3336774 | +| Search::QueryParser | 17 | 2026-04-25 | 1d5def215 | +| Sed | 3 | 2026-04-26 | 1d5def215 | | Set::Infinite | 446 | 2026-04-21 | 73edc8aba | +| Shell | 14 | 2026-04-26 | 1d5def215 | +| Shell::Command | 7 | 2026-04-26 | 1d5def215 | | Shell::Config::Generate | 80 | 2026-04-12 | c1942aad0 | | Shell::Guess | 181 | 2026-04-12 | c1942aad0 | +| SkewHeap::PP | 3 | 2026-04-26 | 1d5def215 | +| Solr | 1 | 2026-04-25 | 1d5def215 | +| Soo | 9 | 2026-04-26 | 1d5def215 | | Sort::Naturally | 23 | 2026-04-22 | 3f3336774 | | Sort::SQL | 12 | 2026-04-21 | 73edc8aba | | Sort::Versions | 96 | 2026-04-12 | c1942aad0 | +| SortKey::Num::file_mtime | 1 | 2026-04-25 | 1d5def215 | | SortSpec | 1 | 2026-04-22 | 3f3336774 | | Splunklib | 5 | 2026-04-22 | 3f3336774 | | StanzaFile | 1 | 2026-04-21 | 73edc8aba | -| Statistics::Contingency | 24 | 2026-04-22 | e228c2529 | -| Statistics::Descriptive | 131 | 2026-04-22 | 3f3336774 | +| Statistics::ChiSquare | 11 | 2026-04-26 | 1d5def215 | +| Statistics::Contingency | 24 | 2026-04-26 | 1d5def215 | +| Statistics::Descriptive | 131 | 2026-04-26 | 1d5def215 | | Stream::Reader | 1 | 2026-04-22 | 3f3336774 | | String::CamelSnakeKebab | 30 | 2026-04-22 | 3f3336774 | | String::Escape | 46 | 2026-04-22 | 3f3336774 | +| String::Expand | 16 | 2026-04-26 | 1d5def215 | | String::Formatter | 22 | 2026-04-12 | c1942aad0 | | String::Interpolate::RE | 32 | 2026-04-22 | e228c2529 | +| String::LineNumber | 5 | 2026-04-26 | 1d5def215 | | String::Numeric | 664 | 2026-04-22 | 3f3336774 | -| String::Random | 202 | 2026-04-22 | 3f3336774 | +| String::Random | 202 | 2026-04-26 | 1d5def215 | | String::RewritePrefix | 39 | 2026-04-12 | cc5efa220 | +| String::Super | 42 | 2026-04-26 | 1d5def215 | +| String::Tokenizer | 117 | 2026-04-26 | 1d5def215 | +| Struct::Compare | 23 | 2026-04-26 | 1d5def215 | +| StupidMarkov | 3 | 2026-04-25 | 1d5def215 | | Sub::MultiMethod | 135 | 2026-04-22 | 3f3336774 | | Syntax::Highlight::Engine::Kate | 588 | 2026-04-22 | 3f3336774 | | Sys::Syscall | 1 | 2026-04-12 | c1942aad0 | | TAP::Harness::Metrics | 4 | 2026-04-12 | cc5efa220 | +| TAP::Harness::Remote | 2 | 2026-04-26 | 1d5def215 | | TOML::Dumper | 12 | 2026-04-22 | 3f3336774 | +| TOON | 22 | 2026-04-26 | 1d5def215 | | TRD::DebugLog | 2 | 2026-04-22 | 3f3336774 | +| TSQL::Common::Regexp | 2 | 2026-04-25 | 1d5def215 | | TUI::App | 27 | 2026-04-22 | 3f3336774 | +| TXTCOD | 1 | 2026-04-25 | 1d5def215 | +| TableData::Lingua::Word::EN::Adjective::TalkEnglish | 2 | 2026-04-25 | 1d5def215 | +| TableData::Lingua::Word::EN::ByClass::Adjective::TalkEnglish | 2 | 2026-04-25 | 1d5def215 | +| TableData::Perl::CPAN::Release::Static::1995 | 28 | 2026-04-26 | 1d5def215 | +| TableData::Perl::CPAN::Release::Static::2023 | 1 | 2026-04-26 | 1d5def215 | +| TableDef | 3 | 2026-04-25 | 1d5def215 | | Tags | 196 | 2026-04-22 | 3f3336774 | | Tak | 32 | 2026-04-22 | 3f3336774 | | Template::Plugin::Class | 2 | 2026-04-21 | 73edc8aba | +| Template::Plugin::HTML::SuperForm | 1 | 2026-04-26 | 1d5def215 | +| Template::Provider::FromDATA | 49 | 2026-04-26 | 1d5def215 | | Template::Timer | 5 | 2026-04-21 | 73edc8aba | | Term::CallEditor | 16 | 2026-04-22 | 3f3336774 | | Term::Encoding | 8 | 2026-04-22 | 3f3336774 | -| Term::ReadKey | 1 | 2026-04-22 | e228c2529 | +| Term::ReadKey | 1 | 2026-04-26 | 1d5def215 | | Term::Screen | 29 | 2026-04-12 | c1942aad0 | | Term::UI | 36 | 2026-04-22 | 3f3336774 | +| Test2::Plugin::FauxHomeDir | 9 | 2026-04-26 | 1d5def215 | +| Test2::Plugin::TodoFailOnSuccess | 5 | 2026-04-25 | 1d5def215 | | Test::API | 32 | 2026-04-12 | c1942aad0 | | Test::CPAN::Meta | 196 | 2026-04-12 | c1942aad0 | | Test::Carp | 72 | 2026-04-22 | e228c2529 | | Test::CheckManifest | 113 | 2026-04-21 | 73edc8aba | | Test::Data | 119 | 2026-04-21 | 73edc8aba | +| Test::Deep::Fuzzy | 12 | 2026-04-25 | 1d5def215 | +| Test::Deep::JSON | 7 | 2026-04-25 | 1d5def215 | +| Test::Deep::UnorderedPairs | 15 | 2026-04-26 | 1d5def215 | | Test::DescribeMe | 12 | 2026-04-21 | 73edc8aba | -| Test::Distribution | 42 | 2026-04-22 | 3f3336774 | -| Test::Fake::HTTPD | 1 | 2026-04-21 | 73edc8aba | +| Test::Dist::VersionSync | 47 | 2026-04-26 | 1d5def215 | +| Test::Distribution | 42 | 2026-04-26 | 1d5def215 | +| Test::Fake::HTTPD | 1 | 2026-04-26 | 1d5def215 | +| Test::File::Contents | 70 | 2026-04-26 | 1d5def215 | | Test::Filename | 27 | 2026-04-21 | 73edc8aba | | Test::HexDifferences | 75 | 2026-04-22 | 3f3336774 | | Test::HexString | 7 | 2026-04-21 | 73edc8aba | -| Test::Identity | 10 | 2026-04-22 | 3f3336774 | +| Test::Identity | 10 | 2026-04-25 | 1d5def215 | | Test::InDistDir | 6 | 2026-04-12 | c1942aad0 | | Test::Inter | 90 | 2026-04-12 | c1942aad0 | -| Test::JSON | 38 | 2026-04-22 | 3f3336774 | +| Test::JSON | 38 | 2026-04-26 | 1d5def215 | | Test::LoadAllModules | 5 | 2026-04-22 | 3f3336774 | | Test::MockDateTime | 7 | 2026-04-22 | 3f3336774 | | Test::More::UTF8 | 14 | 2026-04-12 | cc5efa220 | | Test::Most | 88 | 2026-04-12 | cc5efa220 | +| Test::NoTabs | 16 | 2026-04-26 | 1d5def215 | | Test::Number::Delta | 72 | 2026-04-12 | c1942aad0 | | Test::Object | 5 | 2026-04-12 | c1942aad0 | | Test::Output | 1217 | 2026-04-12 | cc5efa220 | | Test::Postgresql58 | 6 | 2026-04-21 | 73edc8aba | | Test::RandomResult | 1 | 2026-04-21 | 73edc8aba | | Test::Settings | 47 | 2026-04-21 | 73edc8aba | +| Test::Spellunker | 161 | 2026-04-26 | 1d5def215 | | Test::Strict | 80 | 2026-04-12 | cc5efa220 | | Test::SubCalls | 25 | 2026-04-12 | c1942aad0 | | Test::TempDir::Tiny | 4 | 2026-04-21 | 73edc8aba | +| Test::Timer | 88 | 2026-04-26 | 1d5def215 | | Test::TinyMocker | 56 | 2026-04-22 | 3f3336774 | | Test::WWW::Mechanize::PSGI | 33 | 2026-04-22 | 3f3336774 | -| Text::Aligner | 513 | 2026-04-22 | e228c2529 | +| Text::Aligner | 513 | 2026-04-26 | 1d5def215 | | Text::Brew | 18 | 2026-04-12 | c1942aad0 | | Text::Diff | 33 | 2026-04-12 | cc5efa220 | | Text::German | 34 | 2026-04-12 | c1942aad0 | | Text::LineNumber | 2 | 2026-04-21 | 3f3336774 | +| Text::Lorem | 23 | 2026-04-25 | 1d5def215 | +| Text::MicroTemplate::DataSection | 3 | 2026-04-25 | 1d5def215 | | Text::Patch | 1 | 2026-04-12 | c1942aad0 | | Text::Quote | 53 | 2026-04-12 | c1942aad0 | | Text::SimpleTable | 10 | 2026-04-12 | c1942aad0 | | Text::SimpleTable::AutoWidth | 6 | 2026-04-12 | c1942aad0 | | Text::Soundex | 18 | 2026-04-12 | c1942aad0 | | Text::SpanningTable | 20 | 2026-04-21 | 73edc8aba | +| Text::Table | 175 | 2026-04-26 | 1d5def215 | | Text::Tags | 89 | 2026-04-22 | 3f3336774 | | Text::Unidecode | 1483 | 2026-04-12 | c1942aad0 | +| Text::WikiFormat | 143 | 2026-04-26 | 1d5def215 | | Text::vFile::asData | 183 | 2026-04-21 | 73edc8aba | | Thread::Queue | 59 | 2026-04-12 | c1942aad0 | | Thread::Semaphore | 17 | 2026-04-12 | c1942aad0 | +| ThreatDetector | 99 | 2026-04-26 | 1d5def215 | | Tie::Hash::Method | 12 | 2026-04-22 | 3f3336774 | | Tie::Hash::Vivify | 31 | 2026-04-12 | c1942aad0 | +| Tie::Simple | 31 | 2026-04-25 | 1d5def215 | | Tie::Sub | 20 | 2026-04-22 | 3f3336774 | | Tie::ToObject | 10 | 2026-04-12 | cc5efa220 | | Tie::UnionHash | 36 | 2026-04-21 | 73edc8aba | +| TieCSV | 4 | 2026-04-26 | 1d5def215 | +| Time::Clock | 142 | 2026-04-26 | 1d5def215 | +| Time::Concise | 8 | 2026-04-26 | 1d5def215 | | Time::Duration | 250 | 2026-04-12 | c1942aad0 | | Time::Duration::Parse | 2051 | 2026-04-12 | c1942aad0 | +| Time::Duration::Parse::AsHash | 49 | 2026-04-25 | 1d5def215 | | Time::Epoch | 5 | 2026-04-21 | 73edc8aba | | Time::Progress | 2 | 2026-04-12 | c1942aad0 | +| Transform::Canvas | 33 | 2026-04-25 | 1d5def215 | | Tree::Create::Callback::ChildrenPerLevel | 4 | 2026-04-22 | 3f3336774 | | Tree::Dump | 1 | 2026-04-22 | 3f3336774 | | Tree::Numbered | 37 | 2026-04-22 | 3f3336774 | @@ -636,77 +943,144 @@ | Twiggy | 1 | 2026-04-22 | 3f3336774 | | Types::DateTime | 9 | 2026-04-22 | 3f3336774 | | Types::Path::Tiny | 20 | 2026-04-12 | c1942aad0 | +| Types::Self | 5 | 2026-04-26 | 1d5def215 | +| UI::Notify::Cocoa | 5 | 2026-04-26 | 1d5def215 | +| UK::Vehicle | 13 | 2026-04-26 | 1d5def215 | | UNIVERSAL::require | 25 | 2026-04-12 | cc5efa220 | | UPS::Nut | 1 | 2026-04-21 | 73edc8aba | +| URI::Encode | 18 | 2026-04-26 | 1d5def215 | +| URI::Escape::Any | 1 | 2026-04-26 | 1d5def215 | +| URI::Escape::Path | 2 | 2026-04-26 | 1d5def215 | +| URI::Fetch | 1 | 2026-04-25 | 1d5def215 | | URI::Title | 11 | 2026-04-21 | 73edc8aba | | URI::ToDisk | 130 | 2026-04-22 | 3f3336774 | | URI::fasp | 11 | 2026-04-22 | 3f3336774 | | URI::redis | 10 | 2026-04-21 | 73edc8aba | +| URI::ws_Punix | 14 | 2026-04-26 | 1d5def215 | | URL::Encode | 468 | 2026-04-22 | e228c2529 | | USB::Descriptor | 22 | 2026-04-22 | 3f3336774 | | UUID::Object | 124 | 2026-04-21 | 73edc8aba | +| UkrMoney::API | 1 | 2026-04-25 | 1d5def215 | | Unicode::Stringprep | 194 | 2026-04-12 | c1942aad0 | +| Uniq | 6 | 2026-04-26 | 1d5def215 | +| Unix::PID | 1 | 2026-04-25 | 1d5def215 | | Unix::Process | 2 | 2026-04-12 | c1942aad0 | +| VCS::Lite | 47 | 2026-04-26 | 1d5def215 | | VK | 1 | 2026-04-22 | 3f3336774 | | VK::App | 1 | 2026-04-22 | 3f3336774 | +| VSGDR::StaticData | 6 | 2026-04-25 | 1d5def215 | +| VSO | 52 | 2026-04-26 | 1d5def215 | +| VT::API | 2 | 2026-04-26 | 1d5def215 | | Validate::Tiny | 180 | 2026-04-22 | 3f3336774 | +| Version::Next | 91 | 2026-04-26 | 1d5def215 | | Voo | 2 | 2026-04-22 | 3f3336774 | +| WWW::AdventCalendar | 1 | 2026-04-25 | 1d5def215 | | WWW::CPANRatings::RSS | 109 | 2026-04-21 | 73edc8aba | | WWW::CSRF | 14 | 2026-04-22 | 3f3336774 | | WWW::Comic::Plugin::Jerkcity | 2 | 2026-04-22 | 3f3336774 | | WWW::DoctypeGrabber | 12 | 2026-04-22 | 3f3336774 | | WWW::Facebook::API | 188 | 2026-04-22 | 3f3336774 | | WWW::Firecrawl | 66 | 2026-04-22 | 3f3336774 | +| WWW::Gazetteer | 3 | 2026-04-26 | 1d5def215 | | WWW::Google::PageRank | 9 | 2026-04-22 | 3f3336774 | +| WWW::ItsABot | 8 | 2026-04-25 | 1d5def215 | | WWW::Mechanize::GZip | 5 | 2026-04-22 | 3f3336774 | +| WWW::Mechanize::Tor | 1 | 2026-04-25 | 1d5def215 | | WWW::ModulrFinance | 1 | 2026-04-22 | 3f3336774 | | WWW::Moviepilot | 4 | 2026-04-22 | 3f3336774 | +| WWW::OReillyMedia::Store | 5 | 2026-04-26 | 1d5def215 | +| WWW::Omegle | 1 | 2026-04-25 | 1d5def215 | +| WWW::Pastebin::Base::Retrieve | 8 | 2026-04-25 | 1d5def215 | +| WWW::Pastebin::Bot::Pastebot::Create | 9 | 2026-04-25 | 1d5def215 | +| WWW::PlaceEngine | 1 | 2026-04-25 | 1d5def215 | | WWW::RT::CPAN | 1 | 2026-04-22 | e228c2529 | | WWW::Scraper::ISBN::Foyles_Driver | 33 | 2026-04-22 | 3f3336774 | | WWW::Scraper::ISBN::LOC_Driver | 20 | 2026-04-22 | 3f3336774 | | WWW::Shorten::Bitly | 66 | 2026-04-22 | 3f3336774 | +| WWW::Shorten::Naver | 1 | 2026-04-26 | 1d5def215 | +| WWW::Shorten::OneShortLink | 1 | 2026-04-25 | 1d5def215 | | WWW::Shorten::Yourls | 58 | 2026-04-22 | 3f3336774 | +| WWW::SlideShare | 1 | 2026-04-26 | 1d5def215 | +| WWW::TextMarks | 1 | 2026-04-25 | 1d5def215 | +| WWW::VastAI | 44 | 2026-04-25 | 1d5def215 | +| WWW::Yandex::BarTIC | 13 | 2026-04-25 | 1d5def215 | +| WWW::Yandex::MailForDomain | 2 | 2026-04-25 | 1d5def215 | +| WWW::Zotero | 3 | 2026-04-26 | 1d5def215 | +| WWW::Zotero::Write | 2 | 2026-04-26 | 1d5def215 | | WWW::eiNetwork | 2 | 2026-04-22 | 3f3336774 | +| WebDyne::Bundle::VERSION | 2 | 2026-04-26 | 1d5def215 | +| WebService::Audioscrobbler | 1 | 2026-04-26 | 1d5def215 | | WebService::Azure::Search | 7 | 2026-04-22 | 3f3336774 | +| WebService::CRUST | 2 | 2026-04-25 | 1d5def215 | | WebService::Client | 4 | 2026-04-22 | 3f3336774 | +| WebService::Geograph::API | 8 | 2026-04-26 | 1d5def215 | +| WebService::Google::Sets | 5 | 2026-04-25 | 1d5def215 | | WebService::HashiCorp::Vault | 16 | 2026-04-22 | 3f3336774 | +| WebService::Idonethis | 1 | 2026-04-26 | 1d5def215 | +| WebService::PhotoZou | 1 | 2026-04-26 | 1d5def215 | | WebService::Speechmatics | 1 | 2026-04-22 | 3f3336774 | | WebService::Sprint | 5 | 2026-04-22 | 3f3336774 | +| WebService::Validator::CSS::W3C | 4 | 2026-04-26 | 1d5def215 | +| WebService::YahooJapan::WebMA | 1 | 2026-04-25 | 1d5def215 | | Win32::Locale | 2 | 2026-04-22 | 3f3336774 | | Win32::ShellQuote | 197 | 2026-04-22 | 3f3336774 | | WordList | 37 | 2026-04-22 | 3f3336774 | +| WordList::Char::ZH::HSK | 14 | 2026-04-26 | 1d5def215 | +| WordList::EN::Adjective::TalkEnglish | 2 | 2026-04-25 | 1d5def215 | +| WordList::EN::ByCategory::Animal | 10 | 2026-04-26 | 1d5def215 | | WordList::EN::Common::COCA::Top1000 | 1 | 2026-04-22 | 3f3336774 | +| WordList::EN::Oxford3000::Learner | 1 | 2026-04-25 | 1d5def215 | | WordList::ID::BIP39 | 1 | 2026-04-22 | 3f3336774 | | WordList::ID::ByCategory::Animal | 10 | 2026-04-22 | 3f3336774 | | WordList::ID::Color::PERLANCAR | 1 | 2026-04-22 | 3f3336774 | +| WordList::ID::ColorName::HTML_ID | 1 | 2026-04-25 | 1d5def215 | +| WordList::ID::KBBI | 1 | 2026-04-25 | 1d5def215 | | WordList::ZH::Traditional::BIP39 | 1 | 2026-04-22 | 3f3336774 | +| WordListRole::RandomSeekPick | 1 | 2026-04-25 | 1d5def215 | +| WordListRole::Source::ArrayData | 1 | 2026-04-26 | 1d5def215 | | WordPress::XMLRPC | 10 | 2026-04-22 | 3f3336774 | | X11::FreeDesktop::DesktopEntry | 1 | 2026-04-22 | 3f3336774 | | X11::GUITest | 1 | 2026-04-21 | 73edc8aba | +| X11::Resolution | 5 | 2026-04-26 | 1d5def215 | | XML::Atom::SimpleFeed | 32 | 2026-04-22 | 3f3336774 | +| XML::DOM2 | 32 | 2026-04-26 | 1d5def215 | +| XML::FeedPP::Plugin::DumpJSON | 1 | 2026-04-26 | 1d5def215 | +| XML::Generator::vCard::Base | 1 | 2026-04-26 | 1d5def215 | | XML::NamespaceSupport | 49 | 2026-04-12 | cc5efa220 | | XML::OPML | 1 | 2026-04-22 | 3f3336774 | +| XML::OPML::SimpleGen | 11 | 2026-04-26 | 1d5def215 | | XML::OverHTTP | 77 | 2026-04-22 | 3f3336774 | +| XML::Perl | 19 | 2026-04-26 | 1d5def215 | | XML::SAX::Expat | 2 | 2026-04-12 | c1942aad0 | +| XML::Trivial | 9 | 2026-04-26 | 1d5def215 | +| XTerm::Util | 1 | 2026-04-26 | 1d5def215 | +| Xporter | 21 | 2026-04-25 | 1d5def215 | +| YAML::Shell | 2 | 2026-04-26 | 1d5def215 | | ZML | 5 | 2026-04-22 | 3f3336774 | | accessors | 59 | 2026-04-22 | e228c2529 | | alias::module | 1 | 2026-04-21 | 73edc8aba | | asa | 19 | 2026-04-21 | 73edc8aba | | match::simple | 396 | 2026-04-21 | 73edc8aba | +| mem | 3 | 2026-04-25 | 1d5def215 | | parent | 37 | 2026-04-21 | 73edc8aba | | rlib | 7 | 2026-04-12 | c1942aad0 | +| subroutines | 1 | 2026-04-25 | 1d5def215 | | syntax | 4 | 2026-04-12 | c1942aad0 | ## Modules That Fail Tests -### Configure Failed (234 modules) +### Configure Failed (296 modules) | Module | Pass/Total | Error | Date | |--------|-----------|-------|------| | AFS::PAG | | Configure failed | 2026-04-21 | +| AI::ML | | Configure failed | 2026-04-26 | | ALPM | | Configure failed | 2026-04-12 | -| APR::Base64 | | Configure failed | 2026-04-21 | -| APR::Request::Apache2 | | Configure failed | 2026-04-21 | +| APR::Base64 | | Configure failed | 2026-04-25 | +| APR::Finfo | | Configure failed | 2026-04-26 | +| APR::Request::Apache2 | | Configure failed | 2026-04-25 | +| APR::Table | | Configure failed | 2026-04-25 | +| ASNMTAP::Asnmtap | | Configure failed | 2026-04-26 | | AXL::Client::Simple | | Configure failed | 2026-04-12 | | Affix | | Configure failed | 2026-04-12 | | Alien::GMP | | Configure failed | 2026-04-12 | @@ -716,9 +1090,8 @@ | Alien::libextism | | Configure failed | 2026-04-12 | | Announcements | | Configure failed | 2026-04-12 | | AnyEvent | | Configure failed | 2026-04-12 | -| AnyEvent::AIO | | Configure failed | 2026-04-22 | +| AnyEvent::AIO | | Configure failed | 2026-04-25 | | AnyEvent::Atom::Stream | | Configure failed | 2026-04-12 | -| AnyEvent::Connection | | Configure failed | 2026-04-12 | | AnyEvent::FriendFeed::Realtime | | Configure failed | 2026-04-12 | | AnyEvent::Gearman | | Configure failed | 2026-04-12 | | AnyEvent::Groonga | | Configure failed | 2026-04-12 | @@ -731,37 +1104,45 @@ | Apache2::AuthenSmb | | Configure failed | 2026-04-12 | | Apache2::CmdParms | | Configure failed | 2026-04-21 | | Apache2::Connection::SkipDummy | | Configure failed | 2026-04-22 | +| Apache2::Cookie | | Configure failed | 2026-04-25 | | Apache2::DirBasedHandler | | Configure failed | 2026-04-21 | +| Apache2::Directive | | Configure failed | 2026-04-25 | | Apache2::FixupContentLanguage | | Configure failed | 2026-04-12 | | Apache2::Geo::IP::Record | | Configure failed | 2026-04-21 | | Apache2::JemplateFilter | | Configure failed | 2026-04-22 | -| Apache2::Reload | | Configure failed | 2026-04-21 | -| Apache2::WebApp | | Configure failed | 2026-04-22 | -| Apache2::WebApp::Plugin::DBI | | Configure failed | 2026-04-12 | -| Apache2::WebApp::Plugin::DateTime | | Configure failed | 2026-04-12 | +| Apache2::Reload | | Configure failed | 2026-04-25 | +| Apache2::Request | | Configure failed | 2026-04-26 | +| Apache2::Response::FileMerge | | Configure failed | 2026-04-26 | +| Apache2::WebApp | | Configure failed | 2026-04-26 | +| Apache2::WebApp::Plugin::DBI | | Configure failed | 2026-04-26 | +| Apache2::WebApp::Plugin::DateTime | | Configure failed | 2026-04-26 | | Apache2::WebApp::Plugin::File | | Configure failed | 2026-04-12 | | Apache2::WebApp::Plugin::Mail | | Configure failed | 2026-04-21 | | Apache2::WebApp::Plugin::Validate | | Configure failed | 2026-04-22 | | Apache::Cookie | | Configure failed | 2026-04-21 | | Apache::Scoreboard | | Configure failed | 2026-04-12 | -| Apache::Test | | Configure failed | 2026-04-21 | +| Apache::Test | | Configure failed | 2026-04-26 | | App::Yath::Options | | Configure failed | 2026-04-22 | -| AsposeCellsCloud::Request::GetExtractBarcodesRequest | | Configure failed | 2026-04-22 | +| Archive::Extract::Libarchive | | Configure failed | 2026-04-26 | | Atompub | | Configure failed | 2026-04-12 | +| B::Generate | | Configure failed | 2026-04-25 | | BIE::Data::HDF5 | | Configure failed | 2026-04-12 | | BSD::Jail::Object | | Configure failed | 2026-04-21 | | BSD::Process::Affinity | | Configure failed | 2026-04-21 | -| BSD::Resource | | Configure failed | 2026-04-22 | +| BSD::Resource | | Configure failed | 2026-04-26 | | Binding | | Configure failed | 2026-04-12 | | Bison | | Configure failed | 2026-04-12 | -| CDB::TinyCDB | | Configure failed | 2026-04-12 | +| CDB::TinyCDB | | Configure failed | 2026-04-26 | +| CGI::AppBuilder | | Configure failed | 2026-04-26 | | CGI::AppBuilder::Log | | Configure failed | 2026-04-21 | | CGI::AppBuilder::MapForms | | Configure failed | 2026-04-21 | +| CGI::AppBuilder::Message | | Configure failed | 2026-04-26 | | CGI::AppBuilder::Tasks | | Configure failed | 2026-04-21 | -| CPAN::Checksums | | Configure failed | 2026-04-21 | +| CGI::SpeedyCGI | | Configure failed | 2026-04-25 | +| CPAN::Checksums | | Configure failed | 2026-04-26 | | CPAN::Meta::Prereqs::Diff | | Configure failed | 2026-04-12 | -| CPANPLUS | | Configure failed | 2026-04-21 | -| CPANPLUS::Backend | | Configure failed | 2026-04-22 | +| CPANPLUS | | Configure failed | 2026-04-26 | +| CPANPLUS::Backend | | Configure failed | 2026-04-25 | | CSS::Sass | | Configure failed | 2026-04-22 | | CWB | | Configure failed | 2026-04-12 | | CWB::CL::Strict | | Configure failed | 2026-04-22 | @@ -771,28 +1152,35 @@ | CatalystX::Imports::Context | | Configure failed | 2026-04-12 | | CatalystX::OAuth2::Provider | | Configure failed | 2026-04-12 | | CatalystX::Plugin::Blurb | | Configure failed | 2026-04-12 | -| Class::MOP | | Configure failed | 2026-04-22 | +| Class::MOP | | Configure failed | 2026-04-26 | | Class::MOP::Class | | Configure failed | 2026-04-21 | +| Class::MOP::Method | | Configure failed | 2026-04-25 | | ClearCase::Region_Cfg_Parser | | Configure failed | 2026-04-12 | | CodeGenRequestResponseType | | Configure failed | 2026-04-12 | | Commandable | | Configure failed | 2026-04-12 | -| Commandable::Invocation | | Configure failed | 2026-04-22 | +| Commandable::Invocation | | Configure failed | 2026-04-25 | | DB::Color | | Configure failed | 2026-04-12 | +| DBD::Cego | | Configure failed | 2026-04-26 | | DBD::DBMaker | | Configure failed | 2026-04-22 | | DBD::EmpressNet | | Configure failed | 2026-04-12 | +| DBD::Illustra | | Configure failed | 2026-04-26 | | DBD::JDBC | | Configure failed | 2026-04-22 | | DBD::LDAP | | Configure failed | 2026-04-22 | +| DBD::MariaDB | | Configure failed | 2026-04-26 | | DBD::Mimer | | Configure failed | 2026-04-22 | +| DBD::Oracle | | Configure failed | 2026-04-25 | | DBD::Oracle::db | | Configure failed | 2026-04-12 | | DBD::PgSPI | | Configure failed | 2026-04-21 | | DBD::Redbase | | Configure failed | 2026-04-12 | +| DBD::SQLAnywhere | | Configure failed | 2026-04-26 | | DBD::Solid | | Configure failed | 2026-04-21 | | DBD::Solid::Const | | Configure failed | 2026-04-22 | +| DBD::Teradata | | Configure failed | 2026-04-26 | | DBD::Unify | | Configure failed | 2026-04-21 | -| DBD::mysql | | Configure failed | 2026-04-22 | +| DBD::mysql | | Configure failed | 2026-04-26 | | DBD::mysql::GetInfo | | Configure failed | 2026-04-22 | | DBI | | Configure failed | 2026-04-22 | -| DBIx::Chart | | Configure failed | 2026-04-22 | +| DBIx::Chart | | Configure failed | 2026-04-26 | | DBIx::Class::InflateColumn::Currency | | Configure failed | 2026-04-12 | | DBIx::Class::Row::Slave | | Configure failed | 2026-04-12 | | DBIx::Class::Schema::PopulateMore | | Configure failed | 2026-04-12 | @@ -800,36 +1188,44 @@ | DBIx::SQLite::Deploy | | Configure failed | 2026-04-12 | | DBIx::TxnPool | | Configure failed | 2026-04-12 | | DMI::Decode | | Configure failed | 2026-04-22 | -| Data::JavaScript::Anon | | Configure failed | 2026-04-21 | +| Data::JavaScript::Anon | | Configure failed | 2026-04-26 | | DateTime::TimeZone::Local::Win32 | | Configure failed | 2026-04-22 | -| Devel::MAT::Dumper | | Configure failed | 2026-04-22 | -| Devel::PPPort | | Configure failed | 2026-04-22 | +| Devel::Declare | | Configure failed | 2026-04-26 | +| Devel::MAT::Dumper | | Configure failed | 2026-04-25 | | Devel::Symdump | | Configure failed | 2026-04-21 | | Digest::BubbleBabble | | Configure failed | 2026-04-12 | -| Dist::Build::XS::Conf | | Configure failed | 2026-04-22 | +| Dist::Build::XS::Conf | | Configure failed | 2026-04-26 | | DuckCurses::dagobert | | Configure failed | 2026-04-12 | -| ExtUtils::CChecker | | Configure failed | 2026-04-22 | +| ExtUtils::CChecker | | Configure failed | 2026-04-26 | | ExtUtils::H2PM | | Configure failed | 2026-04-22 | | FFI::Build::MM | | Configure failed | 2026-04-21 | | FarmBalance | | Configure failed | 2026-04-12 | | File::FcntlLock | | Configure failed | 2026-04-21 | -| File::LibMagic | | Configure failed | 2026-04-21 | +| File::LibMagic | | Configure failed | 2026-04-26 | | File::Temp | | Configure failed | 2026-04-21 | | FindBin::libs | | Configure failed | 2026-04-22 | -| GD | | Configure failed | 2026-04-22 | +| GD | | Configure failed | 2026-04-26 | | GD::Simple | | Configure failed | 2026-04-22 | +| GStreamer | | Configure failed | 2026-04-25 | +| Gearman::XS | | Configure failed | 2026-04-25 | | Geo::IP | | Configure failed | 2026-04-12 | | GnuPG::Interface | | Configure failed | 2026-04-21 | | Graph::XGMML | | Configure failed | 2026-04-22 | | GraphViz2 | | Configure failed | 2026-04-21 | -| Gtk2 | | Configure failed | 2026-04-21 | +| Gtk2 | | Configure failed | 2026-04-26 | +| Gtk2::CodeGen | | Configure failed | 2026-04-25 | +| Gtk2::Ex::Simple::List | | Configure failed | 2026-04-26 | | Gtk2::ItemFactory | | Configure failed | 2026-04-21 | | Guile | | Configure failed | 2026-04-22 | -| HTML::HTML5::Writer | | Configure failed | 2026-04-22 | +| Gzip::Faster | | Configure failed | 2026-04-26 | +| HTML::HTML5::Builder | | Configure failed | 2026-04-26 | +| HTML::HTML5::Writer | | Configure failed | 2026-04-26 | | HTTP::Online | | Configure failed | 2026-04-22 | -| HTTP::Parser::XS | | Configure failed | 2026-04-22 | +| HTTP::Parser::XS | | Configure failed | 2026-04-26 | | HTTunnel::Client | | Configure failed | 2026-04-21 | | Hash::FieldHash | | Configure failed | 2026-04-12 | +| IO::AIO | | Configure failed | 2026-04-26 | +| IO::Async | | Configure failed | 2026-04-26 | | IO::Async::File | | Configure failed | 2026-04-22 | | IO::Async::Function | | Configure failed | 2026-04-22 | | IO::Async::Loop | | Configure failed | 2026-04-22 | @@ -837,41 +1233,44 @@ | IO::Lambda::Inotify | | Configure failed | 2026-04-22 | | IO::Pty | | Configure failed | 2026-04-12 | | IO::Tty::Util | | Configure failed | 2026-04-21 | -| IPC::MicroSocket | | Configure failed | 2026-04-21 | -| IPC::SysV | | Configure failed | 2026-04-21 | +| IPC::MicroSocket | | Configure failed | 2026-04-25 | +| IPC::Semaphore | | Configure failed | 2026-04-26 | +| IPC::SysV | | Configure failed | 2026-04-25 | | Icon::FamFamFam::Silk | | Configure failed | 2026-04-22 | | Image::PNG::Libpng | | Configure failed | 2026-04-21 | | Iterator::Simple | | Configure failed | 2026-04-12 | | JSON::Hyper | | Configure failed | 2026-04-21 | -| JSON::Syck | | Configure failed | 2026-04-22 | +| JSON::Syck | | Configure failed | 2026-04-26 | +| K | | Configure failed | 2026-04-25 | | Keybinder | | Configure failed | 2026-04-22 | -| Keyword::Simple | | Configure failed | 2026-04-22 | +| Keyword::Simple | | Configure failed | 2026-04-26 | +| Konstrukt | | Configure failed | 2026-04-26 | | Kx | | Configure failed | 2026-04-22 | -| LWP::Online | | Configure failed | 2026-04-22 | +| LWP::Online | | Configure failed | 2026-04-26 | | Locale::gettext | | Configure failed | 2026-04-21 | | LockFile::NetLock | | Configure failed | 2026-04-22 | | Mac::SystemDirectory | | Configure failed | 2026-04-12 | -| Math::Int64 | | Configure failed | 2026-04-22 | +| Math::Int64 | | Configure failed | 2026-04-25 | +| Math::Pari | | Configure failed | 2026-04-26 | +| Math::UInt64 | | Configure failed | 2026-04-25 | | Metrics::Any | | Configure failed | 2026-04-22 | | Mmap | | Configure failed | 2026-04-21 | -| MongoDB | | Configure failed | 2026-04-22 | +| MongoDB | | Configure failed | 2026-04-26 | | MongoDB::BSON | | Configure failed | 2026-04-21 | | MooX::Enumeration | | Configure failed | 2026-04-12 | | MooX::Lsub | | Configure failed | 2026-04-12 | | MooX::Press | | Configure failed | 2026-04-22 | | MooX::late | | Configure failed | 2026-04-22 | | Moops | | Configure failed | 2026-04-12 | -| Moose | | Configure failed | 2026-04-22 | +| Moose | | Configure failed | 2026-04-26 | | Moose::Exporter | | Configure failed | 2026-04-22 | | Moose::Meta::TypeConstraint::Role | | Configure failed | 2026-04-12 | -| Moose::Role | | Configure failed | 2026-04-22 | +| Moose::Role | | Configure failed | 2026-04-26 | | Moose::Util | | Configure failed | 2026-04-22 | -| Moose::Util::TypeConstraints | | Configure failed | 2026-04-12 | +| Moose::Util::TypeConstraints | | Configure failed | 2026-04-25 | | MooseX::App::Cmd::Command::BashComplete | | Configure failed | 2026-04-21 | | MooseX::Attribute::ENV | | Configure failed | 2026-04-12 | | MooseX::DOM | | Configure failed | 2026-04-12 | -| MooseX::Types::Common | | Configure failed | 2026-04-21 | -| MooseX::Types::LoadableClass | | Configure failed | 2026-04-21 | | MouseX::NativeTraits | | Configure failed | 2026-04-22 | | Mozilla::ConsoleService | | Configure failed | 2026-04-21 | | Mozilla::DOM | | Configure failed | 2026-04-21 | @@ -881,89 +1280,146 @@ | Mozilla::SourceViewer | | Configure failed | 2026-04-21 | | MusicBrainz::DiscID | | Configure failed | 2026-04-21 | | Mytest | | Configure failed | 2026-04-21 | -| NetSNMP::agent | | Configure failed | 2026-04-22 | +| Net::IMAP::Simple | | Configure failed | 2026-04-26 | +| Net::Pcap | | Configure failed | 2026-04-26 | +| NetSNMP::ASN | | Configure failed | 2026-04-25 | +| NetSNMP::agent | | Configure failed | 2026-04-26 | | ORDB::CPANTesters | | Configure failed | 2026-04-22 | -| ORLite::Mirror | | Configure failed | 2026-04-22 | +| ORLite::Mirror | | Configure failed | 2026-04-25 | | ORLite::Pod | | Configure failed | 2026-04-21 | +| ObjStore::Sex | | Configure failed | 2026-04-26 | +| OpenFrame::Example::Apache2Simple | | Configure failed | 2026-04-26 | | OpenGL::RWX | | Configure failed | 2026-04-22 | +| Oz | | Configure failed | 2026-04-25 | +| P5U::Command::Peek | | Configure failed | 2026-04-26 | | PDF::FromHTML | | Configure failed | 2026-04-12 | +| PDL::HMM | | Configure failed | 2026-04-25 | +| PDL::Opt::QP | | Configure failed | 2026-04-25 | +| PITA::Guest::Driver::Qemu | | Configure failed | 2026-04-25 | | PLJava | | Configure failed | 2026-04-22 | | POE::Declare::HTTP::Client | | Configure failed | 2026-04-21 | | POE::Declare::Log::File | | Configure failed | 2026-04-21 | | Perl6::Pugs::Config | | Configure failed | 2026-04-21 | | PerlGSL::RootFinding::SingleDim | | Configure failed | 2026-04-21 | | PerlIO::via::symlink | | Configure failed | 2026-04-22 | +| PerlPoint::Tags::HTML | | Configure failed | 2026-04-26 | +| PersistentPerl | | Configure failed | 2026-04-25 | | Pg::PQ | | Configure failed | 2026-04-12 | -| PrefixCompiler | | Configure failed | 2026-04-21 | +| PiFlash | | Configure failed | 2026-04-25 | +| PrefixCompiler | | Configure failed | 2026-04-25 | +| Qstruct | | Configure failed | 2026-04-26 | | RDF::Query::Functions::Buzzword::Util | | Configure failed | 2026-04-22 | -| RDF::RDFa::Parser | | Configure failed | 2026-04-22 | +| RDF::RDFa::Parser | | Configure failed | 2026-04-26 | +| RDF::TriN3 | | Configure failed | 2026-04-26 | | RPM2 | | Configure failed | 2026-04-21 | -| RPM::Make | | Configure failed | 2026-04-22 | +| RPM::Make | | Configure failed | 2026-04-26 | +| RT::Extension::MandatorySubject | | Configure failed | 2026-04-25 | +| RT::Interface::Email::Filter::CheckMessageId | | Configure failed | 2026-04-25 | | RT::Search::Googleish_Overlay | | Configure failed | 2026-04-21 | | SNMP | | Configure failed | 2026-04-22 | | SQL::NamedPlaceholder | | Configure failed | 2026-04-22 | | Sentinel | | Configure failed | 2026-04-22 | -| Socket6 | | Configure failed | 2026-04-22 | +| Socket6 | | Configure failed | 2026-04-25 | | String::Elide::Parts | | Configure failed | 2026-04-21 | | Struct::Dumb | | Configure failed | 2026-04-22 | | Sub::Chain | | Configure failed | 2026-04-21 | +| Sys::SigAction | | Configure failed | 2026-04-26 | | Tangram | | Configure failed | 2026-04-21 | -| Term::ReadLine::Gnu | | Configure failed | 2026-04-21 | -| Test::Moose | | Configure failed | 2026-04-21 | +| Term::ReadLine::Gnu | | Configure failed | 2026-04-26 | +| Test::Moose | | Configure failed | 2026-04-26 | | Test::OpenTracing::Interface | | Configure failed | 2026-04-21 | | Text::ANSI::Util | | Configure failed | 2026-04-21 | -| Text::Iconv | | Configure failed | 2026-04-21 | -| Time::HiRes | | Configure failed | 2026-04-22 | -| Tk | | Configure failed | 2026-04-12 | +| Text::Iconv | | Configure failed | 2026-04-26 | +| Time::HiRes | | Configure failed | 2026-04-26 | +| Tk | | Configure failed | 2026-04-26 | +| Tk::JPEG | | Configure failed | 2026-04-25 | +| UI::Various | | Configure failed | 2026-04-26 | +| UID2::Client::XS | | Configure failed | 2026-04-25 | | UNIX::Cal | | Configure failed | 2026-04-12 | | URI::Template::Restrict | | Configure failed | 2026-04-12 | -| Unicode::EastAsianWidth | | Configure failed | 2026-04-21 | +| Unicode::EastAsianWidth | | Configure failed | 2026-04-26 | | VBTK::Actions::Page | | Configure failed | 2026-04-22 | | VCS::CSync | | Configure failed | 2026-04-22 | | WWW::Curl | | Configure failed | 2026-04-21 | | WWW::Mechanize::AutoPager | | Configure failed | 2026-04-22 | +| Win32 | | Configure failed | 2026-04-26 | | Win32::App::which | | Configure failed | 2026-04-22 | | Win32::Console | | Configure failed | 2026-04-22 | +| Win32::ExcelSimple | | Configure failed | 2026-04-26 | +| Win32::File | | Configure failed | 2026-04-25 | | Win32::FileNotify | | Configure failed | 2026-04-22 | | Win32::GUI::HyperLink | | Configure failed | 2026-04-12 | | Win32::ODBC | | Configure failed | 2026-04-22 | -| Win32::OLE | | Configure failed | 2026-04-22 | -| XAO::Base | | Configure failed | 2026-04-22 | +| Win32::OLE | | Configure failed | 2026-04-25 | +| Win32::WebBrowser | | Configure failed | 2026-04-26 | +| WordNet::QueryData | | Configure failed | 2026-04-25 | | XML::GRDDL | | Configure failed | 2026-04-22 | +| XML::LibXML | | Configure failed | 2026-04-26 | +| XML::Sablotron | | Configure failed | 2026-04-26 | +| XRD::Parser | | Configure failed | 2026-04-26 | | XS::Parse::Keyword::Builder | | Configure failed | 2026-04-22 | -| XS::Parse::Sublike::Builder | | Configure failed | 2026-04-22 | -| XS::libcatch | | Configure failed | 2026-04-22 | -| YAML::Syck | | Configure failed | 2026-04-22 | +| XS::Parse::Sublike::Builder | | Configure failed | 2026-04-26 | +| XS::libcares | | Configure failed | 2026-04-26 | +| XS::libcatch | | Configure failed | 2026-04-26 | +| XS::libuv | | Configure failed | 2026-04-26 | +| Xfce4 | | Configure failed | 2026-04-26 | +| YAML::Syck | | Configure failed | 2026-04-26 | | YAMLScript::Function | | Configure failed | 2026-04-22 | -| mod_perl2 | | Configure failed | 2026-04-21 | -| next::XS | | Configure failed | 2026-04-22 | +| ZOOM | | Configure failed | 2026-04-26 | +| mod_perl | | Configure failed | 2026-04-25 | +| mod_perl2 | | Configure failed | 2026-04-26 | +| next::XS | | Configure failed | 2026-04-26 | -### Missing Dependencies (140 modules) +### Missing Dependencies (255 modules) | Module | Pass/Total | Error | Date | |--------|-----------|-------|------| | AAC::Pvoice | | Missing: Wx.pm | 2026-04-12 | | AI::DecisionTree | | Missing: AI/DecisionTree/Instance.pm | 2026-04-22 | -| ANSI::Unicode | | Missing: Moose.pm | 2026-04-12 | +| AI::NNFlex | 25/25 | Missing: Math/Matrix.pm | 2026-04-26 | +| ANSI::Unicode | | Missing: Moose.pm | 2026-04-26 | +| AWS::XRay | 2/2 | Missing: common/sense.pm | 2026-04-26 | | Abstract::Meta::Class | 104/104 | Missing: Devel/Symdump.pm | 2026-04-12 | +| ActiveResource | | Missing: common/sense.pm | 2026-04-26 | +| Alien::gmake | | Missing: Alien/gmake/ConfigData.pm | 2026-04-26 | +| Alien::libsdl2 | 1/1 | Missing: Alien/libsdl2/ConfigData.pm | 2026-04-26 | | AnyEvent::Capture | | Missing: AnyEvent.pm | 2026-04-12 | +| AnyEvent::Connection | 1/1 | Missing: common/sense.pm | 2026-04-25 | | AnyEvent::Debounce | | Missing: Moose.pm | 2026-04-21 | | AnyEvent::Fork::Remote | | Missing: common/sense.pm | 2026-04-12 | +| AnyEvent::ForkManager | 1/1 | Missing: Test/SharedObject.pm | 2026-04-25 | | AnyEvent::HTTP | | Missing: common/sense.pm | 2026-04-12 | | AnyEvent::MockTCPServer | | Missing: AnyEvent/Socket.pm | 2026-04-12 | | AnyEvent::Pg::Pool | | Missing: Pg/PQ.pm | 2026-04-12 | | AnyEvent::ReadLine::Gnu | | Missing: common/sense.pm | 2026-04-21 | | AnyEvent::Serialize | | Missing: AnyEvent.pm | 2026-04-12 | +| Apache2::AuthTicket | 1/1 | Missing: Apache/Test.pm | 2026-04-26 | | Apache::AuthTicket | 1/1 | Missing: Apache/Test.pm | 2026-04-21 | +| Appium | 4/4 | Missing: Selenium/Remote/Commands.pm | 2026-04-26 | | Archive::CAR | | Missing: Codec/CBOR.pm | 2026-04-12 | | AxKit::XSP::Cookie | | Missing: Apache/AxKit/Language/XSP.pm | 2026-04-21 | +| AxKit::XSP::Exception | | Missing: Apache/AxKit/Language/XSP.pm | 2026-04-26 | | AxKit::XSP::MD5 | | Missing: Apache/AxKit/Language/XSP.pm | 2026-04-21 | | BenchmarkAnything::Schema | 3/3 | Missing: JSON/Hyper.pm | 2026-04-21 | +| BioSAILs::Integrations::Github | 1/1 | Missing: Moose.pm | 2026-04-26 | +| BioX::Workflow | | Missing: Moose.pm | 2026-04-26 | +| BioX::Wrapper | | Missing: Moose.pm | 2026-04-26 | | Bluesky | | Missing: At.pm | 2026-04-12 | | Brickyard | | Missing: Role/Basic.pm | 2026-04-22 | +| CAD::OpenSCAD::GearMaker | | Missing: Object/Pad.pm | 2026-04-25 | | CAM::EmailTemplate::SMTP | | Missing: CAM/Template.pm | 2026-04-12 | +| CBOR::XS | | Missing: common/sense.pm | 2026-04-26 | +| CDB_File::BiIndex | | Missing: CDB_File/Generator.pm | 2026-04-25 | +| CDB_File::Generator | | Missing: CDB_File.pm | 2026-04-25 | | CGI::Application::HelpMan | 4/4 | Missing: Pod/Html.pm | 2026-04-21 | | CGI::Application::Plugin::Feedback | | Missing: CGI/Session.pm | 2026-04-21 | +| CGI::Graph | | Missing: GD.pm | 2026-04-26 | +| CGI::PathRequest | | Missing: File/PathInfo/Ext.pm | 2026-04-25 | +| CGI::Wiki::Formatter::Multiple | 1/1 | Missing: CGI/Wiki/Setup/SQLite.pm | 2026-04-26 | +| CGI::Wiki::Kwiki | | Missing: CGI/Wiki/Setup/SQLite.pm | 2026-04-26 | +| CGI::Wiki::Plugin::Diff | 1/1 | Missing: CGI/Wiki/TestConfig/Utilities.pm | 2026-04-26 | +| CGI::Wiki::Plugin::Locator::UTM | 1/1 | Missing: CGI/Wiki/TestConfig/Utilities.pm | 2026-04-25 | +| CHI::Driver::Redis::SortedSet | | Missing: CHI/Driver/Redis/t/CHIDriverTests.pm | 2026-04-25 | | CHI::Memoize | | Missing: Test/Class/Most.pm | 2026-04-21 | | CPAN::Mini::Inject | | Missing: CPAN/Checksums.pm | 2026-04-21 | | Catalyst::Authentication::Store::DBIx::Class | 1/1 | Missing: Moose.pm | 2026-04-21 | @@ -971,11 +1427,17 @@ | Catalyst::Controller::AutoAssets | 9/9 | Missing: Moose.pm | 2026-04-21 | | Catalyst::Controller::REST | | Missing: Moose.pm | 2026-04-21 | | CatalystX::ComponentsFromConfig | | Missing: Moose.pm | 2026-04-21 | +| CatalystX::Controller::PSGI | | Missing: Moose.pm | 2026-04-26 | | CatalystX::ExtJS::Direct | 1/1 | Missing: common/sense.pm | 2026-04-22 | | CatalystX::InjectComponent | 1/1 | Missing: Moose.pm | 2026-04-21 | +| CatalystX::RoleApplicator | | Missing: Moose.pm | 2026-04-25 | | Chart | | Missing: GD.pm | 2026-04-22 | +| ClearCase::SyncTree | | Missing: ClearCase/Argv.pm | 2026-04-25 | +| Color::Palette | 1/1 | Missing: Moose.pm | 2026-04-25 | | CouchDB::View | 1/1 | Missing: Data/Dump/Streamer.pm | 2026-04-22 | +| Crypt::Random | | Missing: Math/Pari.pm | 2026-04-26 | | DBD::RDFStore | | Missing: RDFStore.pm | 2026-04-12 | +| DBIx::Auto::Migrate | | Missing: Test/PostgreSQL.pm | 2026-04-25 | | DBIx::Class::Bootstrap::Simple | | Missing: Class/C3/Componentised.pm | 2026-04-21 | | DBIx::Class::DeploymentHandler | 1/1 | Missing: Moose.pm | 2026-04-22 | | DBIx::Class::InflateColumn::Serializer | 1/1 | Missing: Class/C3/Componentised.pm | 2026-04-21 | @@ -984,106 +1446,191 @@ | DBIx::Class::Validation | | Missing: Class/Accessor/Grouped.pm | 2026-04-21 | | DBIx::Connection | 86/86 | Missing: Devel/Symdump.pm | 2026-04-12 | | DBIx::Deployer | | Missing: Moops.pm | 2026-04-12 | +| DBIx::Inspector | 1/1 | Missing: DBIx/Inspector/Driver/.pm | 2026-04-26 | +| DBIx::Migration | | Missing: DBI/Const/GetInfoType.pm | 2026-04-26 | | DBIx::Patcher | | Missing: FindBin/libs.pm | 2026-04-21 | | DBIx::PgCoroAnyEvent | | Missing: common/sense.pm | 2026-04-21 | | DBIx::Wrapper::Config | | Missing: DBIx/Wrapper/Config.pm | 2026-04-12 | | DBUnit | 110/110 | Missing: Devel/Symdump.pm | 2026-04-22 | | DarkSky::API | | Missing: common/sense.pm | 2026-04-12 | +| Data::Mirror | | Missing: LWP/Online.pm | 2026-04-26 | +| Data::Properties::JSON | | Missing: common/sense.pm | 2026-04-26 | +| Database::ManagedHandle | 3/3 | Missing: Const/Fast.pm | 2026-04-26 | | DateTime::Calendar::Hebrew | 41/41 | Missing: DateTime/Set.pm | 2026-04-22 | | DateTime::Event::MultiCron | | Missing: DateTime/Event/Cron.pm | 2026-04-12 | | DateTime::Event::Sunrise | | Missing: DateTime.pm | 2026-04-21 | | DbFramework::Attribute | | Missing: t/Config.pm | 2026-04-12 | +| Dist::Zilla::Plugin::CheckChangesHasContent | 1/1 | Missing: Moose.pm | 2026-04-26 | +| Dist::Zilla::Plugin::CopyFilesFromRelease | 4/4 | Missing: Moose.pm | 2026-04-26 | +| Dist::Zilla::Role::FileWatcher | 3/3 | Missing: Moose/Role.pm | 2026-04-26 | +| EAI::Common | | Missing: Time/localtime.pm | 2026-04-26 | | EV::ADNS | | Missing: common/sense.pm | 2026-04-12 | | Eircode | | Missing: Const/Fast.pm | 2026-04-12 | | Entrez | | Missing: Stone/Cursor.pm | 2026-04-12 | -| Exporter::Declare | | Missing: Fennec/Lite.pm | 2026-04-22 | +| Exception::Base | | Missing: Test/Unit/Lite.pm | 2026-04-26 | +| Exception::Died | | Missing: Test/Unit/Lite.pm | 2026-04-26 | +| Exception::Fatal | | Missing: Test/Unit/Lite.pm | 2026-04-26 | +| Exception::Warning | | Missing: Test/Unit/Lite.pm | 2026-04-26 | +| Exporter::Declare | | Missing: Fennec/Lite.pm | 2026-04-25 | | FCGI::ProcManager::Dynamic | | Missing: IPC/SysV.pm | 2026-04-12 | +| File::PathInfo | 6/6 | Missing: Time/Format.pm | 2026-04-25 | +| File::PathInfo::Ext | 1/1 | Missing: File/PathInfo.pm | 2026-04-25 | | File::Spec | | Missing: Test2/Util/Trace.pm | 2026-04-22 | | Font::Metrics::Courier | 2/2 | Missing: Font/AFM.pm | 2026-04-12 | -| GCT::XSP::ActionTaglib | | Missing: Apache/AxKit/Language/XSP.pm | 2026-04-22 | +| GCT::XSP::ActionTaglib | | Missing: Apache/AxKit/Language/XSP.pm | 2026-04-25 | +| GD::3DBarGrapher | | Missing: GD.pm | 2026-04-26 | +| GD::Graph::boxplot | | Missing: GD.pm | 2026-04-26 | | GD::Tiler | | Missing: GD.pm | 2026-04-21 | | GPS::SpaceTrack | | Missing: Astro/Coord/ECI.pm | 2026-04-21 | +| GappX::Dialogs | | Missing: Gtk2.pm | 2026-04-25 | | GappX::FileTree | | Missing: Gtk2.pm | 2026-04-22 | | GedNav | | Missing: GDBM_File.pm | 2026-04-22 | | GitHub::MergeVelocity | 18/18 | Missing: CLDR/Number/Format/Percent.pm | 2026-04-22 | -| GraphViz | | Missing: IPC/Run.pm | 2026-04-12 | +| GitLab::API::v3 | | Missing: Role/REST/Client/Response.pm | 2026-04-25 | | Gtk2::OSXApplication | | Missing: Gtk2.pm | 2026-04-22 | -| HPC::Runner | | Missing: DateTime.pm | 2026-04-21 | +| HPC::Runner | | Missing: Moose.pm | 2026-04-26 | +| HPC::Runner::Command | | Missing: Moose/Role.pm | 2026-04-26 | +| HPC::Runner::Command::Plugin::Logger::Sqlite | | Missing: Moose/Role.pm | 2026-04-26 | +| HPC::Runner::Scheduler | | Missing: Moose.pm | 2026-04-25 | +| HTCondor::Queue::Parser | | Missing: common/sense.pm | 2026-04-25 | | HTML::FormFu::Role::JQueryValidation | | Missing: Moose.pm | 2026-04-22 | -| HTML::FormatNroff | 5/5 | Missing: HTML/Parse.pm | 2026-04-21 | +| HTML::FormHandlerX::Field::noCAPTCHA | 1/1 | Missing: Moose.pm | 2026-04-26 | +| HTML::FormatNroff | 5/5 | Missing: HTML/Parse.pm | 2026-04-25 | | HTML::Macro | | Missing: HTML/Macro/Loop.pm | 2026-04-21 | | HTML::PrettyPrinter | | Missing: HTML/Element.pm | 2026-04-22 | +| HTML::Query | | Missing: HTML/TreeBuilder.pm | 2026-04-26 | | Hardware | | Missing: Object/Pad.pm | 2026-04-21 | | Hash::AsObject | 93/93 | Missing: diagnostics.pm | 2026-04-12 | +| IPC::Cache | | Missing: IPC/ShareLite.pm | 2026-04-26 | +| IPC::Pleather | 1/1 | Missing: IPC/Semaphore.pm | 2026-04-26 | +| IPC::RunExternal | | Missing: Const/Fast.pm | 2026-04-26 | | Iterator::Simple::Lookahead | 1/1 | Missing: Iterator/Simple.pm | 2026-04-12 | -| JSON::RPC::Common | | Missing: Moose.pm | 2026-04-22 | +| JSON::Create | | Missing: Unicode/UTF8.pm | 2026-04-25 | +| JSON::RPC::Common | | Missing: Moose.pm | 2026-04-26 | +| JSON::XS::VersionOneAndTwo | 1/1 | Missing: common/sense.pm | 2026-04-26 | | JavaScript::DataFormValidator | 5/5 | Missing: Data/JavaScript/Anon.pm | 2026-04-21 | -| Jcode | | Missing: diagnostics.pm | 2026-04-12 | +| JavaScript::QuickJS | | Missing: common/sense.pm | 2026-04-25 | +| Keyword::Declare | | Missing: Keyword/Simple.pm | 2026-04-26 | | LockFile::Simple | | Missing: LockFile/Lock/Simple.pm | 2026-04-21 | | MAIN | | Missing: PBJ/JNI/Native.pm | 2026-04-22 | +| MarpaX::Repa | | Missing: Marpa/R2.pm | 2026-04-25 | | MarpaX::Simple::Rules | | Missing: Marpa/XS.pm | 2026-04-22 | +| MasonX::Lexer::MSP | | Missing: Class/Container.pm | 2026-04-25 | | MasonX::Request::ExtendedCompRoot | | Missing: Class/Container.pm | 2026-04-21 | | Math::Base::Convert | | Missing: Math/Base/Convert.pm | 2026-04-12 | -| Meta::Builder | | Missing: Fennec/Lite.pm | 2026-04-22 | +| Meta::Builder | | Missing: Fennec/Lite.pm | 2026-04-25 | | Mock::Quick | 24/24 | Missing: Fennec/Lite.pm | 2026-04-22 | | Module::Install::AuthorTests | | Missing: Module/Install/Base.pm | 2026-04-22 | | Module::Loaded | | Missing: less.pm | 2026-04-21 | | Module::Signature | 2/2 | Missing: IPC/Run.pm | 2026-04-12 | | MongoDB::Simple | | Missing: MongoDB.pm | 2026-04-22 | -| MooseX::BuildArgs | | Missing: Moose.pm | 2026-04-22 | +| Monkey::Patch | | Missing: SUPER.pm | 2026-04-26 | +| MooseX::APIRole | | Missing: Moose/Util.pm | 2026-04-25 | +| MooseX::AlwaysCoerce | 3/3 | Missing: Moose.pm | 2026-04-25 | +| MooseX::BuildArgs | | Missing: Moose.pm | 2026-04-26 | +| MooseX::CachingProxy | 1/1 | Missing: Moose/Role.pm | 2026-04-26 | | MooseX::ClosedHash | | Missing: Test/Moose.pm | 2026-04-21 | +| MooseX::ComposedBehavior | 1/1 | Missing: Moose/Role.pm | 2026-04-26 | +| MooseX::CoverableModifiers | 1/1 | Missing: Devel/Declare.pm | 2026-04-25 | | MooseX::Event | | Missing: Moose/Exporter.pm | 2026-04-21 | -| MooseX::FollowPBP | | Missing: Moose.pm | 2026-04-22 | -| MooseX::LazyRequire | 3/3 | Missing: Moose.pm | 2026-04-22 | +| MooseX::FollowPBP | | Missing: Moose.pm | 2026-04-26 | +| MooseX::LazyRequire | 3/3 | Missing: Moose.pm | 2026-04-26 | | MooseX::Meta::Attribute::Searchable | | Missing: Moose.pm | 2026-04-22 | | MooseX::NestedAttributesConstructor | | Missing: Moose.pm | 2026-04-21 | | MooseX::NonMoose | 1/1 | Missing: Moose.pm | 2026-04-12 | | MooseX::OneArgNew | 1/1 | Missing: Moose.pm | 2026-04-12 | +| MooseX::POE | | Missing: Moose.pm | 2026-04-26 | | MooseX::PrivateSetters | | Missing: Moose.pm | 2026-04-22 | -| MooseX::Role::Parameterized | 4/4 | Missing: Moose.pm | 2026-04-22 | +| MooseX::RelClassTypes | | Missing: Moose.pm | 2026-04-26 | +| MooseX::RelatedClassRoles | | Missing: Moose.pm | 2026-04-25 | +| MooseX::Role::Parameterized | 4/4 | Missing: Moose.pm | 2026-04-26 | +| MooseX::Role::Pluggable | | Missing: Moose.pm | 2026-04-25 | | MooseX::SetOnce | 1/1 | Missing: Test/Moose.pm | 2026-04-22 | +| MooseX::Singleton | 4/4 | Missing: Moose.pm | 2026-04-26 | | MooseX::StrictConstructor | 1/1 | Missing: Test/Moose.pm | 2026-04-12 | | MooseX::Types::Data::Serializer | | Missing: Data/Serializer.pm | 2026-04-21 | +| MooseX::Types::LoadableClass | 4/4 | Missing: MooseX/Types.pm | 2026-04-26 | | MooseX::Types::Meta | 4/4 | Missing: Moose/Util/TypeConstraints.pm | 2026-04-22 | -| MooseX::Types::Path::Class | 3/3 | Missing: Moose.pm | 2026-04-22 | -| MooseX::Types::Path::Tiny | 4/4 | Missing: Moose.pm | 2026-04-22 | +| MooseX::Types::Path::Class | 3/3 | Missing: Moose.pm | 2026-04-26 | +| MooseX::Types::Path::Tiny | 4/4 | Missing: Moose.pm | 2026-04-26 | | MooseX::Types::Perl | 1/1 | Missing: MooseX/Types.pm | 2026-04-22 | | MooseX::Types::Stringlike | 1/1 | Missing: MooseX/Types.pm | 2026-04-21 | | MouseX::AttributeTraitHelper::Merge | | Missing: Mouse/Role.pm | 2026-04-22 | | MouseX::Types::Data::Monad | 1/1 | Missing: Mouse/Util/TypeConstraints.pm | 2026-04-21 | | MouseX::Types::Enum | | Missing: Mouse.pm | 2026-04-21 | +| Norma | 12/12 | Missing: Moose.pm | 2026-04-25 | | OAuth2::Google::Plus | | Missing: MooX/late.pm | 2026-04-22 | +| OAuth::Consumer | | Missing: Test/Subs.pm | 2026-04-25 | | Object::Realize::Later | | Missing: Log/Report/Util.pm | 2026-04-22 | +| ObjectDBI | | Missing: DBI/Const/GetInfoType.pm | 2026-04-26 | | OpenCA::REQ | | Missing: Parse/RecDescent.pm | 2026-04-22 | | OpenMP | | Missing: Alien/OpenMP.pm | 2026-04-22 | +| P | | Missing: Types/Core.pm | 2026-04-25 | | PDK::Content | | Missing: Moose.pm | 2026-04-21 | | PDL::Stats | 1/1 | Missing: PDL/Stats/Basic.pm | 2026-04-22 | -| POEx::Role::PSGIServer | | Missing: MooseX/Declare.pm | 2026-04-22 | +| POE::Component::CD::Detect | | Missing: POE/0.pm | 2026-04-26 | +| POE::Component::Cron | | Missing: DateTime/Event/Cron.pm | 2026-04-26 | +| POEx::Role::PSGIServer | | Missing: MooseX/Declare.pm | 2026-04-26 | +| POEx::ZMQ | 1/1 | Missing: FFI/Raw.pm | 2026-04-25 | | Perl6::Pod | | Missing: Regexp/Grammars.pm | 2026-04-21 | | PerlBean | | Missing: Error.pm | 2026-04-21 | +| Pod::Elemental::Transformer::List | 1/1 | Missing: Moose.pm | 2026-04-25 | | PostScript::Graph::Bar | | Missing: PostScript/Graph/Paper.pm | 2026-04-21 | -| Pquota | | Missing: MLDBM.pm | 2026-04-22 | +| PostgreSQL::PLPerl::Call | 2/2 | Missing: Test/PostgreSQL.pm | 2026-04-25 | +| Pquota | | Missing: MLDBM.pm | 2026-04-26 | +| PrankCall | 1/1 | Missing: Test/Resub.pm | 2026-04-25 | | QBit::Application::Model::DBManager | | Missing: Net/LibIDN.pm | 2026-04-21 | | RRDTool::OO | | Missing: RRDs.pm | 2026-04-22 | | RRDTool::Rawish | 6/6 | Missing: Variable/Expand/AnyLevel.pm | 2026-04-21 | +| ReportBox | | Missing: Tk/Toplevel.pm | 2026-04-26 | +| RxPerl::Mojo | | Missing: RxPerl/Base.pm | 2026-04-26 | | SGI::FAM | | Missing: Test/Helper.pm | 2026-04-12 | +| SNMP::BridgeQuery | | Missing: Net/SNMP.pm | 2026-04-25 | | SNMP::Util | | Missing: SNMP.pm | 2026-04-22 | | SQL::Interp | 162/162 | Missing: DBI/db.pm | 2026-04-21 | +| SQL::YASP | | Missing: Tie/IxHash.pm | 2026-04-25 | +| SVG::Timeline::Compact | | Missing: Moose.pm | 2026-04-25 | +| SVN::Hooks | | Missing: Data/Util.pm | 2026-04-26 | +| Search::ContextGraph | | Missing: MLDBM.pm | 2026-04-25 | | SpamMonkey | | Missing: File/Path/Expand.pm | 2026-04-12 | +| Storm | | Missing: Moose.pm | 2026-04-25 | +| StormX::Query::DeleteWhere | | Missing: Storm/Object.pm | 2026-04-25 | +| String::Replace | | Missing: Test/Subs.pm | 2026-04-25 | +| String::TtyLength | | Missing: Unicode/EastAsianWidth.pm | 2026-04-26 | +| TM::View | | Missing: Class/Trait.pm | 2026-04-26 | +| Tapir | | Missing: Moose.pm | 2026-04-25 | +| Tatsumaki | 1/1 | Missing: Moose.pm | 2026-04-26 | +| Test2::Tools::DOM | 1/1 | Missing: Mojo/DOM58.pm | 2026-04-26 | +| Test::Assert | | Missing: Exception/Base.pm | 2026-04-26 | +| Test::Database::Temp | | Missing: Const/Fast.pm | 2026-04-26 | +| Test::Mock::Class | | Missing: Test/Unit/Lite.pm | 2026-04-26 | | TextDialog | | Missing: Tk.pm | 2026-04-21 | | TheSchwartz | | Missing: Data/ObjectDriver/Errors.pm | 2026-04-21 | +| TheSchwartz::JobScheduler | 2/2 | Missing: Const/Fast.pm | 2026-04-26 | | Tk::WorldCanvas | | Missing: Tk.pm | 2026-04-12 | | Types::Serialiser | | Missing: common/sense.pm | 2026-04-12 | +| UniLog | | Missing: Unix/Syslog.pm | 2026-04-25 | +| WSDL::Generator | | Missing: Class/Hook.pm | 2026-04-25 | | WWW::Google::Cloud::Messaging | 14/14 | Missing: Test/Flatten.pm | 2026-04-21 | +| WWW::LongURL | 2/2 | Missing: LWP/Online.pm | 2026-04-25 | +| WWW::Mailgun | | Missing: Test/MockModule.pm | 2026-04-25 | | WWW::Metaweb | | Missing: common/sense.pm | 2026-04-22 | +| WebNano::Controller::CRUD | | Missing: Moose.pm | 2026-04-26 | +| WebNano::Renderer::TT | | Missing: WebNano/Controller.pm | 2026-04-26 | | WebService::IMDBAPI | 10/10 | Missing: HTTP/Online.pm | 2026-04-22 | +| WebService::MerriamWebster | | Missing: Moose.pm | 2026-04-25 | +| WebService::MyGengo | | Missing: Moose.pm | 2026-04-26 | | WebService::ValidSign | 31/31 | Missing: common/sense.pm | 2026-04-22 | +| Win32::Exchange | | Missing: Win32/OLE.pm | 2026-04-25 | +| XML::Atom::Syndication | | Missing: XML/Elemental.pm | 2026-04-26 | | XML::GDOME | | Missing: XML/GDOME.pm | 2026-04-12 | | XML::Liberal | 1/1 | Missing: XML/LibXML.pm | 2026-04-22 | -| common::sense | | Missing: common/sense.pm | 2026-04-22 | +| YAMLScript::FFI | | Missing: Alien/YAMLScript/ConfigData.pm | 2026-04-26 | +| Zed | | Missing: Term/ReadPassword.pm | 2026-04-26 | +| common::sense | | Missing: common/sense.pm | 2026-04-26 | | self | | Missing: B/Hooks/Parser.pm | 2026-04-22 | -### Other (546 modules) +### Other (721 modules) | Module | Pass/Total | Error | Date | |--------|-----------|-------|------| @@ -1095,18 +1642,29 @@ | AI::NeuralNet::BackProp::File | | No parseable output | 2026-04-21 | | AI::ParticleSwarmOptimization | | | 2026-04-21 | | AMQP | | | 2026-04-22 | +| APISchema | | Unknown test outcome | 2026-04-25 | | Ace | | Unknown test outcome | 2026-04-12 | +| ActionExporter | | Unknown test outcome | 2026-04-26 | | Algorithm::FastPermute | | | 2026-04-22 | | Algorithm::SVM | | | 2026-04-12 | | Alias | | | 2026-04-12 | | Alien::Base::Wrapper | | Unknown test outcome | 2026-04-12 | +| Alien::SDL | | Build failed | 2026-04-25 | | Alien::Web::ExtJS::V3 | | Unknown test outcome | 2026-04-21 | | Alien::Web::HalBrowser | | Unknown test outcome | 2026-04-22 | | AltaVista::SearchSDK | | | 2026-04-21 | | AnnoCPAN::Perldoc::SyncDB | | No parseable output | 2026-04-22 | +| AnyEvent::Onkyo | | | 2026-04-25 | +| AnyMerchant | | Unknown test outcome | 2026-04-25 | | Ao | | | 2026-04-12 | | Apache2::AuthTicketLDAP | | Unknown test outcome | 2026-04-21 | +| Apache2::AuthenNTLM | | Unknown test outcome | 2026-04-25 | +| Apache2::AuthenNTLM::Cookie | | Unknown test outcome | 2026-04-25 | +| Apache2::SOAP | | Unknown test outcome | 2026-04-26 | +| Apache2::WebApp::Extra::Admin | | Unknown test outcome | 2026-04-26 | | Apache::Htpasswd | | Unknown test outcome | 2026-04-12 | +| App::Control | | Unknown test outcome | 2026-04-26 | +| Array::RefElem | | | 2026-04-26 | | AsposeCellsCloud::Object::ProtectWorkbookRequst | | Unknown test outcome | 2026-04-12 | | AsposeEmailCloud::ApiClient | | No parseable output | 2026-04-22 | | AsposeSlidesCloud::ApiClient | | Unknown test outcome | 2026-04-12 | @@ -1126,23 +1684,24 @@ | BeePack | | No parseable output | 2026-04-21 | | BenchmarkAnything::Storage::Backend::SQL | | Unknown test outcome | 2026-04-21 | | BenchmarkAnything::Storage::Frontend::Tools | | Unknown test outcome | 2026-04-21 | -| BigIP::iControl | | No parseable output | 2026-04-21 | +| BibliConverter | | Unknown test outcome | 2026-04-26 | +| Bifcode | | | 2026-04-25 | | BingoX::Argon | | Unknown test outcome | 2026-04-12 | | Bio::Annotation::Collection | | Unknown test outcome | 2026-04-22 | | BioX::CLPM | | No parseable output | 2026-04-22 | | BioX::Workflow::Command::file_log | | No parseable output | 2026-04-22 | -| Bootylicious | | No parseable output | 2026-04-21 | | BridgeAPI | | No parseable output | 2026-04-21 | | Bryar | | No parseable output | 2026-04-22 | | BuzzSaw::Cmd | | No parseable output | 2026-04-21 | | ByteCache | | Unknown test outcome | 2026-04-12 | -| CA::AutoSys | | No parseable output | 2026-04-21 | | CACertOrg::CA | | No parseable output | 2026-04-22 | | CAD::Calc | | Unknown test outcome | 2026-04-12 | +| CAM::Template::Cache | | No parseable output | 2026-04-25 | | CAM::XML | | No parseable output | 2026-04-21 | | CBSSports::Getopt | | No parseable output | 2026-04-22 | -| CDB_File::Generator | | No parseable output | 2026-04-21 | +| CDB_File | | | 2026-04-26 | | CDDB::Fake | | No parseable output | 2026-04-21 | +| CDMIUtils | | Unknown test outcome | 2026-04-26 | | CGI::AppBuilder::MapDisp2 | | No parseable output | 2026-04-22 | | CGI::Application::Dispatch::Server | | Unknown test outcome | 2026-04-21 | | CGI::Application::Plugin::FormState | | No parseable output | 2026-04-22 | @@ -1163,6 +1722,7 @@ | CGI::Enurl | | Unknown test outcome | 2026-04-21 | | CGI::Header::Apache2 | | No parseable output | 2026-04-22 | | CGI::Lite::Request::Apache | | No parseable output | 2026-04-21 | +| CGI::Out | | Unknown test outcome | 2026-04-26 | | CGI::Path | | | 2026-04-12 | | CGI::Prototype::Docs::Resources | | No parseable output | 2026-04-22 | | CGI::Pure | | No parseable output | 2026-04-12 | @@ -1170,27 +1730,36 @@ | CGI::Session::Driver::flexmysql | | No parseable output | 2026-04-12 | | CGI::Session::Serialize::Base64 | | No parseable output | 2026-04-21 | | CGI::Session::Test::SimpleObjectClass | | No parseable output | 2026-04-21 | +| CGI::Shorten | | | 2026-04-25 | | CGI::Snapp::Demo::Three | | No parseable output | 2026-04-12 | | CGI::Untaint::CountyStateProvince::US | | No parseable output | 2026-04-12 | -| CGI::Upload | | No parseable output | 2026-04-21 | | CGI::Utils | | No parseable output | 2026-04-12 | -| CGI::Wiki::Formatter::Multiple | | No parseable output | 2026-04-12 | -| CGI::Wiki::Kwiki | | No parseable output | 2026-04-21 | | CGI::remote_addr | | No parseable output | 2026-04-12 | | CGIS | | No parseable output | 2026-04-12 | | CGI_Lite | | Unknown test outcome | 2026-04-22 | | CHI | | Unknown test outcome | 2026-04-12 | +| CHI::Driver::Redis | | | 2026-04-25 | | CHI::Driver::TokyoTyrant | | | 2026-04-21 | +| CIPP::CGI | | No parseable output | 2026-04-25 | +| CIPP::Doc | | Unknown test outcome | 2026-04-26 | +| CLI | | No parseable output | 2026-04-25 | | CLI::Coin::Toss | | No parseable output | 2026-04-12 | +| CLI::Meta::diff | | No parseable output | 2026-04-25 | | CLI::Osprey | | No parseable output | 2026-04-12 | +| CLI::TextLines::Utils | | No parseable output | 2026-04-25 | +| CONFIG::Hash | | Unknown test outcome | 2026-04-26 | | CORBA::C | | Unknown test outcome | 2026-04-12 | | CORBA::IDL | | Unknown test outcome | 2026-04-22 | | CORBA::IDLtree | | No parseable output | 2026-04-12 | +| CORBA::IOP::IOR | | No parseable output | 2026-04-25 | +| CPAN::Cache | | No parseable output | 2026-04-25 | | CPAN::Changes | | | 2026-04-12 | | CPAN::Changes::Group::Dependencies::Stats | | | 2026-04-12 | | CPAN::Cpanorg::Auxiliary | | No parseable output | 2026-04-12 | | CPAN::Diff | | No parseable output | 2026-04-12 | | CPAN::Digger | | No parseable output | 2026-04-12 | +| CPAN::FindDependencies | | No parseable output | 2026-04-25 | +| CPAN::Local | | No parseable output | 2026-04-25 | | CPAN::Mini::Inject::REST::Client | | No parseable output | 2026-04-12 | | CPAN::Mini::Live | | Unknown test outcome | 2026-04-12 | | CPAN::Mirror::Finder | | Unknown test outcome | 2026-04-21 | @@ -1201,18 +1770,24 @@ | Cache::FastMmap | | | 2026-04-21 | | Cache::Memcached::Fast | | | 2026-04-12 | | Catalyst::Runtime | | Unknown test outcome | 2026-04-21 | -| Class::Container | | | 2026-04-22 | +| Class::Container | | | 2026-04-26 | | Class::DBI::Loader::Relationship | | Unknown test outcome | 2026-04-21 | | Class::DBI::Pg::More | | | 2026-04-22 | | Class::Tiny | | | 2026-04-21 | +| ClearCase::Attache | | Unknown test outcome | 2026-04-26 | | ClearCase::ClearPrompt | | Unknown test outcome | 2026-04-12 | | ClearCase::MtCmd | | Unknown test outcome | 2026-04-21 | +| ClearCase::Wrapper | | Unknown test outcome | 2026-04-26 | +| ClearCase::Wrapper::DSB | | Unknown test outcome | 2026-04-26 | | Client | | | 2026-04-21 | | Color::ANSI::Util | | | 2026-04-21 | | Color::RGB::Util | | | 2026-04-21 | | Config_u | | No parseable output | 2026-04-12 | +| Const::Fast | | | 2026-04-26 | +| CookBookB::ArrayOfStruct | | No parseable output | 2026-04-26 | | Coteng | | Unknown test outcome | 2026-04-22 | | Cpanel::JSON::XS | | | 2026-04-12 | +| Crypt::Bcrypt | | | 2026-04-25 | | Crypt::Blowfish | | | 2026-04-12 | | Crypt::CBC | | Unknown test outcome | 2026-04-12 | | Crypt::Cipher::AES | | Unknown test outcome | 2026-04-12 | @@ -1221,10 +1796,11 @@ | Crypt::HCE_SHA | | | 2026-04-12 | | Crypt::IDEA | | | 2026-04-12 | | Crypt::Mode::CBC::Easy | | Unknown test outcome | 2026-04-12 | +| Crypt::MySQL | | Build failed | 2026-04-25 | | Crypt::RC4 | | Unknown test outcome | 2026-04-22 | | Crypt::RIPEMD160 | | | 2026-04-22 | | Crypt::Twofish | | | 2026-04-22 | -| CursorBase | | No parseable output | 2026-04-22 | +| CursorBase | | No parseable output | 2026-04-26 | | DAPNET::API | | Unknown test outcome | 2026-04-12 | | DB::Ent | | | 2026-04-12 | | DBD::AnyData::db | | Unknown test outcome | 2026-04-12 | @@ -1232,6 +1808,7 @@ | DBD::monetdb | | No parseable output | 2026-04-12 | | DBGp::Client | | No parseable output | 2026-04-12 | | DBI::Log | | No parseable output | 2026-04-12 | +| DBI::Mock | | Unknown test outcome | 2026-04-26 | | DBICErrorTest::SyntaxError | | No parseable output | 2026-04-12 | | DBIx::AbstractStatement | | No parseable output | 2026-04-12 | | DBIx::Admin::DSNManager | | No parseable output | 2026-04-12 | @@ -1242,12 +1819,14 @@ | DBIx::Class::IntrospectableM2M | | No parseable output | 2026-04-22 | | DBIx::Class::MooseColumns | | No parseable output | 2026-04-22 | | DBIx::Class::ProxyTable | | No parseable output | 2026-04-22 | -| DBIx::Class::Schema::ResultSetNames | | No parseable output | 2026-04-22 | | DBIx::Class::Storage::DBI::mysql::backup | | No parseable output | 2026-04-22 | | DBIx::Class::TemporalRelations | | No parseable output | 2026-04-22 | | DBIx::Class::UnicornLogger | | | 2026-04-12 | +| DBIx::CodeKit | | No parseable output | 2026-04-26 | | DBIx::Connector::Pool | | No parseable output | 2026-04-22 | -| DBIx::DataLookup | | No parseable output | 2026-04-22 | +| DBIx::Copy | | Unknown test outcome | 2026-04-25 | +| DBIx::DBFlow::Runtime | | Unknown test outcome | 2026-04-26 | +| DBIx::DataLookup | | Unknown test outcome | 2026-04-25 | | DBIx::Dump | | Unknown test outcome | 2026-04-12 | | DBIx::FetchLoop | | Unknown test outcome | 2026-04-21 | | DBIx::Frame | | No parseable output | 2026-04-22 | @@ -1256,6 +1835,7 @@ | DBIx::Model | | No parseable output | 2026-04-22 | | DBIx::Pager | | No parseable output | 2026-04-22 | | DBIx::Path | | No parseable output | 2026-04-22 | +| DBIx::Recordset | | | 2026-04-26 | | DBIx::Repgen | | | 2026-04-12 | | DBIx::SQLEngine | | No parseable output | 2026-04-21 | | DBIx::Simple::OO | | No parseable output | 2026-04-21 | @@ -1267,12 +1847,17 @@ | DBIx::TextIndex | | No parseable output | 2026-04-21 | | DBIx::Tree::NestedSet | | | 2026-04-12 | | DBIx::Version | | Unknown test outcome | 2026-04-12 | -| DBMedit | | No parseable output | 2026-04-21 | | DBO | | No parseable output | 2026-04-21 | | DDB_File | | No parseable output | 2026-04-21 | -| Dancer | | Unknown test outcome | 2026-04-12 | +| DR::Tnt | | Unknown test outcome | 2026-04-25 | +| Dancer | | Unknown test outcome | 2026-04-26 | | Dancer2::Logger::Syslog | | No parseable output | 2026-04-22 | +| Dancer2::Plugin::Auth::CAS | | Unknown test outcome | 2026-04-26 | +| Dancer2::Plugin::JobScheduler | | | 2026-04-26 | +| Dancer2::Plugin::ProbabilityRoute | | Unknown test outcome | 2026-04-25 | +| Dancer2::Plugin::Shutdown | | | 2026-04-26 | | Data::Dump | | | 2026-04-12 | +| Data::Dump::Streamer | | Build failed | 2026-04-25 | | Data::Object | | | 2026-04-21 | | Data::Object::Args | | | 2026-04-21 | | Data::Object::Attributes | | | 2026-04-21 | @@ -1299,30 +1884,36 @@ | Data::Object::Types | | | 2026-04-21 | | Data::Object::Vars | | | 2026-04-21 | | Data::Swap | | | 2026-04-21 | +| Data::Table::Text | | | 2026-04-25 | | DataSexta | | | 2026-04-12 | | DateTime::Format::Flexible | | Unknown test outcome | 2026-04-12 | +| DateTime::LazyInit | | No parseable output | 2026-04-25 | | Device::ParallelPort::drv::parport | | | 2026-04-12 | | Dhcpd | | No parseable output | 2026-04-22 | | DiceBot | | | 2026-04-22 | | DicomPack::DB::DicomTagDict | | No parseable output | 2026-04-21 | | DiePair | | Unknown test outcome | 2026-04-21 | +| Digest::Perl::MD4 | | Unknown test outcome | 2026-04-25 | | Digest::Perl::MD5 | | Unknown test outcome | 2026-04-22 | | Digest::SHA1 | | | 2026-04-12 | | Digest::SHA::PurePerl | | Unknown test outcome | 2026-04-12 | -| Directory::Scratch | | Unknown test outcome | 2026-04-12 | | Disbatch | | | 2026-04-22 | | Disque | | No parseable output | 2026-04-22 | | DocRaptor | | Unknown test outcome | 2026-04-12 | | Doodle | | No parseable output | 2026-04-22 | +| EC::About | | Unknown test outcome | 2026-04-26 | | ERG::line_formatter | | No parseable output | 2026-04-22 | | ETL::Yertl | | No parseable output | 2026-04-22 | | ETR::XML::SAX::FilterHandler | | No parseable output | 2026-04-22 | +| EWS::Calendar::Viewer | | Unknown test outcome | 2026-04-25 | +| EZDBI | | No parseable output | 2026-04-26 | | EasyDB | | No parseable output | 2026-04-22 | -| Eeuctw | | Unknown test outcome | 2026-04-12 | +| Eeuctw | | | 2026-04-25 | | Ekahau | | No parseable output | 2026-04-22 | +| Elatin4 | | | 2026-04-25 | | Elatin6 | | No parseable output | 2026-04-22 | | Elatin8 | | | 2026-04-12 | -| Elive | | No parseable output | 2026-04-22 | +| Email::Send | | Unknown test outcome | 2026-04-25 | | EnableModule | | No parseable output | 2026-04-21 | | Encode::Registry | | Unknown test outcome | 2026-04-21 | | Encode::TECkit | | | 2026-04-21 | @@ -1331,9 +1922,12 @@ | Etk | | No parseable output | 2026-04-22 | | Eval::WithLexicals | | | 2026-04-22 | | Event | | | 2026-04-12 | +| EvilBoss::Address | | Unknown test outcome | 2026-04-26 | +| Ewindows1257 | | | 2026-04-25 | | ExecCmds | | | 2026-04-12 | | ExtUtils::Constant | | Unknown test outcome | 2026-04-12 | | ExtUtils::PkgConfig | | No parseable output | 2026-04-22 | +| FASTX::XS | | | 2026-04-26 | | FCGI | | | 2026-04-22 | | FCGI::ProcManager | | | 2026-04-12 | | FCGI::ProcManager::MaxRequests | | No parseable output | 2026-04-22 | @@ -1345,7 +1939,7 @@ | Fdb | | No parseable output | 2026-04-22 | | File::Cache | | | 2026-04-12 | | File::Copy::Recursive::Reduced | | | 2026-04-12 | -| File::Map | | Build failed | 2026-04-21 | +| File::Map | | Build failed | 2026-04-25 | | File::Sync | | | 2026-04-12 | | File::Tail | | Unknown test outcome | 2026-04-21 | | Fl_Align_Group | | No parseable output | 2026-04-22 | @@ -1354,6 +1948,7 @@ | GCC::Builtins | | No parseable output | 2026-04-22 | | GD::Graph::Polar | | No parseable output | 2026-04-22 | | GFgtk | | Unknown test outcome | 2026-04-22 | +| GIS::Distance::Lite | | Unknown test outcome | 2026-04-25 | | GPS::Garmin::Connect | | No parseable output | 2026-04-22 | | GSM::Gnokii | | No parseable output | 2026-04-22 | | GenericSHIB | | No parseable output | 2026-04-22 | @@ -1361,24 +1956,29 @@ | GitHub::Extract | | No parseable output | 2026-04-22 | | Gitalist | | No parseable output | 2026-04-22 | | Glib | | | 2026-04-22 | +| GraphViz | | | 2026-04-25 | | GraphViz2::Abstract::Edge | | No parseable output | 2026-04-22 | +| Gtk2::Ex::Dragger | | | 2026-04-25 | | Gtk2::Unique | | No parseable output | 2026-04-22 | | Gtk3::Notify | | No parseable output | 2026-04-22 | | Guard | | | 2026-04-21 | | GunMojo | | No parseable output | 2026-04-22 | +| HADaemon::Control | | Unknown test outcome | 2026-04-26 | +| HB | | No parseable output | 2026-04-26 | +| HPSG::Mason | | No parseable output | 2026-04-25 | | HTML::Blitz | | | 2026-04-21 | | HTML::Blitz::Builder | | | 2026-04-21 | | HTML::Bricks | | No parseable output | 2026-04-22 | | HTML::CMTemplate | | No parseable output | 2026-04-22 | | HTML::DOM | | No parseable output | 2026-04-22 | | HTML::DTD | | No parseable output | 2026-04-22 | -| HTML::Debug | | No parseable output | 2026-04-22 | +| HTML::Debug | | Unknown test outcome | 2026-04-26 | | HTML::Display | | No parseable output | 2026-04-22 | | HTML::EscapeEvil::AllowAll | | No parseable output | 2026-04-22 | | HTML::Expander | | No parseable output | 2026-04-22 | | HTML::FillInForm | | Unknown test outcome | 2026-04-12 | -| HTML::FormFu | | Unknown test outcome | 2026-04-22 | -| HTML::FormatText::WithLinks | | No parseable output | 2026-04-22 | +| HTML::FormFu | | Unknown test outcome | 2026-04-25 | +| HTML::FormRemove | | Unknown test outcome | 2026-04-26 | | HTML::FromANSI::Tiny | | No parseable output | 2026-04-22 | | HTML::FromMail | | No parseable output | 2026-04-22 | | HTML::GMUCK | | Unknown test outcome | 2026-04-22 | @@ -1388,38 +1988,51 @@ | HTML::Parser::Simple | | No parseable output | 2026-04-21 | | HTML::PopupTreeSelect | | No parseable output | 2026-04-22 | | HTML::PopupTreeSelect::Dynamic | | No parseable output | 2026-04-22 | +| HTML::RefMunger | | Unknown test outcome | 2026-04-25 | | HTML::Summary | | | 2026-04-12 | | HTML::TagReader | | | 2026-04-22 | | HTML::Template::Default | | | 2026-04-21 | | HTML::Tested::ClassDBI | | | 2026-04-22 | +| HTML::TreeBuilder | | Unknown test outcome | 2026-04-26 | +| HTML::TurboForm | | Unknown test outcome | 2026-04-26 | | HTML::Widgets::SelectLayers | | Unknown test outcome | 2026-04-22 | | HTTP::MHTTP | | | 2026-04-21 | +| HTTP::RecordedSession | | | 2026-04-26 | | HTTP::Request::Form | | Unknown test outcome | 2026-04-21 | | HTTP::Session | | Unknown test outcome | 2026-04-21 | | Hash::StoredIterator | | Build failed | 2026-04-21 | | Hijk | | | 2026-04-22 | | I18N::String | | Unknown test outcome | 2026-04-12 | +| INSPEC::BibTeX | | Unknown test outcome | 2026-04-26 | | IO::Any | | Unknown test outcome | 2026-04-22 | | IO::EventMux::Socket::MsgHdr | | Build failed | 2026-04-22 | | IO::FDPass | | | 2026-04-22 | | IO::LockedFile | | Unknown test outcome | 2026-04-22 | | IO::Page | | Unknown test outcome | 2026-04-22 | +| IOas::CP932 | | Unknown test outcome | 2026-04-26 | | IOas::CP932X | | Unknown test outcome | 2026-04-21 | -| IPC::MM | | | 2026-04-21 | +| IPC::LDT | | No parseable output | 2026-04-25 | +| IPC::MM | | | 2026-04-25 | +| IS::Init | | | 2026-04-26 | +| ISAL::Crypto | | | 2026-04-25 | | Image::Magick | | | 2026-04-12 | | Iterator::Array::Jagged | | Unknown test outcome | 2026-04-12 | | Jacode4e::RoundTrip | | Unknown test outcome | 2026-04-22 | +| Jcode | | | 2026-04-25 | +| Krb5 | | | 2026-04-26 | | L337 | | Unknown test outcome | 2026-04-21 | +| LCS::BV | | Unknown test outcome | 2026-04-25 | | LWP::UserAgent::Caching::Simple | | No parseable output | 2026-04-21 | +| LWP::UserAgent::OfflineCache | | Unknown test outcome | 2026-04-26 | | LWP::UserAgent::POE | | | 2026-04-22 | | LWP::UserAgent::Patch::FilterMirror | | No parseable output | 2026-04-21 | | LaTeX::Driver::Paths | | No parseable output | 2026-04-21 | | LaTeXML::Plugin::Latexmls | | No parseable output | 2026-04-21 | -| Lexical::SealRequireHints | | Unknown test outcome | 2026-04-22 | +| Lexical::SealRequireHints | | Unknown test outcome | 2026-04-26 | | Lingua::Stem::Snowball | | Build failed | 2026-04-22 | | Lingua::Stem::Snowball::Da | | Unknown test outcome | 2026-04-12 | | List::MoreUtils | | Unknown test outcome | 2026-04-12 | -| List::UtilsBy | | Unknown test outcome | 2026-04-22 | +| List::UtilsBy | | Unknown test outcome | 2026-04-26 | | Log::Any::Adapter::MojoLog | | | 2026-04-22 | | Log::Log4perl | | Unknown test outcome | 2026-04-12 | | Log::Sprintf | | | 2026-04-12 | @@ -1428,129 +2041,188 @@ | MARC::Convert::Wikidata::Object | | No parseable output | 2026-04-21 | | MARC::Leader::Print | | No parseable output | 2026-04-21 | | MARC::Loop | | Unknown test outcome | 2026-04-22 | +| MARC::Matcher | | Unknown test outcome | 2026-04-25 | | MARC::Transform | | No parseable output | 2026-04-21 | -| MCP | | | 2026-04-22 | +| MCP | | | 2026-04-25 | | MHFS::BitTorrent::Bencoding | | No parseable output | 2026-04-21 | | MIDI::Music | | | 2026-04-21 | | MIDI::Segment | | No parseable output | 2026-04-21 | | MIME::Entity | | Unknown test outcome | 2026-04-21 | | MMS::Mail::Provider::UK3 | | No parseable output | 2026-04-21 | +| MP3::Album | | No parseable output | 2026-04-25 | | MP4::Info | | Unknown test outcome | 2026-04-21 | | MPEG::MP3Play | | | 2026-04-22 | +| MRTG::Config | | No parseable output | 2026-04-26 | | MTDB | | No parseable output | 2026-04-21 | | MVS::JESFTP | | No parseable output | 2026-04-21 | | Mac::Pasteboard | | Build failed | 2026-04-21 | +| Mail::RFC822::Address | | Unknown test outcome | 2026-04-26 | | Mail::Sendmail | | Unknown test outcome | 2026-04-21 | | MailboxValidator::SingleValidation | | Unknown test outcome | 2026-04-22 | -| Marpa::R2 | | Build failed | 2026-04-21 | +| MakeWithPerl | | | 2026-04-25 | +| Marpa::R2 | | Build failed | 2026-04-26 | | MarpaX::Languages::ECMAScript::AST | | No parseable output | 2026-04-21 | | MasonX::Request::HTMLTemplate | | No parseable output | 2026-04-21 | | Math::Geometry::Planar | | | 2026-04-22 | | Math::Geometry::Planar::GPC | | | 2026-04-22 | +| Math::Random | | | 2026-04-25 | +| Math::Random::ISAAC::XS | | Build failed | 2026-04-26 | | Medusa | | No parseable output | 2026-04-21 | | MemcachedSOAPClass | | No parseable output | 2026-04-21 | | Memoize | | Unknown test outcome | 2026-04-12 | | Memoize::ExpireLRU | | | 2026-04-12 | | Metabase | | No parseable output | 2026-04-21 | | Metaweb | | No parseable output | 2026-04-21 | +| Microarray | | No parseable output | 2026-04-26 | | Migraine | | Unknown test outcome | 2026-04-21 | | Model3D::Poser::GetStringRes | | No parseable output | 2026-04-22 | | Module::ScanDeps::Static | | | 2026-04-21 | | Mojo::Pg | | | 2026-04-22 | | MojoX::Log::Any | | | 2026-04-22 | +| MojoX::Session::Store::MongoDB | | Unknown test outcome | 2026-04-25 | +| MongoHosting | | No parseable output | 2026-04-25 | | MooX::BuildArgs | | | 2026-04-12 | -| MooX::ProtectedAttributes | | Unknown test outcome | 2026-04-21 | | Moodle | | | 2026-04-22 | +| MooseX::App::Cmd | | Unknown test outcome | 2026-04-26 | | MooseX::ErrorHandling | | | 2026-04-22 | | MooseX::Types::Common::String | | Unknown test outcome | 2026-04-22 | -| MooseX::Types::EmailAddress | | Unknown test outcome | 2026-04-21 | | MooseX::Workers | | Unknown test outcome | 2026-04-21 | | MySQL::TableInfo | | | 2026-04-21 | +| NRun::Check | | Unknown test outcome | 2026-04-26 | +| NTree | | No parseable output | 2026-04-26 | +| Net::AMQP::RabbitMQ | | | 2026-04-25 | | Net::Amazon::DynamoDB::Marshaler | | | 2026-04-22 | | Net::DNS | | Unknown test outcome | 2026-04-12 | -| Net::IDN::Encode | | Build failed | 2026-04-22 | +| Net::IDN::Encode | | Build failed | 2026-04-26 | | Net::LibIDN | | Unknown test outcome | 2026-04-22 | | Net::Server::Coro | | Unknown test outcome | 2026-04-21 | | NetPacket::LLC | | Unknown test outcome | 2026-04-22 | | NetServer::Generic | | Unknown test outcome | 2026-04-21 | +| Newt | | | 2026-04-25 | +| OPCUA::Open62541 | | Unknown test outcome | 2026-04-25 | +| OS2::SoftInstaller | | | 2026-04-26 | +| Object::MultiType | | | 2026-04-26 | | OpenAPI | | Unknown test outcome | 2026-04-21 | -| OpenGL | | | 2026-04-21 | +| OpenCA::TRIStateCGI | | Unknown test outcome | 2026-04-25 | +| OpenGL | | | 2026-04-26 | +| OpenGL::Image | | | 2026-04-26 | | OpenTracing::Role | | Unknown test outcome | 2026-04-21 | | OurNet::Query | | Unknown test outcome | 2026-04-21 | +| PAUSE::Permissions | | | 2026-04-26 | +| PApp::Hinduism | | Unknown test outcome | 2026-04-26 | +| PApp::SQL | | | 2026-04-26 | | PDK::Device | | Unknown test outcome | 2026-04-22 | +| PDL::Graphics::ColorSpace | | | 2026-04-25 | | PDL::Graphics::X::Fits | | Unknown test outcome | 2026-04-21 | +| PDL::IO::Dicom | | No parseable output | 2026-04-25 | +| PDL::Transform::Color | | | 2026-04-25 | | POE::Component::Client::Ident | | Unknown test outcome | 2026-04-21 | | POE::Component::Client::NNTP | | Unknown test outcome | 2026-04-21 | +| POE::Component::Client::NSCA | | Unknown test outcome | 2026-04-26 | +| POE::Component::Client::Rcon | | Unknown test outcome | 2026-04-25 | | POE::Component::IRC::Plugin::URI::Find | | Unknown test outcome | 2026-04-21 | +| POE::Component::IRC::Plugin::WWW::Weather::US | | | 2026-04-25 | +| POE::Component::Server::Daytime | | Unknown test outcome | 2026-04-26 | | POE::Component::Server::Echo | | Unknown test outcome | 2026-04-22 | +| POE::Component::Server::Time | | Unknown test outcome | 2026-04-26 | +| POE::Filter::Regexp | | No parseable output | 2026-04-26 | | PONAPI::Document | | Unknown test outcome | 2026-04-12 | | POSIX::getpeername | | Build failed | 2026-04-22 | | PPI | | Unknown test outcome | 2026-04-12 | | PPI::XS::Tokenizer | | Unknown test outcome | 2026-04-21 | | PPM | | No parseable output | 2026-04-21 | | PSGI | | Unknown test outcome | 2026-04-21 | +| Package | | Unknown test outcome | 2026-04-25 | | Package::Variant | | | 2026-04-12 | | PadWalker | | | 2026-04-12 | +| Parallel::Iterator | | Unknown test outcome | 2026-04-26 | | Params::Get | | Unknown test outcome | 2026-04-21 | | Params::Validate | | Build failed | 2026-04-12 | +| Passwd::Keyring::OSXKeychain | | Unknown test outcome | 2026-04-26 | | PeekPoke | | | 2026-04-21 | | Perl6::Placeholders | | | 2026-04-21 | | Perl6::Rule::Parser | | | 2026-04-22 | -| Perl::Critic | | Unknown test outcome | 2026-04-22 | -| PerlIO | | Build failed | 2026-04-21 | +| Perl::Critic | | Unknown test outcome | 2026-04-26 | +| PerlIO | | Build failed | 2026-04-25 | +| PerlIO::bom | | Build failed | 2026-04-25 | | PerlIO::gzip | | | 2026-04-21 | | PerlIO::http | | Build failed | 2026-04-21 | -| PerlIO::via::SeqIO | | | 2026-04-22 | +| PerlIO::subfile | | | 2026-04-25 | +| PerlIO::via::SeqIO | | | 2026-04-26 | | PerlIO::win32console | | | 2026-04-21 | +| PerlPoint::Generator::XML | | Unknown test outcome | 2026-04-26 | | PkgConfig | | Unknown test outcome | 2026-04-12 | +| Plack::Middleware::Cache | | Unknown test outcome | 2026-04-26 | | Plugins | | | 2026-04-22 | | Pod::Coverage | | Unknown test outcome | 2026-04-12 | | Proc::FastSpawn | | | 2026-04-12 | | Proc::Wait3 | | | 2026-04-21 | | Progress::Any::Output::TermProgressBarColor | | | 2026-04-21 | -| QBit::Application::Model::DB::Users | | Unknown test outcome | 2026-04-21 | +| Promises | | Unknown test outcome | 2026-04-25 | +| PsionToGnomecard | | Unknown test outcome | 2026-04-25 | +| QBit::Application::Model::DB::Users | | Unknown test outcome | 2026-04-25 | | QuickTermChart::QuickTermChart | | Unknown test outcome | 2026-04-21 | +| RDF::Redland | | No parseable output | 2026-04-26 | | RDF::SIO::Utils | | | 2026-04-22 | | REST::Neo4p | | Unknown test outcome | 2026-04-21 | +| RPM::Search | | No parseable output | 2026-04-26 | | RPM::Specfile | | Unknown test outcome | 2026-04-22 | +| RPM::VersionSort | | | 2026-04-26 | | RT::Action::SendBounce | | Unknown test outcome | 2026-04-21 | | RT::Action::SendEmail | | Unknown test outcome | 2026-04-22 | | RT::Authen::PAUSE | | Unknown test outcome | 2026-04-22 | | RT::CustomFieldValues::AnnounceGroups | | Unknown test outcome | 2026-04-21 | +| RT::Extension::BecomeUser | | Unknown test outcome | 2026-04-25 | +| RT::Extension::CommentOnCreate | | Unknown test outcome | 2026-04-25 | | RT::Extension::ConditionalCustomFields | | Unknown test outcome | 2026-04-21 | +| RT::Extension::CreateByProblemType | | Unknown test outcome | 2026-04-26 | | RT::Extension::DisableOtherTransaction | | Unknown test outcome | 2026-04-22 | | RT::Extension::DynamicWebPath | | Unknown test outcome | 2026-04-21 | +| RT::Extension::ExampleTheme | | Unknown test outcome | 2026-04-25 | | RT::Extension::InlineHelp | | Unknown test outcome | 2026-04-22 | | RT::Extension::QuickAssign | | Unknown test outcome | 2026-04-22 | | RT::Extension::QuickReassign | | Unknown test outcome | 2026-04-21 | | RT::Extension::ReplyWithMail | | Unknown test outcome | 2026-04-22 | +| RT::Interface::Email::Filter::SimpleGPGVerify | | Unknown test outcome | 2026-04-26 | | RT::Journal | | Unknown test outcome | 2026-04-22 | | RT::Todo | | Unknown test outcome | 2026-04-21 | | RTPG | | Unknown test outcome | 2026-04-22 | | RTx::TicketlistTransactions | | Unknown test outcome | 2026-04-22 | +| Regexp::Grammars | | Unknown test outcome | 2026-04-25 | +| RogersMine::App | | Unknown test outcome | 2026-04-26 | | Role::Declare::Should | | | 2026-04-21 | | Role::Hooks | | Unknown test outcome | 2026-04-21 | | SAVI | | | 2026-04-22 | -| SDR::Radio::RTLSDR | | Unknown test outcome | 2026-04-22 | +| SDR::Radio::RTLSDR | | Unknown test outcome | 2026-04-25 | +| SMS::Ringtone::RTTTL::Parser | | Unknown test outcome | 2026-04-25 | +| SMS::Send::Fr::OVH | | Unknown test outcome | 2026-04-26 | | SMS::Send::SMSDiscount | | Unknown test outcome | 2026-04-21 | +| SNMP::Map | | Unknown test outcome | 2026-04-25 | | SOAP | | | 2026-04-22 | | SOAP::Transport::ActiveWorks::AutoInvoke::Client | | Unknown test outcome | 2026-04-22 | +| SOAP::Transport::HTTP::Log4perl | | Unknown test outcome | 2026-04-25 | | SOM | | No parseable output | 2026-04-22 | +| SPVM | | Unknown test outcome | 2026-04-25 | +| SPVM::Cwd | | | 2026-04-26 | | SPVM::Digest::SHA | | | 2026-04-22 | | SPVM::File::Copy | | | 2026-04-22 | | SPVM::File::Find | | | 2026-04-22 | | SPVM::File::Path | | | 2026-04-22 | | SPVM::File::Temp | | | 2026-04-22 | | SPVM::Getopt::Long | | | 2026-04-22 | +| SPVM::Go | | | 2026-04-25 | | SPVM::IO | | | 2026-04-22 | | SPVM::IO::Socket::SSL | | | 2026-04-22 | | SPVM::JSON | | | 2026-04-22 | -| SPVM::Net::SSLeay | | | 2026-04-22 | +| SPVM::Net::SSLeay | | | 2026-04-26 | +| SPVM::Resource::SocketUtil | | | 2026-04-25 | | SPVM::Resource::Zlib | | | 2026-04-22 | | SPVM::Resource::Zlib::V1_2_11 | | | 2026-04-21 | -| SPVM::Time::Piece | | | 2026-04-22 | +| SPVM::Time::Piece | | | 2026-04-25 | | SQL::Maker::SQLType | | | 2026-04-22 | | SQL::Statement | | | 2026-04-12 | +| SQL::Statement::Hash | | No parseable output | 2026-04-25 | +| SQL::Translator | | Unknown test outcome | 2026-04-26 | | SWIFT::Factory::Tag::Tag15 | | Unknown test outcome | 2026-04-22 | | SWIFT::Factory::Tag::Tag17 | | Unknown test outcome | 2026-04-22 | | SWIFT::Factory::Tag::Tag30 | | Unknown test outcome | 2026-04-12 | @@ -1559,11 +2231,14 @@ | Scalar::Readonly | | | 2026-04-21 | | Scope::Upper | | | 2026-04-21 | | Sereal | | Unknown test outcome | 2026-04-21 | +| Seshat | | Unknown test outcome | 2026-04-25 | | Session::Token | | Unknown test outcome | 2026-04-12 | | Set::Crontab | | Unknown test outcome | 2026-04-21 | | Set::DynamicGroups | | | 2026-04-21 | +| Set::Light | | Unknown test outcome | 2026-04-26 | | Set::Object | | Unknown test outcome | 2026-04-12 | | Set::Scalar | | Unknown test outcome | 2026-04-12 | +| ShiftJIS::X0213::MapUTF | | | 2026-04-25 | | SimpleCDB | | Unknown test outcome | 2026-04-22 | | Smart::Comments | | Unknown test outcome | 2026-04-12 | | Sort::Maker | | Unknown test outcome | 2026-04-12 | @@ -1572,6 +2247,7 @@ | Statistics::CaseResampling | | | 2026-04-22 | | String::CRC32 | | | 2026-04-12 | | String::ToIdentifier::EN | | Unknown test outcome | 2026-04-12 | +| StupidTree | | No parseable output | 2026-04-25 | | Sub::Chain::Group | | | 2026-04-21 | | Sub::Metadata | | Build failed | 2026-04-21 | | Sub::WhenBodied | | Build failed | 2026-04-21 | @@ -1579,56 +2255,102 @@ | SyslogScan::Daemon | | No parseable output | 2026-04-22 | | SystemTray::Applet | | No parseable output | 2026-04-12 | | TDB_File | | | 2026-04-22 | -| Tanker | | No parseable output | 2026-04-22 | +| TVision | | | 2026-04-25 | +| TableData::Locale::US::State | | No parseable output | 2026-04-26 | +| Tailscale | | Unknown test outcome | 2026-04-25 | +| Tanker | | No parseable output | 2026-04-26 | | Template::Plugin::SimpleJson | | Unknown test outcome | 2026-04-22 | | Teng | | Unknown test outcome | 2026-04-21 | | Term::Cap | | | 2026-04-12 | +| Term::ReadPassword | | | 2026-04-26 | | Test2::Harness::Runner::Job::pgTAP | | Unknown test outcome | 2026-04-22 | +| Test2::Tools::xUnit | | Unknown test outcome | 2026-04-26 | | Test::Auto | | | 2026-04-21 | | Test::Base | | Unknown test outcome | 2026-04-12 | | Test::Class::Moose | | Unknown test outcome | 2026-04-21 | | Test::Class::Most | | | 2026-04-21 | | Test::Helper | | Unknown test outcome | 2026-04-12 | | Test::Mock::Apache2 | | | 2026-04-21 | +| Test::Mock::Guard | | Unknown test outcome | 2026-04-26 | | Test::Script | | Unknown test outcome | 2026-04-21 | -| Test::Unit::Lite | | | 2026-04-22 | +| Test::Subs | | | 2026-04-25 | +| Test::Unit::Lite | | | 2026-04-26 | | Text::FillIn | | Unknown test outcome | 2026-04-12 | | Text::FormatTable | | Unknown test outcome | 2026-04-12 | +| Text::LevenshteinXS | | | 2026-04-25 | | Text::Markdown::Discount | | Build failed | 2026-04-21 | -| Text::Markdown::Hoedown | | Build failed | 2026-04-22 | +| Text::Markdown::Hoedown | | Build failed | 2026-04-25 | | Text::Tiki | | Unknown test outcome | 2026-04-22 | | Thrift | | | 2026-04-21 | | Throwable::SugarFactory | | Unknown test outcome | 2026-04-21 | +| Tie::Cache | | Unknown test outcome | 2026-04-25 | | Time::Crontab | | Unknown test outcome | 2026-04-21 | | Time::Object | | | 2026-04-12 | | Time::Warp | | | 2026-04-21 | +| Tinderconfig | | No parseable output | 2026-04-25 | +| Tkx | | | 2026-04-26 | +| Triceps | | No parseable output | 2026-04-26 | +| TripleStore | | No parseable output | 2026-04-26 | | Tui | | No parseable output | 2026-04-22 | | Types::Interface | | | 2026-04-21 | | UDT::Simple | | Unknown test outcome | 2026-04-22 | -| UNIVERSAL::ref | | | 2026-04-22 | +| UNIVERSAL::ref | | | 2026-04-26 | | URI::Encode::XS | | | 2026-04-22 | | URI::Fast | | Unknown test outcome | 2026-04-22 | | URI::nats | | Unknown test outcome | 2026-04-22 | | UUID::Generator::PurePerl | | Unknown test outcome | 2026-04-21 | | Unicode::Collate | | | 2026-04-21 | +| Unicode::Japanese | | Unknown test outcome | 2026-04-26 | +| Unix::Syslog | | | 2026-04-25 | +| Uptake | | Unknown test outcome | 2026-04-25 | | User | | Unknown test outcome | 2026-04-22 | | Util::H2O::More | | | 2026-04-22 | | VCS::LibCVS::Client::LoggingFileHandle | | Unknown test outcome | 2026-04-22 | +| VK::MP3 | | Unknown test outcome | 2026-04-25 | | VMS::Time | | No parseable output | 2026-04-22 | +| VerilogGrammar | | Unknown test outcome | 2026-04-26 | +| W3C::LogValidator | | | 2026-04-26 | +| WAP::SAXDriver::wbxml | | Unknown test outcome | 2026-04-26 | +| WAP::wbxml | | Unknown test outcome | 2026-04-26 | | WWW::Bleep | | No parseable output | 2026-04-22 | +| WWW::Bookmark::Crawler | | | 2026-04-26 | +| WWW::DreamHost::API | | No parseable output | 2026-04-25 | +| WWW::Fido | | | 2026-04-26 | | WWW::Google::Groups | | | 2026-04-22 | +| WWW::MSA::Hadith | | | 2026-04-26 | | WWW::Mechanize | | Unknown test outcome | 2026-04-12 | +| WWW::Search::PRWire | | Unknown test outcome | 2026-04-26 | | WWW::SimpleRobot | | Unknown test outcome | 2026-04-22 | +| WWW::UsePerl::Server | | Unknown test outcome | 2026-04-25 | +| WWW::VenusEnvy | | No parseable output | 2026-04-26 | | WeakRef | | | 2026-04-21 | +| Web::API | | Unknown test outcome | 2026-04-26 | | Web::Machine | | Unknown test outcome | 2026-04-22 | -| Win32::INET | | No parseable output | 2026-04-22 | +| WebService::GoogleHack | | No parseable output | 2026-04-26 | +| WebService::PlayaEvents | | Unknown test outcome | 2026-04-26 | +| Win32::File::VersionInfo | | Unknown test outcome | 2026-04-26 | +| Win32::GUI::XMLBuilder | | | 2026-04-25 | +| Win32::INET | | No parseable output | 2026-04-26 | +| Win32::MCI::Basic | | No parseable output | 2026-04-25 | | Win32::MultiMedia::Joystick | | No parseable output | 2026-04-22 | | WordList::ID::KBBI::ByClass::Noun | | No parseable output | 2026-04-12 | +| X11::XEvent | | No parseable output | 2026-04-26 | +| XAO::Base | | Unknown test outcome | 2026-04-26 | +| XML::Compile::Licensed | | | 2026-04-26 | +| XML::Feed | | Unknown test outcome | 2026-04-26 | +| XML::Handler::Dtd2DocBook | | Unknown test outcome | 2026-04-26 | +| XML::Handler::Dtd2Html | | Unknown test outcome | 2026-04-26 | | XML::Handler::Trees | | Unknown test outcome | 2026-04-22 | +| XML::Parser::Style::IxTree | | Unknown test outcome | 2026-04-26 | +| XML::RegExp | | Unknown test outcome | 2026-04-26 | +| XML::Registry | | Unknown test outcome | 2026-04-26 | | XML::SAX::Base | | Unknown test outcome | 2026-04-12 | | XML::Table2XML | | No parseable output | 2026-04-22 | | XML::Twig | | Unknown test outcome | 2026-04-12 | -| XS::Manifesto | | Unknown test outcome | 2026-04-22 | +| XS::Manifesto | | Unknown test outcome | 2026-04-26 | +| XiaoI | | | 2026-04-26 | +| YAML::PP | | Unknown test outcome | 2026-04-26 | +| YAPE::Regex | | Unknown test outcome | 2026-04-25 | | YN00 | | | 2026-04-22 | | autobox::Core | | | 2026-04-12 | | bigint | | Unknown test outcome | 2026-04-12 | @@ -1657,48 +2379,65 @@ | ExtUtils::MakeMaker::Attributes | 8/8 | StackOverflowError | 2026-04-22 | | Hash::Ordered | 106/106 | StackOverflowError | 2026-04-12 | -### Syntax Error (9 modules) +### Syntax Error (17 modules) | Module | Pass/Total | Error | Date | |--------|-----------|-------|------| | Argv | | Syntax error | 2026-04-21 | | CGI::ContactForm | | Syntax error | 2026-04-21 | | CPAN::Plugin::Sysdeps | 41/41 | Syntax error | 2026-04-21 | +| Class::MethodMaker | | Syntax error | 2026-04-26 | +| ClearCase::Argv | | Syntax error | 2026-04-26 | +| Geo::Coordinates::Converter | 1/1 | Syntax error | 2026-04-26 | +| Gravatar::URL | 71/71 | Syntax error | 2026-04-25 | | HTML::WidgetValidator::Widget | 2/2 | Syntax error | 2026-04-21 | -| JIP::ClassField | | Syntax error | 2026-04-21 | +| HTTP::MobileAgent | 4141/4141 | Syntax error | 2026-04-26 | +| HTTPx::Dispatcher | 3/3 | Syntax error | 2026-04-26 | +| JIP::ClassField | | Syntax error | 2026-04-26 | +| JSONRPC::Transport::TCP | 1/1 | Syntax error | 2026-04-26 | | Lingua::JA::Halfwidth::Katakana | 62/62 | Syntax error | 2026-04-22 | | RDF::Trine::AllegroGraph | 4/4 | Syntax error | 2026-04-22 | +| SSH::Batch | 6/6 | Syntax error | 2026-04-26 | | Search::Elasticsearch | 4/4 | Syntax error | 2026-04-21 | | Switch | | Syntax error | 2026-04-12 | -### Test Failures (1125 modules) +### Test Failures (1688 modules) | Module | Pass/Total | Error | Date | |--------|-----------|-------|------| | AE | 18/22 | 4/22 subtests failed | 2026-04-21 | -| AI::Categorizer | 0/28 | 67/28 subtests failed | 2026-04-22 | +| AFS::Command::Base | 8/8 | | 2026-04-26 | +| AI::Categorizer | 0/28 | 67/28 subtests failed | 2026-04-26 | | AI::MXNetCAPI | 0/1 | 1/1 subtests failed | 2026-04-12 | | AI::MegaHAL | 0/1 | 6/1 subtests failed | 2026-04-21 | | AI::NNVMCAPI | 0/1 | 1/1 subtests failed | 2026-04-12 | +| AI::NeuralNet::Hopfield | 1/2 | 1/2 subtests failed | 2026-04-26 | | AI::NeuralNet::Simple | 0/4 | 51/4 subtests failed | 2026-04-21 | | AI::ParticleSwarmOptimization::MCE | 1/2 | 1/2 subtests failed | 2026-04-22 | +| AMSSerializer | 3/5 | 2/5 subtests failed | 2026-04-26 | | API::CLI | 2/5 | 3/5 subtests failed | 2026-04-21 | | ARGV::JSON | 1/1 | | 2026-04-12 | | ARGV::OrDATA | 17/20 | 3/20 subtests failed | 2026-04-12 | +| ASP4 | 7/17 | 10/17 subtests failed | 2026-04-26 | +| ASP4x::Linker | 1/2 | 1/2 subtests failed | 2026-04-26 | | AWS::CLIWrapper | 38/50 | 12/50 subtests failed | 2026-04-21 | | AWS::IP | 0/1 | 1/1 subtests failed | 2026-04-12 | | Acrux | 134/139 | 5/139 subtests failed | 2026-04-12 | | Algorithm::Combinatorics | 1/2 | 1/2 subtests failed | 2026-04-12 | -| Alien::Base::ModuleBuild | 15/22 | 7/22 subtests failed | 2026-04-22 | +| Algorithm::Evolutionary | 0/183 | 1584/183 subtests failed | 2026-04-25 | +| Algorithm::Permute | 0/1 | 1/1 subtests failed | 2026-04-25 | +| Alien::Base::ModuleBuild | 38/47 | 9/47 subtests failed | 2026-04-25 | | Alien::Build::Plugin::Download::GitHub | 2/4 | 2/4 subtests failed | 2026-04-12 | +| Alien::MariaDB | 0/1 | 1/1 subtests failed | 2026-04-25 | | Alien::wxWidgets | 0/1 | 8/1 subtests failed | 2026-04-22 | -| AlignDB::DeltaG | 0/1 | 1/1 subtests failed | 2026-04-12 | +| AlignDB::DeltaG | 0/1 | 1/1 subtests failed | 2026-04-25 | | AlignDB::GC | 0/1 | 1/1 subtests failed | 2026-04-21 | | AlignDB::IntSpan | 0/8 | 8860/8 subtests failed | 2026-04-21 | | Alt::Crypt::RSA::BigInt | 0/6 | 8/6 subtests failed | 2026-04-22 | | Alter | 73/91 | 18/91 subtests failed | 2026-04-21 | | Amazon::Credentials | 0/1 | 1/1 subtests failed | 2026-04-21 | -| Amon2::Auth::Site::Google | 0/1 | 1/1 subtests failed | 2026-04-22 | +| Amon2 | 162/165 | 3/165 subtests failed | 2026-04-26 | +| Amon2::Auth::Site::Google | 0/1 | 1/1 subtests failed | 2026-04-25 | | Amon2::Util | 156/159 | 3/159 subtests failed | 2026-04-21 | | Any::Moose | 15/18 | 3/18 subtests failed | 2026-04-12 | | AnyData | 0/1 | 59/1 subtests failed | 2026-04-12 | @@ -1706,56 +2445,80 @@ | AnyEvent::Consul | 0/1 | 1/1 subtests failed | 2026-04-22 | | AnyEvent::Consul::Exec | 0/1 | 1/1 subtests failed | 2026-04-22 | | AnyEvent::DBI::MySQL | 0/1 | 1/1 subtests failed | 2026-04-22 | -| AnyEvent::FTP | 105/116 | 11/116 subtests failed | 2026-04-12 | +| AnyEvent::Digest | 11/15 | 4/15 subtests failed | 2026-04-25 | +| AnyEvent::FTP | 39/57 | 18/57 subtests failed | 2026-04-25 | | AnyEvent::ForkObject | 0/5 | 51/5 subtests failed | 2026-04-12 | | AnyEvent::FreeSWITCH | 0/1 | 1/1 subtests failed | 2026-04-21 | -| AnyEvent::HTTP::LWP::UserAgent | 0/1 | 2/1 subtests failed | 2026-04-22 | +| AnyEvent::HTTP::LWP::UserAgent | 0/1 | 2/1 subtests failed | 2026-04-25 | | AnyEvent::Handle::Writer | 0/1 | 1/1 subtests failed | 2026-04-21 | | AnyEvent::I3 | 0/1 | 1/1 subtests failed | 2026-04-21 | +| AnyEvent::I3X::Workspace::OnDemand | 0/5 | 5/5 subtests failed | 2026-04-26 | | AnyEvent::ImageShack | 0/1 | 1/1 subtests failed | 2026-04-12 | | AnyEvent::Impl::NSRunLoop | 18/19 | 1/19 subtests failed | 2026-04-22 | +| AnyEvent::Lingr | 0/1 | 1/1 subtests failed | 2026-04-26 | | AnyEvent::MP | 0/7 | 7/7 subtests failed | 2026-04-21 | | AnyEvent::Mac::Pasteboard | 0/1 | 7/1 subtests failed | 2026-04-21 | +| AnyEvent::Memcached | 6/8 | 2/8 subtests failed | 2026-04-25 | | AnyEvent::Monitor::CPU | 0/3 | 3/3 subtests failed | 2026-04-22 | +| AnyEvent::MultiDownload | 0/1 | 1/1 subtests failed | 2026-04-25 | | AnyEvent::Net::Curl::Const | 24/58 | 34/58 subtests failed | 2026-04-22 | | AnyEvent::OWNet | 15/18 | 3/18 subtests failed | 2026-04-12 | +| AnyEvent::Pcap | 2/3 | 1/3 subtests failed | 2026-04-26 | | AnyEvent::Pg::Pool::Multiserver | 0/1 | 1/1 subtests failed | 2026-04-12 | | AnyEvent::Process | 0/6 | 33/6 subtests failed | 2026-04-21 | | AnyEvent::Processor | 0/5 | 5/5 subtests failed | 2026-04-12 | | AnyEvent::RTPG | 0/2 | 2/2 subtests failed | 2026-04-21 | | AnyEvent::RabbitMQ | 11/13 | 2/13 subtests failed | 2026-04-21 | +| AnyEvent::Redis::RipeRedis | 73/93 | 20/93 subtests failed | 2026-04-25 | | AnyEvent::SCGI | 0/1 | 17/1 subtests failed | 2026-04-22 | | AnyEvent::SSH2 | 0/1 | 1/1 subtests failed | 2026-04-12 | | AnyEvent::Tools | 0/10 | 103/10 subtests failed | 2026-04-12 | | AnyEvent::UWSGI | 0/1 | 1/1 subtests failed | 2026-04-21 | | AnyEvent::WebService::Notifo | 0/1 | 1/1 subtests failed | 2026-04-12 | +| AnyEvent::Worker | 0/5 | 26/5 subtests failed | 2026-04-25 | | AnyEvent::XMPP | 0/40 | 51/40 subtests failed | 2026-04-22 | | AnyMQ | 0/1 | 1/1 subtests failed | 2026-04-22 | | AozoraBunko::Checkerkun | 10/45 | 35/45 subtests failed | 2026-04-22 | -| Apache2::API | 52/66 | 14/66 subtests failed | 2026-04-21 | +| Apache2::API | 52/66 | 14/66 subtests failed | 2026-04-25 | | Apache2::AuthAny | 4/19 | 15/19 subtests failed | 2026-04-12 | | Apache2::AuthZLDAP | 1/5 | 4/5 subtests failed | 2026-04-21 | +| Apache2::BalanceLogic | 0/1 | 1/1 subtests failed | 2026-04-25 | +| Apache2::LogNotify | 0/1 | 1/1 subtests failed | 2026-04-26 | +| Apache2::Mogile::Dispatch | 1/2 | 1/2 subtests failed | 2026-04-26 | | Apache2::Mojo | 0/1 | 1/1 subtests failed | 2026-04-21 | | Apache2::ScoreboardIsFull | 0/1 | 1/1 subtests failed | 2026-04-12 | | Apache::DBI | 9/10 | 1/10 subtests failed | 2026-04-22 | +| ApacheMagicApp | 0/5 | 22/5 subtests failed | 2026-04-26 | | App::AppSpec | 1/2 | 1/2 subtests failed | 2026-04-21 | | App::Cmd::Setup | 31/57 | 26/57 subtests failed | 2026-04-12 | +| App::Prove::Watch | 1/1 | | 2026-04-26 | | Archive::Any | 8/23 | 15/23 subtests failed | 2026-04-22 | | Archive::Peek | 4/5 | 1/5 subtests failed | 2026-04-12 | -| Array::Compare | 36/37 | 1/37 subtests failed | 2026-04-22 | | Arriba | 5/9 | 4/9 subtests failed | 2026-04-12 | | Asm::Preproc | 0/1 | 1/1 subtests failed | 2026-04-12 | +| Asset::File | 1/2 | 1/2 subtests failed | 2026-04-25 | | Astro::Coord::ECI | 9/10 | 1/10 subtests failed | 2026-04-21 | | Astro::SpaceTrack | 158/204 | 46/204 subtests failed | 2026-04-21 | +| Async | 0/3 | 35/3 subtests failed | 2026-04-25 | | Attean | 0/1 | 1/1 subtests failed | 2026-04-21 | | Attribute::Lexical | 31/131 | 100/131 subtests failed | 2026-04-21 | -| Authen::DecHpwd | 0/5 | 39/5 subtests failed | 2026-04-21 | +| AudioFile::Info::MP3::Tag | 0/4 | 21/4 subtests failed | 2026-04-25 | +| Authen::CAS::Client | 0/66 | 139/66 subtests failed | 2026-04-26 | +| Authen::DecHpwd | 0/5 | 39/5 subtests failed | 2026-04-25 | +| Authen::NTLM | 0/2 | 34/2 subtests failed | 2026-04-25 | +| Authen::Passphrase::AcceptAll | 0/406 | 1254/406 subtests failed | 2026-04-25 | +| AutoXS | 0/1 | 1/1 subtests failed | 2026-04-25 | +| AxKit::XSP::L10N | 33/34 | 1/34 subtests failed | 2026-04-25 | +| B::COW | 1/2 | 1/2 subtests failed | 2026-04-26 | | B::Hooks::EndOfScope | 17/24 | 7/24 subtests failed | 2026-04-21 | +| B::Hooks::OP::Annotation | 2/3 | 1/3 subtests failed | 2026-04-26 | | B::Keywords | 15/15 | | 2026-04-12 | -| B::Module::Info | 70/109 | 39/109 subtests failed | 2026-04-12 | +| B::Module::Info | 73/111 | 38/111 subtests failed | 2026-04-25 | +| B::Utils1 | 0/12 | 27/12 subtests failed | 2026-04-25 | | BBS::UserInfo::SOB | 0/1 | 1/1 subtests failed | 2026-04-12 | -| BSD::Socket::Splice | 0/2 | 2/2 subtests failed | 2026-04-21 | -| BenchmarkAnything::Config | 2/2 | | 2026-04-21 | +| BSD::Socket::Splice | 0/2 | 2/2 subtests failed | 2026-04-26 | +| BSD::devstat | 0/2 | 16/2 subtests failed | 2026-04-25 | +| BenchmarkAnything::Config | 2/2 | | 2026-04-26 | | BenchmarkAnything::Reporter | 2/2 | | 2026-04-21 | | BenchmarkAnything::Storage::Frontend::Lib | 0/1 | 1/1 subtests failed | 2026-04-21 | | Bencode | 0/1 | 1/1 subtests failed | 2026-04-21 | @@ -1763,61 +2526,95 @@ | Bio::Gonzales | 51/64 | 13/64 subtests failed | 2026-04-22 | | Bit::Vector | 0/1 | 14/1 subtests failed | 2026-04-12 | | Blessed::Merge | 0/1 | 1/1 subtests failed | 2026-04-12 | +| Bootylicious | 0/134 | 135/134 subtests failed | 2026-04-26 | | Bot::BasicBot | 0/2 | 2/2 subtests failed | 2026-04-21 | | Business::ISBN | 20/32 | 12/32 subtests failed | 2026-04-22 | +| Business::OnlinePayment | 80/81 | 1/81 subtests failed | 2026-04-25 | | Bytes::Random::Secure | 195/207 | 12/207 subtests failed | 2026-04-12 | +| C::Scan::Constants | 17/21 | 4/21 subtests failed | 2026-04-25 | +| CCCP::ConfigXML | 1/3 | 2/3 subtests failed | 2026-04-26 | +| CDB_File_Thawed | 0/10 | 36/10 subtests failed | 2026-04-25 | | CGI::Application::Dispatch | 10/28 | 18/28 subtests failed | 2026-04-21 | +| CGI::Application::Plugin::AJAXUpload | 0/4 | 35/4 subtests failed | 2026-04-25 | | CGI::Application::Plugin::AutoRunmode | 71/74 | 3/74 subtests failed | 2026-04-12 | +| CGI::Application::Plugin::CHI | 0/12 | 42/12 subtests failed | 2026-04-26 | +| CGI::Application::Plugin::Config::General | 150/152 | 2/152 subtests failed | 2026-04-26 | +| CGI::Application::Plugin::HtmlTidy | 0/6 | 26/6 subtests failed | 2026-04-25 | +| CGI::Application::Plugin::Menu | 26/26 | | 2026-04-26 | +| CGI::Application::Plugin::PageLookup | 23/28 | 5/28 subtests failed | 2026-04-26 | +| CGI::Application::Plugin::RunmodeParseKeyword | 0/20 | 25/20 subtests failed | 2026-04-26 | | CGI::Application::Plugin::Session | 0/10 | 117/10 subtests failed | 2026-04-21 | | CGI::Application::Plugin::TT | 55/58 | 3/58 subtests failed | 2026-04-12 | -| CGI::Application::Plugin::ViewCode | 1/1 | | 2026-04-21 | +| CGI::Application::Plugin::ViewCode | 1/1 | | 2026-04-26 | | CGI::Application::Server | 0/13 | 80/13 subtests failed | 2026-04-21 | | CGI::Application::Structured | 1/2 | 1/2 subtests failed | 2026-04-21 | | CGI::Auth | 2/4 | 2/4 subtests failed | 2026-04-12 | | CGI::Builder | 0/5 | 22/5 subtests failed | 2026-04-12 | | CGI::Capture | 13/14 | 1/14 subtests failed | 2026-04-12 | -| CGI::Compile | 0/41 | 61/41 subtests failed | 2026-04-22 | +| CGI::Carp::Throw | 37/39 | 2/39 subtests failed | 2026-04-26 | +| CGI::Compile | 0/41 | 58/41 subtests failed | 2026-04-26 | +| CGI::Cookie::Splitter | 326/328 | 2/328 subtests failed | 2026-04-25 | | CGI::Cookie::XS | 0/2 | 7/2 subtests failed | 2026-04-21 | | CGI::Easy | 0/2 | 4/2 subtests failed | 2026-04-12 | -| CGI::Emulate::PSGI | 28/41 | 13/41 subtests failed | 2026-04-12 | +| CGI::Emulate::PSGI | 39/39 | | 2026-04-26 | | CGI::Fast | 0/4 | 30/4 subtests failed | 2026-04-21 | | CGI::FormBuilder | 313/467 | 154/467 subtests failed | 2026-04-12 | +| CGI::FormBuilder::Template::HTC | 0/2 | 7/2 subtests failed | 2026-04-26 | | CGI::MultiValuedHash | 0/1 | 44/1 subtests failed | 2026-04-21 | | CGI::OptimalQuery | 5/19 | 14/19 subtests failed | 2026-04-21 | | CGI::PSGI | 84/84 | | 2026-04-21 | -| CGI::Session | 257/691 | 434/691 subtests failed | 2026-04-22 | +| CGI::PrintWrapper | 12/16 | 4/16 subtests failed | 2026-04-25 | +| CGI::Session | 651/751 | 100/751 subtests failed | 2026-04-26 | | CGI::Session::Auth | 0/1 | 17/1 subtests failed | 2026-04-22 | +| CGI::Session::Driver::layered | 0/1 | 1/1 subtests failed | 2026-04-25 | +| CGI::Session::Driver::redis | 31/38 | 7/38 subtests failed | 2026-04-26 | | CGI::Session::ID::sha | 0/6 | 6/6 subtests failed | 2026-04-21 | | CGI::Session::ODBC | 0/2 | 36/2 subtests failed | 2026-04-22 | | CGI::Session::SQLite | 0/1 | 1/1 subtests failed | 2026-04-21 | | CGI::Simple::Cookie | 0/181 | 702/181 subtests failed | 2026-04-12 | | CGI::Struct::XS | 0/1 | 1/1 subtests failed | 2026-04-22 | | CGI::Test | 0/8 | 168/8 subtests failed | 2026-04-12 | -| CGI::Untaint::date | 0/2 | 4/2 subtests failed | 2026-04-21 | +| CGI::Untaint::date | 0/2 | 4/2 subtests failed | 2026-04-25 | | CGI::Untaint::email | 3/4 | 1/4 subtests failed | 2026-04-21 | +| CGI::Upload | 0/29 | 41/29 subtests failed | 2026-04-26 | +| CGI::Wiki::Formatter::UseMod | 0/1 | 51/1 subtests failed | 2026-04-26 | +| CHI::Cascade | 2/2 | | 2026-04-26 | +| CHI::Driver::DBIC | 0/1 | 1/1 subtests failed | 2026-04-26 | | CLDR::Number::Format::Percent | 519/522 | 3/522 subtests failed | 2026-04-22 | | CLI::Simple | 7/7 | | 2026-04-21 | +| CPAN::Distribution::ReleaseHistory | 5/7 | 2/7 subtests failed | 2026-04-26 | | CPAN::Mini::Inject::Server | 6/8 | 2/8 subtests failed | 2026-04-21 | | CPAN::Mini::Portable | 0/20 | 60/20 subtests failed | 2026-04-22 | +| CPAN::PackageDetails | 230/235 | 5/235 subtests failed | 2026-04-26 | | CPAN::Test::Dummy::Perl5::Build::Fails | 1/2 | 1/2 subtests failed | 2026-04-12 | | CPAN::Test::Reporter | 0/1 | 1/1 subtests failed | 2026-04-12 | | CPAN::Testers::Data::Addresses | 6/8 | 2/8 subtests failed | 2026-04-22 | | CPAN::Testers::Data::Release | 0/3 | 11/3 subtests failed | 2026-04-12 | | CPAN::Testers::Fact::PlatformInfo | 0/1 | 1/1 subtests failed | 2026-04-12 | -| CPAN::Testers::WWW::Reports::Query::Report | 0/1 | 59/1 subtests failed | 2026-04-22 | +| CPAN::Testers::WWW::Reports::Query::Report | 0/1 | 59/1 subtests failed | 2026-04-25 | +| CPAN::Visitor | 1/2 | 1/2 subtests failed | 2026-04-26 | | CPAN::WWW::Top100::Retrieve | 2/4 | 2/4 subtests failed | 2026-04-21 | | CPANDB | 1/2 | 1/2 subtests failed | 2026-04-22 | +| CPANPLUS::Dist::Fedora | 0/2 | 2/2 subtests failed | 2026-04-25 | +| CPANPLUS::Dist::Gentoo | 1394/1395 | 1/1395 subtests failed | 2026-04-26 | | CPANPLUS::Shell::Curses | 1/2 | 1/2 subtests failed | 2026-04-21 | -| CPANPLUS::Test::Dummy::UsesScript | 1/2 | 1/2 subtests failed | 2026-04-22 | +| CPANPLUS::Test::Dummy::UsesScript | 1/2 | 1/2 subtests failed | 2026-04-26 | | CPU::Emulator::6502 | 68/78 | 10/78 subtests failed | 2026-04-22 | | CPU::Emulator::DCPU16 | 28/41 | 13/41 subtests failed | 2026-04-22 | | CPU::Emulator::Z80 | 0/56 | 1707/56 subtests failed | 2026-04-12 | | CPU::Z80::Assembler | 0/145 | 18304/145 subtests failed | 2026-04-22 | +| CQL::Parser | 202/203 | 1/203 subtests failed | 2026-04-26 | +| CSS::DOM | 0/113 | 937/113 subtests failed | 2026-04-25 | +| CSS::Inliner | 16/17 | 1/17 subtests failed | 2026-04-26 | | CSS::Prepare | 0/3 | 1070/3 subtests failed | 2026-04-12 | +| CSS::Selector::Grammar | 1/2 | 1/2 subtests failed | 2026-04-25 | +| CSS::Simple | 0/8 | 30/8 subtests failed | 2026-04-26 | +| CSS::SpriteMaker::Simple | 0/1 | 1/1 subtests failed | 2026-04-25 | +| CSV::Reader | 0/1 | 5/1 subtests failed | 2026-04-25 | | CXC::Astro::Regions | 5/11 | 6/11 subtests failed | 2026-04-22 | | CXC::Types::Astro::Coords | 6/8 | 2/8 subtests failed | 2026-04-22 | | Cache::Cache | 0/1 | 166/1 subtests failed | 2026-04-12 | -| Cache::Memory::Simple | 8/11 | 3/11 subtests failed | 2026-04-22 | +| Cache::Memory::Simple | 8/11 | 3/11 subtests failed | 2026-04-25 | | Cache::Ref | 0/9 | 9/9 subtests failed | 2026-04-21 | | Cairo | 0/2 | 276/2 subtests failed | 2026-04-22 | | Carp | 120/194 | 74/194 subtests failed | 2026-04-22 | @@ -1827,6 +2624,7 @@ | Catalyst::Action::RenderView | 1/3 | 2/3 subtests failed | 2026-04-21 | | Catalyst::Component::ACCEPT_CONTEXT | 0/5 | 9/5 subtests failed | 2026-04-21 | | Catalyst::Engine::Embeddable | 0/3 | 27/3 subtests failed | 2026-04-21 | +| Catalyst::Model::Adaptor | 2/4 | 2/4 subtests failed | 2026-04-25 | | Catalyst::Model::DBIC::Schema | 0/2 | 3/2 subtests failed | 2026-04-21 | | Catalyst::Plugin::Authentication | 0/7 | 18/7 subtests failed | 2026-04-21 | | Catalyst::Plugin::Authorization::Roles | 0/1 | 43/1 subtests failed | 2026-04-21 | @@ -1836,9 +2634,13 @@ | Catalyst::View::TT | 0/13 | 46/13 subtests failed | 2026-04-21 | | CatalystX::AppBuilder | 0/1 | 1/1 subtests failed | 2026-04-22 | | CatalystX::CRUD | 0/31 | 131/31 subtests failed | 2026-04-21 | +| CatalystX::CRUD::Controller::REST | 0/2 | 44/2 subtests failed | 2026-04-26 | +| CatalystX::CRUD::Model::RDBO | 0/14 | 48/14 subtests failed | 2026-04-26 | | CatalystX::Component::Traits | 0/1 | 18/1 subtests failed | 2026-04-21 | -| CatalystX::GlobalContext | 0/9 | 21/9 subtests failed | 2026-04-22 | +| CatalystX::Debug::ResponseHeaders | 0/2 | 2/2 subtests failed | 2026-04-26 | +| CatalystX::GlobalContext | 0/9 | 21/9 subtests failed | 2026-04-26 | | CatalystX::PathContext | 0/1 | 1/1 subtests failed | 2026-04-21 | +| CatalystX::TraitFor::Dispatcher::ExactMatch | 0/1 | 1/1 subtests failed | 2026-04-25 | | CatalystX::VCS::Lookup | 0/1 | 1/1 subtests failed | 2026-04-22 | | CfgTie::CfgArgs | 0/3 | 27/3 subtests failed | 2026-04-12 | | Check::ISA | 51/56 | 5/56 subtests failed | 2026-04-21 | @@ -1847,21 +2649,29 @@ | Class::Accessor | 137/139 | 2/139 subtests failed | 2026-04-21 | | Class::Accessor::Classy | 169/176 | 7/176 subtests failed | 2026-04-22 | | Class::Accessor::Grouped | 543/555 | 12/555 subtests failed | 2026-04-21 | +| Class::Accessor::Lvalue | 16/24 | 8/24 subtests failed | 2026-04-26 | | Class::C3::Adopt::NEXT | 0/4 | 22/4 subtests failed | 2026-04-21 | -| Class::DBI | 0/70 | 502/70 subtests failed | 2026-04-22 | +| Class::DBI | 0/73 | 501/73 subtests failed | 2026-04-26 | | Class::DBI::Pager | 0/1 | 38/1 subtests failed | 2026-04-21 | | Class::DBI::Plugin::DateTime::Pg | 4/6 | 2/6 subtests failed | 2026-04-22 | | Class::DBI::Plugin::RetrieveAll | 0/2 | 3/2 subtests failed | 2026-04-21 | | Class::DBI::Plugin::Type | 1/6 | 5/6 subtests failed | 2026-04-21 | +| Class::Date | 0/7 | 10/7 subtests failed | 2026-04-25 | +| Class::Fields | 38/51 | 13/51 subtests failed | 2026-04-25 | +| Class::Hook | 0/5 | 9/5 subtests failed | 2026-04-25 | | Class::InsideOut | 173/316 | 143/316 subtests failed | 2026-04-22 | | Class::Inspector | 87/88 | 1/88 subtests failed | 2026-04-21 | | Class::Load | 70/86 | 16/86 subtests failed | 2026-04-21 | -| Class::Mix | 0/19 | 77/19 subtests failed | 2026-04-22 | -| Class::Std | 224/255 | 31/255 subtests failed | 2026-04-22 | +| Class::MakeMethods | 380/1063 | 683/1063 subtests failed | 2026-04-26 | +| Class::Mix | 0/19 | 77/19 subtests failed | 2026-04-25 | +| Class::Std | 223/254 | 31/254 subtests failed | 2026-04-25 | +| Class::Std::Fast::Storable | 0/4 | 90/4 subtests failed | 2026-04-25 | | Class::Tangram | 0/1 | 136/1 subtests failed | 2026-04-21 | | Class::Unload | 10/10 | | 2026-04-21 | -| Class::Util | 323/341 | 18/341 subtests failed | 2026-04-12 | -| Class::XSAccessor | 0/10 | 184/10 subtests failed | 2026-04-21 | +| Class::Util | 323/341 | 18/341 subtests failed | 2026-04-26 | +| Class::XSAccessor | 0/10 | 184/10 subtests failed | 2026-04-26 | +| Clustericious | 130/181 | 51/181 subtests failed | 2026-04-26 | +| CodeGen::Cpppp | 6/27 | 21/27 subtests failed | 2026-04-26 | | Codec::CBOR | 5/8 | 3/8 subtests failed | 2026-04-12 | | Color::Library | 169/169 | | 2026-04-22 | | Color::Spectrum | 0/2 | 16/2 subtests failed | 2026-04-22 | @@ -1872,36 +2682,41 @@ | Complete::Getopt::Long | 1/2 | 1/2 subtests failed | 2026-04-22 | | Config::Backend::INI | 0/2 | 10/2 subtests failed | 2026-04-12 | | Config::General | 0/17 | 62/17 subtests failed | 2026-04-12 | -| Config::IniFiles | 0/45 | 175/45 subtests failed | 2026-04-22 | +| Config::IniFiles | 0/45 | 175/45 subtests failed | 2026-04-26 | +| Config::MySQL | 5/8 | 3/8 subtests failed | 2026-04-26 | | Config::Simple | 0/16 | 59/16 subtests failed | 2026-04-21 | | Config::Std | 1/2 | 1/2 subtests failed | 2026-04-22 | | Const::Exporter | 1/8 | 7/8 subtests failed | 2026-04-21 | -| Const::Fast | 0/1 | 1/1 subtests failed | 2026-04-22 | | Consul | 0/1 | 1/1 subtests failed | 2026-04-22 | | Continuity | 0/1 | 1/1 subtests failed | 2026-04-21 | | Convert::PEM | 0/1 | 49/1 subtests failed | 2026-04-22 | | Cookie | 4/11 | 7/11 subtests failed | 2026-04-21 | -| Coro | 0/17 | 43/17 subtests failed | 2026-04-12 | +| Coro | 0/17 | 43/17 subtests failed | 2026-04-25 | | Coro::Event | 0/17 | 43/17 subtests failed | 2026-04-21 | | Corona | 0/1 | 1/1 subtests failed | 2026-04-21 | | CouchWiki | 4/5 | 1/5 subtests failed | 2026-04-12 | | Crane | 17/18 | 1/18 subtests failed | 2026-04-22 | | Crayon | 0/1 | 1/1 subtests failed | 2026-04-12 | +| Crixa | 1/7 | 6/7 subtests failed | 2026-04-25 | | Crypt::CAST5_PP | 0/2 | 8/2 subtests failed | 2026-04-22 | | Crypt::Curve25519 | 0/11 | 11/11 subtests failed | 2026-04-12 | | Crypt::DSA | 0/16 | 29/16 subtests failed | 2026-04-22 | +| Crypt::ECB | 0/7494 | 42823/7494 subtests failed | 2026-04-26 | | Crypt::JWT | 0/3 | 6/3 subtests failed | 2026-04-12 | | Crypt::OpenPGP | 38/159 | 121/159 subtests failed | 2026-04-22 | | Crypt::OpenSSL::X509 | 0/6 | 94/6 subtests failed | 2026-04-21 | | Crypt::PBKDF2 | 0/7 | 4028/7 subtests failed | 2026-04-12 | +| Crypt::PWSafe3 | 0/3 | 13/3 subtests failed | 2026-04-26 | | Crypt::Passphrase | 43/43 | | 2026-04-21 | | Crypt::Random::Source | 46/46 | | 2026-04-21 | | Crypt::SSLeay | 8/23 | 15/23 subtests failed | 2026-04-21 | | Crypt::Sodium | 0/1 | 1/1 subtests failed | 2026-04-12 | | Crypt::URandom | 34/48 | 14/48 subtests failed | 2026-04-12 | +| CryptX | 0/114 | 24959/114 subtests failed | 2026-04-26 | | Curses | 0/1 | 1/1 subtests failed | 2026-04-12 | | Curses::UI | 0/56 | 121/56 subtests failed | 2026-04-21 | | Customer | 0/7 | 11/7 subtests failed | 2026-04-22 | +| Cvs | 0/18 | 37/18 subtests failed | 2026-04-25 | | Cwd | 819/826 | 7/826 subtests failed | 2026-04-22 | | D64::Disk::Dir::Item | 0/7 | 188/7 subtests failed | 2026-04-22 | | D64::Disk::Layout::Sector | 0/7 | 174/7 subtests failed | 2026-04-22 | @@ -1909,72 +2724,99 @@ | DB::Object | 9/31 | 22/31 subtests failed | 2026-04-22 | | DB::Pluggable | 0/9 | 9/9 subtests failed | 2026-04-22 | | DB::Pluggable::Dumper | 0/1 | 1/1 subtests failed | 2026-04-22 | +| DB::SQL::Migrations | 0/1 | 1/1 subtests failed | 2026-04-26 | | DB::Sandbox | 0/1 | 1/1 subtests failed | 2026-04-21 | -| DBD::AnyData2 | 0/1 | 1/1 subtests failed | 2026-04-22 | -| DBD::Mock | 161/206 | 45/206 subtests failed | 2026-04-22 | +| DBD::Gofer::Transport::http | 3/4 | 1/4 subtests failed | 2026-04-25 | +| DBD::Mock | 308/392 | 84/392 subtests failed | 2026-04-26 | | DBD::ODBC | 6/10 | 4/10 subtests failed | 2026-04-22 | | DBD::Pg | 0/2 | 2/2 subtests failed | 2026-04-21 | | DBD::PgPPSjis | 1/1 | | 2026-04-22 | +| DBD::SimpleMock | 111/131 | 20/131 subtests failed | 2026-04-25 | | DBD::XBase | 0/24 | 254/24 subtests failed | 2026-04-22 | +| DBD::mysqlPPrawSjis | 1/1 | | 2026-04-25 | +| DBI::Shell | 0/9 | 255/9 subtests failed | 2026-04-26 | +| DBICx::MaterializedPath | 0/1 | 3/1 subtests failed | 2026-04-26 | | DBICx::Sugar | 0/5 | 11/5 subtests failed | 2026-04-22 | | DBICx::TestDatabase | 0/2 | 16/2 subtests failed | 2026-04-21 | | DBIx::Abstract | 0/9 | 18/9 subtests failed | 2026-04-21 | +| DBIx::Array | 18/723 | 705/723 subtests failed | 2026-04-25 | +| DBIx::CheckConnectivity | 0/6 | 27/6 subtests failed | 2026-04-25 | | DBIx::Class::Candy | 2/4 | 2/4 subtests failed | 2026-04-12 | -| DBIx::Class::DeleteAction | 1/4 | 3/4 subtests failed | 2026-04-22 | -| DBIx::Class::DigestColumns | 0/2 | 39/2 subtests failed | 2026-04-22 | +| DBIx::Class::DeleteAction | 1/4 | 3/4 subtests failed | 2026-04-25 | +| DBIx::Class::DeploymentAdapter | 0/1 | 1/1 subtests failed | 2026-04-26 | +| DBIx::Class::DigestColumns | 0/2 | 43/2 subtests failed | 2026-04-26 | | DBIx::Class::DynamicDefault | 0/1 | 14/1 subtests failed | 2026-04-21 | | DBIx::Class::ElasticSync | 1/5 | 4/5 subtests failed | 2026-04-22 | | DBIx::Class::FilterColumn::Encrypt | 0/1 | 1/1 subtests failed | 2026-04-21 | | DBIx::Class::Fixtures | 4/7 | 3/7 subtests failed | 2026-04-22 | +| DBIx::Class::FormatColumns | 0/1 | 1/1 subtests failed | 2026-04-26 | | DBIx::Class::Helper::SimpleStats | 1/1 | | 2026-04-12 | | DBIx::Class::Helper::WindowFunctions | 1/1 | | 2026-04-22 | | DBIx::Class::Indexed | 1/2 | 1/2 subtests failed | 2026-04-21 | | DBIx::Class::Indexer::WebService::Dezi | 0/1 | 1/1 subtests failed | 2026-04-21 | +| DBIx::Class::InflateColumn::Authen::Passphrase | 1/1 | | 2026-04-25 | +| DBIx::Class::InflateColumn::DateTime::Duration | 0/1 | 26/1 subtests failed | 2026-04-25 | | DBIx::Class::InflateColumn::DateTime::WithTimeZone | 1/4 | 3/4 subtests failed | 2026-04-12 | | DBIx::Class::InflateColumn::FS | 0/1 | 52/1 subtests failed | 2026-04-21 | | DBIx::Class::InflateColumn::ISBN | 2/2 | | 2026-04-22 | | DBIx::Class::InflateColumn::Math::Currency | 0/1 | 1/1 subtests failed | 2026-04-21 | | DBIx::Class::InflateColumn::Serializer::CompressJSON | 5/6 | 1/6 subtests failed | 2026-04-22 | -| DBIx::Class::InflateColumn::Serializer::Hstore | 0/1 | 1/1 subtests failed | 2026-04-21 | +| DBIx::Class::InflateColumn::Serializer::Hstore | 0/1 | 1/1 subtests failed | 2026-04-25 | +| DBIx::Class::InflateColumn::Serializer::Role::HashContentAccessor | 1/2 | 1/2 subtests failed | 2026-04-25 | | DBIx::Class::InflateColumn::TimeMoment | 1/1 | | 2026-04-12 | | DBIx::Class::LookupColumn | 0/1 | 1/1 subtests failed | 2026-04-12 | | DBIx::Class::MockData | 6/9 | 3/9 subtests failed | 2026-04-22 | +| DBIx::Class::PassphraseColumn | 1/1 | | 2026-04-25 | +| DBIx::Class::PgLog | 1/5 | 4/5 subtests failed | 2026-04-26 | +| DBIx::Class::QueryLog::WithStackTrace | 0/2 | 9/2 subtests failed | 2026-04-26 | | DBIx::Class::Relationship::Predicate | 2/2 | | 2026-04-22 | +| DBIx::Class::ResultDDL | 1/23 | 22/23 subtests failed | 2026-04-26 | | DBIx::Class::ResultSet::Data::Pageset | 1/2 | 1/2 subtests failed | 2026-04-22 | | DBIx::Class::ResultSet::RecursiveUpdate | 1/3 | 2/3 subtests failed | 2026-04-22 | | DBIx::Class::Schema::Config | 5/6 | 1/6 subtests failed | 2026-04-22 | +| DBIx::Class::Schema::Diff | 1/4 | 3/4 subtests failed | 2026-04-26 | | DBIx::Class::Schema::Loader | 0/33 | 53/33 subtests failed | 2026-04-21 | +| DBIx::Class::Schema::ResultSetNames | 1/3 | 2/3 subtests failed | 2026-04-25 | +| DBIx::Class::Schema::Versioned::Inline | 0/1 | 1/1 subtests failed | 2026-04-26 | +| DBIx::Class::SingletonRows | 0/1 | 10/1 subtests failed | 2026-04-25 | | DBIx::Class::TimeStamp | 0/2 | 14/2 subtests failed | 2026-04-21 | | DBIx::Class::TimeStamp::WithTimeZone | 0/1 | 1/1 subtests failed | 2026-04-12 | -| DBIx::Class::UUIDColumns | 0/2 | 14/2 subtests failed | 2026-04-21 | +| DBIx::Class::UUIDColumns | 0/2 | 14/2 subtests failed | 2026-04-26 | | DBIx::Connector | 0/118 | 640/118 subtests failed | 2026-04-12 | +| DBIx::DBStag | 0/8 | 66/8 subtests failed | 2026-04-25 | | DBIx::DSN::Resolver | 2/2 | | 2026-04-22 | | DBIx::DSN::Resolver::Cached | 0/1 | 1/1 subtests failed | 2026-04-22 | +| DBIx::DataFactory | 0/1 | 1/1 subtests failed | 2026-04-25 | | DBIx::DataModel | 0/20 | 154/20 subtests failed | 2026-04-22 | +| DBIx::DisconnectAll | 7/9 | 2/9 subtests failed | 2026-04-25 | | DBIx::FixtureLoader | 0/1 | 1/1 subtests failed | 2026-04-12 | | DBIx::Handler | 21/22 | 1/22 subtests failed | 2026-04-21 | | DBIx::Handler::Sunny | 0/1 | 1/1 subtests failed | 2026-04-21 | -| DBIx::Inspector | 1/1 | | 2026-04-21 | +| DBIx::Interpolate::STX | 196/219 | 23/219 subtests failed | 2026-04-25 | | DBIx::JCL | 0/2 | 2/2 subtests failed | 2026-04-22 | | DBIx::LogAny | 0/2 | 14/2 subtests failed | 2026-04-21 | | DBIx::MultiStatementDo | 0/2 | 2/2 subtests failed | 2026-04-21 | | DBIx::MyParse | 0/69 | 637/69 subtests failed | 2026-04-22 | | DBIx::MyParseX | 0/11 | 20/11 subtests failed | 2026-04-22 | | DBIx::NamedBinding | 0/5 | 8/5 subtests failed | 2026-04-12 | -| DBIx::NinjaORM | 0/13 | 30/13 subtests failed | 2026-04-21 | +| DBIx::NinjaORM | 0/13 | 30/13 subtests failed | 2026-04-26 | | DBIx::ORM::Declarative | 4/4 | | 2026-04-12 | +| DBIx::Placeholder::Named | 0/28 | 90/28 subtests failed | 2026-04-26 | | DBIx::RoboQuery | 105/106 | 1/106 subtests failed | 2026-04-22 | -| DBIx::RunSQL | 31/32 | 1/32 subtests failed | 2026-04-22 | +| DBIx::RunSQL | 31/32 | 1/32 subtests failed | 2026-04-26 | | DBIx::SecureCGI | 0/1 | 1/1 subtests failed | 2026-04-22 | -| DBIx::Skinny | 192/203 | 11/203 subtests failed | 2026-04-22 | +| DBIx::Skinny | 134/142 | 8/142 subtests failed | 2026-04-25 | | DBIx::Tracer | 1/4 | 3/4 subtests failed | 2026-04-21 | | DBIx::TransactionManager | 54/55 | 1/55 subtests failed | 2026-04-21 | | DBIx::TryAgain | 2/2 | | 2026-04-12 | +| DBIx::Wizard | 18/19 | 1/19 subtests failed | 2026-04-26 | | DBIx::Wrapper | 0/1 | 50/1 subtests failed | 2026-04-12 | | DBIx::dbMan | 0/1 | 4/1 subtests failed | 2026-04-12 | -| DBM::Deep | 0/1 | 1/1 subtests failed | 2026-04-22 | +| DBM::Deep | 0/1 | 1/1 subtests failed | 2026-04-26 | +| DBMedit | 1/4 | 3/4 subtests failed | 2026-04-26 | | DBR | 8/9 | 1/9 subtests failed | 2026-04-12 | | DB_File | 0/49 | 522/49 subtests failed | 2026-04-12 | +| DB_File::DB_Database | 0/1 | 8/1 subtests failed | 2026-04-25 | | DJabberd | 0/10 | 165/10 subtests failed | 2026-04-12 | | DJabberd::Authen::DBI | 0/1 | 1/1 subtests failed | 2026-04-12 | | DMTF::WSMan | 0/1 | 1/1 subtests failed | 2026-04-12 | @@ -1984,31 +2826,48 @@ | Dancer2::Plugin::Argon2 | 0/1 | 1/1 subtests failed | 2026-04-22 | | Dancer2::Plugin::Auth::Extensible | 1/2 | 1/2 subtests failed | 2026-04-22 | | Dancer2::Plugin::Auth::Extensible::Provider::DBIC | 10/10 | | 2026-04-22 | +| Dancer2::Plugin::Auth::Extensible::Provider::IMAP | 0/1 | 1/1 subtests failed | 2026-04-26 | | Dancer2::Plugin::Auth::Extensible::Rights | 0/1 | 1/1 subtests failed | 2026-04-22 | | Dancer2::Plugin::BrowserDetect | 1/1 | | 2026-04-22 | -| Dancer2::Plugin::DBIC | 0/1 | 13/1 subtests failed | 2026-04-22 | +| Dancer2::Plugin::DBIC | 0/1 | 13/1 subtests failed | 2026-04-25 | +| Dancer2::Plugin::DBIx::Class | 3/3 | | 2026-04-25 | +| Dancer2::Plugin::Database | 0/1 | 1/1 subtests failed | 2026-04-26 | +| Dancer2::Plugin::FormValidator::Extension::DBIC | 1/3 | 2/3 subtests failed | 2026-04-26 | +| Dancer2::Plugin::FormValidator::Role::Extension | 9/31 | 22/31 subtests failed | 2026-04-26 | | Dancer2::Plugin::Github::Webhook | 1/1 | | 2026-04-22 | -| Dancer2::Plugin::Locale::Wolowitz | 2/2 | | 2026-04-22 | +| Dancer2::Plugin::Locale::Wolowitz | 2/2 | | 2026-04-25 | | Dancer2::Plugin::MarkdownFilesToHTML | 0/1 | 20/1 subtests failed | 2026-04-22 | | Dancer2::Plugin::RoutePodCoverage | 0/3 | 5/3 subtests failed | 2026-04-22 | | Dancer2::Plugin::SlapbirdAPM | 0/1 | 1/1 subtests failed | 2026-04-12 | -| Dancer2::Template::Mason | 1/2 | 1/2 subtests failed | 2026-04-22 | +| Dancer2::Serializer::CBOR | 0/2 | 5/2 subtests failed | 2026-04-26 | +| Dancer2::Session::DBIC | 16/21 | 5/21 subtests failed | 2026-04-25 | +| Dancer2::Session::JSON | 1/1 | | 2026-04-25 | +| Dancer2::Template::Mason | 1/2 | 1/2 subtests failed | 2026-04-26 | | Dancer2::Template::TemplateFlute | 0/1 | 1/1 subtests failed | 2026-04-21 | | Dancer2::Template::TextTemplate | 1/2 | 1/2 subtests failed | 2026-04-12 | | Danga::Socket | 27/43 | 16/43 subtests failed | 2026-04-12 | | DarkPAN::Compare | 0/1 | 1/1 subtests failed | 2026-04-12 | | Data::Alias | 0/1 | 635/1 subtests failed | 2026-04-12 | +| Data::Cmp | 25/28 | 3/28 subtests failed | 2026-04-26 | | Data::DPath | 0/11 | 67/11 subtests failed | 2026-04-21 | | Data::Dmp | 23/25 | 2/25 subtests failed | 2026-04-22 | | Data::Dumper::Simple | 0/5 | 31/5 subtests failed | 2026-04-21 | | Data::FormValidator | 298/448 | 150/448 subtests failed | 2026-04-21 | +| Data::FormValidator::Constraints::Words | 61/101 | 40/101 subtests failed | 2026-04-26 | +| Data::FormValidator::Filters::Demoroniser | 0/1 | 9/1 subtests failed | 2026-04-26 | | Data::GUID | 0/15 | 63/15 subtests failed | 2026-04-12 | +| Data::Identifier | 0/29 | 166/29 subtests failed | 2026-04-26 | | Data::Integer | 0/1291 | 5423/1291 subtests failed | 2026-04-21 | +| Data::ModeMerge | 360/412 | 52/412 subtests failed | 2026-04-25 | | Data::MultiValuedHash | 0/7 | 214/7 subtests failed | 2026-04-21 | | Data::ObjectDriver | 0/72 | 685/72 subtests failed | 2026-04-21 | | Data::Perl | 193/194 | 1/194 subtests failed | 2026-04-12 | -| Data::Rmap | 36/39 | 3/39 subtests failed | 2026-04-22 | -| Data::Serializer | 632/1250 | 618/1250 subtests failed | 2026-04-22 | +| Data::Phrasebook::Loader::Ini | 1/11 | 10/11 subtests failed | 2026-04-26 | +| Data::Rmap | 36/39 | 3/39 subtests failed | 2026-04-26 | +| Data::Sah::Coerce::perl::To_date::From_float::epoch | 60/67 | 7/67 subtests failed | 2026-04-25 | +| Data::Sah::DefaultValueCommon | 6/7 | 1/7 subtests failed | 2026-04-25 | +| Data::Sah::Filter | 52/53 | 1/53 subtests failed | 2026-04-25 | +| Data::Serializer | 1816/1842 | 26/1842 subtests failed | 2026-04-26 | | Data::Serializer::JSON | 632/1250 | 618/1250 subtests failed | 2026-04-22 | | Data::ShowTable | 12/12 | | 2026-04-12 | | Data::Stag | 87/95 | 8/95 subtests failed | 2026-04-12 | @@ -2017,9 +2876,12 @@ | Data::StreamSerializer | 0/7 | 68/7 subtests failed | 2026-04-12 | | Data::Transpose | 300/407 | 107/407 subtests failed | 2026-04-21 | | Data::UUID | 0/1 | 32/1 subtests failed | 2026-04-12 | -| Data::Validate::Type | 11/66 | 55/66 subtests failed | 2026-04-21 | +| Data::Validate::Type | 11/66 | 55/66 subtests failed | 2026-04-26 | | Data::Validator | 0/1 | 1/1 subtests failed | 2026-04-22 | | Data::Visitor | 0/1 | 1/1 subtests failed | 2026-04-12 | +| Data::XLSX::Parser | 6/6 | | 2026-04-26 | +| DataFlow | 0/56 | 56/56 subtests failed | 2026-04-25 | +| DataFlow::Proc::URLRetriever | 0/2 | 2/2 subtests failed | 2026-04-25 | | Date::Calc | 2951/2997 | 46/2997 subtests failed | 2026-04-12 | | Date::Utility | 25/29 | 4/29 subtests failed | 2026-04-21 | | Date::strftimeq | 0/1 | 1/1 subtests failed | 2026-04-22 | @@ -2028,107 +2890,139 @@ | DateTime::Calendar::Japanese::Era | 8/13 | 5/13 subtests failed | 2026-04-22 | | DateTime::Calendar::Mayan | 0/5 | 120/5 subtests failed | 2026-04-12 | | DateTime::Event::Chinese | 0/2 | 2/2 subtests failed | 2026-04-22 | +| DateTime::Event::Cron | 0/18 | 156/18 subtests failed | 2026-04-26 | | DateTime::Event::Klingon | 0/3 | 4/3 subtests failed | 2026-04-12 | | DateTime::Event::Recurrence | 0/1 | 195/1 subtests failed | 2026-04-21 | | DateTime::Fiction::JRRTolkien::Shire | 179/181 | 2/181 subtests failed | 2026-04-12 | | DateTime::Format::Baby | 0/1 | 10/1 subtests failed | 2026-04-21 | | DateTime::Format::Builder | 9/11 | 2/11 subtests failed | 2026-04-12 | | DateTime::Format::Czech | 0/1 | 2/1 subtests failed | 2026-04-21 | -| DateTime::Format::DateManip | 1/1 | | 2026-04-22 | +| DateTime::Format::DBI | 9/10 | 1/10 subtests failed | 2026-04-26 | +| DateTime::Format::DateManip | 1/1 | | 2026-04-25 | | DateTime::Format::Duration::XSD | 0/1 | 37/1 subtests failed | 2026-04-21 | | DateTime::Format::Genealogy | 0/1 | 2/1 subtests failed | 2026-04-22 | | DateTime::Format::Japanese | 0/9 | 290/9 subtests failed | 2026-04-22 | | DateTime::Format::JavaScript | 0/1 | 1/1 subtests failed | 2026-04-21 | | DateTime::Format::Lite | 0/1 | 1/1 subtests failed | 2026-04-21 | | DateTime::Format::Mail | 88/29616 | 29528/29616 subtests failed | 2026-04-21 | -| DateTime::Format::Natural | 416/421 | 5/421 subtests failed | 2026-04-22 | +| DateTime::Format::Natural | 416/421 | 5/421 subtests failed | 2026-04-26 | | DateTime::Format::PDF | 1/3 | 2/3 subtests failed | 2026-04-12 | | DateTime::Format::RelativeTime | 0/2 | 2/2 subtests failed | 2026-04-22 | | DateTime::Format::SQLite | 0/2 | 51/2 subtests failed | 2026-04-12 | | DateTime::Format::Strftimeq | 0/1 | 1/1 subtests failed | 2026-04-22 | | DateTime::Lite | 0/1 | 1/1 subtests failed | 2026-04-21 | | DateTime::Locale::FromCLDR | 1/3 | 2/3 subtests failed | 2026-04-21 | -| DateTime::Set | 0/1 | 9/1 subtests failed | 2026-04-21 | | DateTime::Util::Calc | 0/38 | 38/38 subtests failed | 2026-04-22 | -| DateTimeX::AATW | 34/42 | 8/42 subtests failed | 2026-04-12 | +| DateTimeX::AATW | 34/42 | 8/42 subtests failed | 2026-04-26 | | DateTimeX::Auto | 2/9 | 7/9 subtests failed | 2026-04-22 | +| DateTimeX::Easy | 0/1 | 1/1 subtests failed | 2026-04-25 | | DateTimeX::strftimeq | 0/1 | 1/1 subtests failed | 2026-04-22 | +| Debuggit | 52/53 | 1/53 subtests failed | 2026-04-26 | | Declare::Constraints::Simple | 0/14 | 19/14 subtests failed | 2026-04-22 | +| Deco | 71/78 | 7/78 subtests failed | 2026-04-25 | +| DestructAssign | 4/48 | 44/48 subtests failed | 2026-04-26 | +| Devel::AssertC99 | 4/7 | 3/7 subtests failed | 2026-04-25 | | Devel::Caller | 0/1 | 72/1 subtests failed | 2026-04-12 | | Devel::Caller::IgnoreNamespaces | 0/10 | 30/10 subtests failed | 2026-04-21 | -| Devel::CheckCompiler | 4/7 | 3/7 subtests failed | 2026-04-22 | +| Devel::Caller::Perl | 0/1 | 1/1 subtests failed | 2026-04-26 | +| Devel::CheckCompiler | 4/7 | 3/7 subtests failed | 2026-04-26 | | Devel::CheckLib | 13/25 | 12/25 subtests failed | 2026-04-12 | | Devel::Confess | 50/123 | 73/123 subtests failed | 2026-04-21 | | Devel::GlobalDestruction | 3/12 | 9/12 subtests failed | 2026-04-12 | | Devel::Hide | 55/77 | 22/77 subtests failed | 2026-04-12 | +| Devel::PPPort | 1/22 | 21/22 subtests failed | 2026-04-26 | | Devel::REPL | 7/32 | 25/32 subtests failed | 2026-04-22 | | Dezi::Client | 0/1 | 26/1 subtests failed | 2026-04-21 | | Digest::Haval256 | 0/13 | 25/13 subtests failed | 2026-04-22 | | Digest::JHash | 0/1 | 6/1 subtests failed | 2026-04-12 | +| Digest::OAT | 0/1 | 5/1 subtests failed | 2026-04-25 | | Digest::SHA2 | 0/21 | 61/21 subtests failed | 2026-04-22 | | Digest::SHA3 | 0/2 | 31/2 subtests failed | 2026-04-12 | | Digest::Whirlpool | 0/1 | 39/1 subtests failed | 2026-04-22 | -| DirectiveSet | 22/223 | 201/223 subtests failed | 2026-04-12 | -| Dist::Build | 13/14 | 1/14 subtests failed | 2026-04-22 | +| DirectiveSet | 22/223 | 201/223 subtests failed | 2026-04-26 | +| Directory::Scratch | 0/50 | 211/50 subtests failed | 2026-04-26 | +| Dist::Build | 13/14 | 1/14 subtests failed | 2026-04-26 | | Dist::Metadata | 351/351 | | 2026-04-21 | | Dist::Zilla::App | 1/165 | 164/165 subtests failed | 2026-04-22 | -| Dist::Zilla::App::Command::cover | 0/1 | 1/1 subtests failed | 2026-04-22 | +| Dist::Zilla::App::Command::cover | 0/1 | 1/1 subtests failed | 2026-04-26 | +| Dist::Zilla::Plugin::CopyFilesFromBuild | 1/3 | 2/3 subtests failed | 2026-04-26 | +| Dist::Zilla::Plugin::ReadmeAnyFromPod | 1/4 | 3/4 subtests failed | 2026-04-26 | +| Distribution::Guess::BuildSystem | 1/8 | 7/8 subtests failed | 2026-04-26 | | Docopt | 0/1 | 1/1 subtests failed | 2026-04-12 | | Dotenv | 30/30 | | 2026-04-12 | +| Doubly | 0/2 | 2/2 subtests failed | 2026-04-25 | | Dpkg | 11939/12524 | 585/12524 subtests failed | 2026-04-21 | | Draft | 13/14 | 1/14 subtests failed | 2026-04-12 | | Dumbbench | 0/2 | 55/2 subtests failed | 2026-04-22 | | DynGig::Range::Cluster | 7/8 | 1/8 subtests failed | 2026-04-12 | | ELF::sign | 1/2 | 1/2 subtests failed | 2026-04-12 | +| ELab::Client | 0/1 | 1/1 subtests failed | 2026-04-26 | | EV | 0/2 | 6850/2 subtests failed | 2026-04-12 | | EV::ClickHouse | 0/1 | 1/1 subtests failed | 2026-04-12 | +| EVERY::LAST | 53/56 | 3/56 subtests failed | 2026-04-25 | +| EWS::Client | 0/1 | 1/1 subtests failed | 2026-04-25 | +| EditorVi | 0/1 | 1/1 subtests failed | 2026-04-25 | | ElasticSearch::SearchBuilder | 21/21 | | 2026-04-22 | +| Elive | 33/63 | 30/63 subtests failed | 2026-04-26 | | Email::Date::Format | 4/8 | 4/8 subtests failed | 2026-04-12 | +| Email::LocalDelivery | 0/1 | 6/1 subtests failed | 2026-04-25 | | Email::Valid::Loose | 0/1 | 1/1 subtests failed | 2026-04-21 | +| EmbedIT::WebIT | 4/5 | 1/5 subtests failed | 2026-04-26 | +| Encode::ZapCP1252 | 5/26 | 21/26 subtests failed | 2026-04-26 | | Error | 0/9 | 44/9 subtests failed | 2026-04-22 | | Error::Pure | 113/115 | 2/115 subtests failed | 2026-04-12 | | Etherpad | 1/2 | 1/2 subtests failed | 2026-04-22 | | Expect | 0/20 | 83/20 subtests failed | 2026-04-22 | | Export::Attrs | 0/1 | 2/1 subtests failed | 2026-04-12 | | Exporter | 43/44 | 1/44 subtests failed | 2026-04-22 | +| Exporter::Easy | 68/72 | 4/72 subtests failed | 2026-04-25 | +| Exporter::Extensible | 0/1 | 1/1 subtests failed | 2026-04-26 | | ExtUtils::Builder | 80/82 | 2/82 subtests failed | 2026-04-12 | | ExtUtils::Builder::Compiler | 12/12 | | 2026-04-12 | | ExtUtils::CppGuess | 13/20 | 7/20 subtests failed | 2026-04-12 | | ExtUtils::Depends | 44/46 | 2/46 subtests failed | 2026-04-22 | -| ExtUtils::MM_Unix | 512/994 | 482/994 subtests failed | 2026-04-22 | +| ExtUtils::LibBuilder | 0/2 | 7/2 subtests failed | 2026-04-26 | +| ExtUtils::MM_Unix | 512/994 | 482/994 subtests failed | 2026-04-26 | | ExtUtils::Typemaps::Magic | 0/3 | 3/3 subtests failed | 2026-04-22 | -| ExtUtils::XSpp | 0/1 | 3/1 subtests failed | 2026-04-22 | +| ExtUtils::XSpp | 0/1 | 3/1 subtests failed | 2026-04-25 | | FB3 | 0/2 | 2/2 subtests failed | 2026-04-12 | | FCGI::Engine | 0/17 | 77/17 subtests failed | 2026-04-22 | | FFmpeg::Command | 4/4 | | 2026-04-12 | -| FFmpeg::Thumbnail | 0/1 | 1/1 subtests failed | 2026-04-12 | +| FFmpeg::Thumbnail | 0/1 | 1/1 subtests failed | 2026-04-25 | | FSA::Rules | 267/340 | 73/340 subtests failed | 2026-04-12 | +| FTDI | 0/2 | 3/2 subtests failed | 2026-04-26 | | FTN::Crypt | 3/5 | 2/5 subtests failed | 2026-04-21 | | FTN::Nodelist | 0/2 | 28/2 subtests failed | 2026-04-21 | | Farly | 346/370 | 24/370 subtests failed | 2026-04-22 | +| FastGlob | 140/144 | 4/144 subtests failed | 2026-04-26 | | Feature::Compat::Defer | 28/30 | 2/30 subtests failed | 2026-04-22 | -| Feature::Compat::Try | 31/38 | 7/38 subtests failed | 2026-04-22 | -| Fennec::Lite | 26/28 | 2/28 subtests failed | 2026-04-22 | -| File::BOM | 0/5 | 115/5 subtests failed | 2026-04-22 | +| Feature::Compat::Try | 31/38 | 7/38 subtests failed | 2026-04-26 | +| Fennec::Lite | 26/28 | 2/28 subtests failed | 2026-04-25 | +| File::BOM | 0/5 | 115/5 subtests failed | 2026-04-25 | +| File::Find::Closures | 146/148 | 2/148 subtests failed | 2026-04-26 | +| File::FindLib | 4/13 | 9/13 subtests failed | 2026-04-26 | | File::NFSLock | 0/44 | 170/44 subtests failed | 2026-04-22 | | File::Next | 83/91 | 8/91 subtests failed | 2026-04-22 | | File::Path | 0/41 | 164/41 subtests failed | 2026-04-21 | -| File::Path::Expand | 0/1 | 8/1 subtests failed | 2026-04-12 | +| File::Path::Expand | 0/1 | 8/1 subtests failed | 2026-04-25 | | File::PathConvert | 264/266 | 2/266 subtests failed | 2026-04-12 | -| File::Remove | 211/218 | 7/218 subtests failed | 2026-04-22 | +| File::Remove | 211/218 | 7/218 subtests failed | 2026-04-26 | +| File::RotateLogs | 0/1 | 1/1 subtests failed | 2026-04-25 | | File::Rules | 0/3 | 14/3 subtests failed | 2026-04-22 | | File::ShareDir::Tarball | 2/2 | | 2026-04-22 | | File::SortedSeek::PERLANCAR | 2/4 | 2/4 subtests failed | 2026-04-21 | | File::chmod | 30/39 | 9/39 subtests failed | 2026-04-12 | | Filter::Template | 0/13 | 19/13 subtests failed | 2026-04-22 | | Filter::signatures | 0/10 | 59/10 subtests failed | 2026-04-12 | -| FormValidator::Lite | 63/72 | 9/72 subtests failed | 2026-04-21 | -| FormValidator::Lite::Constraint::Moose | 0/1 | 1/1 subtests failed | 2026-04-21 | +| Filter::tee | 0/7 | 34/7 subtests failed | 2026-04-26 | +| FormValidator::Lite | 63/72 | 9/72 subtests failed | 2026-04-26 | +| FormValidator::Lite::Constraint::Moose | 0/1 | 1/1 subtests failed | 2026-04-26 | | FormValidator::Simple | 0/38 | 308/38 subtests failed | 2026-04-21 | +| Format::Human::Bytes | 186/216 | 30/216 subtests failed | 2026-04-26 | | Function::Parameters | 0/14 | 1426/14 subtests failed | 2026-04-12 | -| Furl | 26/27 | 1/27 subtests failed | 2026-04-22 | +| Furl | 26/27 | 1/27 subtests failed | 2026-04-26 | | FuseBead::From::PNG | 15/17 | 2/17 subtests failed | 2026-04-21 | -| Future | 314/329 | 15/329 subtests failed | 2026-04-22 | +| Future | 757/786 | 29/786 subtests failed | 2026-04-26 | | GD::Barcode::Code93 | 2/4 | 2/4 subtests failed | 2026-04-22 | | GD::Chord::Piano | 0/1 | 16/1 subtests failed | 2026-04-22 | | GD::Graph::histogram | 0/1 | 2/1 subtests failed | 2026-04-21 | @@ -2136,89 +3030,150 @@ | GD::Image::Orientation | 0/1 | 1/1 subtests failed | 2026-04-21 | | GD::Thumbnail | 1/2 | 1/2 subtests failed | 2026-04-21 | | GD::Window | 0/2 | 4/2 subtests failed | 2026-04-21 | +| GPS::Babel | 1/2 | 1/2 subtests failed | 2026-04-26 | +| GPS::Base | 0/10 | 11/10 subtests failed | 2026-04-25 | | GSSAPI | 0/6 | 11/6 subtests failed | 2026-04-21 | | Games::NES::ROM | 0/19 | 56/19 subtests failed | 2026-04-22 | +| Gantry | 73/88 | 15/88 subtests failed | 2026-04-26 | | Gapp | 0/5 | 348/5 subtests failed | 2026-04-22 | +| GearmanX::Starter | 0/1 | 1/1 subtests failed | 2026-04-25 | +| Gedcom | 0/374 | 9259/374 subtests failed | 2026-04-25 | +| Geo::Gpx | 0/6 | 108/6 subtests failed | 2026-04-26 | +| Geoffrey | 220/320 | 100/320 subtests failed | 2026-04-25 | | Getopt::Euclid | 1/39 | 38/39 subtests failed | 2026-04-22 | | Getopt::Long::Util | 1/2 | 1/2 subtests failed | 2026-04-22 | | GitHub::WebHook | 6/6 | | 2026-04-21 | | GitInsight | 0/1 | 1/1 subtests failed | 2026-04-22 | +| Glib::Ex::FreezeNotify | 0/28 | 43/28 subtests failed | 2026-04-26 | +| Glib::Ex::SignalIds | 0/28 | 43/28 subtests failed | 2026-04-25 | | Google::ProtocolBuffers | 199/397 | 198/397 subtests failed | 2026-04-21 | +| Grades | 16/17 | 1/17 subtests failed | 2026-04-26 | | Graph::Easy | 2130/2536 | 406/2536 subtests failed | 2026-04-22 | | Graph::Easy::As_svg | 0/7 | 136/7 subtests failed | 2026-04-22 | | GraphQL | 3/4 | 1/4 subtests failed | 2026-04-22 | +| Graphics::Color | 0/20 | 104/20 subtests failed | 2026-04-25 | | Graphics::Toolkit::Color | 1651/2572 | 921/2572 subtests failed | 2026-04-12 | | Gtk2::Chmod | 4/5 | 1/5 subtests failed | 2026-04-22 | +| Gtk2::Ex::ActionTooltips | 0/30 | 324/30 subtests failed | 2026-04-26 | | Gtk2::Ex::GraphViz | 1/2 | 1/2 subtests failed | 2026-04-22 | +| Gtk2::Ex::GroupBy | 1/2 | 1/2 subtests failed | 2026-04-26 | +| Gtk2::Ex::SyncCall | 0/30 | 324/30 subtests failed | 2026-04-25 | | Gtk2::PathButtonBar | 4/5 | 1/5 subtests failed | 2026-04-22 | | Gtk2::WebKit::Mechanize | 0/4 | 16/4 subtests failed | 2026-04-21 | +| Gx | 0/16 | 22/16 subtests failed | 2026-04-25 | +| HAL::Resource | 177/212 | 35/212 subtests failed | 2026-04-26 | | HOP::Stream | 47/64 | 17/64 subtests failed | 2026-04-21 | | HTML::CalendarMonth | 2/3 | 1/3 subtests failed | 2026-04-22 | | HTML::DBTable | 6/14 | 8/14 subtests failed | 2026-04-22 | -| HTML::Element | 0/401 | 591/401 subtests failed | 2026-04-22 | +| HTML::Display::MozRepl | 0/1 | 1/1 subtests failed | 2026-04-26 | +| HTML::Element | 0/401 | 591/401 subtests failed | 2026-04-25 | | HTML::Element::AbsoluteXPath | 0/3 | 19/3 subtests failed | 2026-04-22 | -| HTML::FillInForm::Lite | 0/147 | 152/147 subtests failed | 2026-04-22 | +| HTML::ExtractText | 29/48 | 19/48 subtests failed | 2026-04-26 | +| HTML::ExtractText::Extra | 6/8 | 2/8 subtests failed | 2026-04-26 | +| HTML::FillInForm::Lite | 0/147 | 152/147 subtests failed | 2026-04-26 | | HTML::FormFu::Constraint::TauStation::DateTime | 0/13 | 26/13 subtests failed | 2026-04-22 | -| HTML::FormatNroffSub | 13/14 | 1/14 subtests failed | 2026-04-22 | +| HTML::FormHandler::Model::DBIC | 0/17 | 17/17 subtests failed | 2026-04-26 | +| HTML::FormatNroffSub | 13/14 | 1/14 subtests failed | 2026-04-25 | | HTML::FormatText | 11/29 | 18/29 subtests failed | 2026-04-12 | -| HTML::Grabber | 0/1 | 1/1 subtests failed | 2026-04-21 | +| HTML::FormatText::WithLinks | 0/2 | 92/2 subtests failed | 2026-04-26 | +| HTML::Grabber | 0/1 | 1/1 subtests failed | 2026-04-25 | +| HTML::Lint | 168/349 | 181/349 subtests failed | 2026-04-25 | | HTML::ParagraphSplit | 0/6 | 22/6 subtests failed | 2026-04-21 | -| HTML::Parse | 0/401 | 591/401 subtests failed | 2026-04-21 | +| HTML::Parse | 0/401 | 591/401 subtests failed | 2026-04-25 | +| HTML::Prototype | 2/3 | 1/3 subtests failed | 2026-04-26 | +| HTML::Purifier | 0/2 | 2/2 subtests failed | 2026-04-26 | | HTML::Split | 7/11 | 4/11 subtests failed | 2026-04-22 | +| HTML::Stream::LinkRepairForm | 69/148 | 79/148 subtests failed | 2026-04-25 | | HTML::StripScripts::Parser | 0/5 | 213/5 subtests failed | 2026-04-22 | +| HTML::TableContent | 452/457 | 5/457 subtests failed | 2026-04-25 | | HTML::TableExtract | 0/128 | 2487/128 subtests failed | 2026-04-21 | | HTML::TableTiler | 0/1 | 5/1 subtests failed | 2026-04-12 | | HTML::Tag | 0/1 | 47/1 subtests failed | 2026-04-21 | | HTML::Template | 605/608 | 3/608 subtests failed | 2026-04-12 | | HTML::Template::Compiled | 224/246 | 22/246 subtests failed | 2026-04-21 | +| HTML::Template::Compiled::Plugin::HTML_Tags | 10/11 | 1/11 subtests failed | 2026-04-26 | +| HTML::Template::Pluggable | 80/91 | 11/91 subtests failed | 2026-04-26 | | HTML::Tested | 86/281 | 195/281 subtests failed | 2026-04-21 | | HTML::Tested::JavaScript | 219/377 | 158/377 subtests failed | 2026-04-21 | -| HTML::TokeParser::Simple | 169/170 | 1/170 subtests failed | 2026-04-22 | -| HTML::Tree | 0/401 | 591/401 subtests failed | 2026-04-21 | -| HTML::TreeBuilder | 0/401 | 591/401 subtests failed | 2026-04-22 | +| HTML::ToDocBook | 0/3 | 7/3 subtests failed | 2026-04-25 | +| HTML::TokeParser::Simple | 169/170 | 1/170 subtests failed | 2026-04-25 | +| HTML::Tree | 0/401 | 591/401 subtests failed | 2026-04-26 | | HTML::TreeBuilderX::ASP_NET | 0/11 | 17/11 subtests failed | 2026-04-22 | | HTML::ValidationRules::Legacy | 28/28 | | 2026-04-21 | -| HTML::Widget | 0/1 | 543/1 subtests failed | 2026-04-22 | -| HTML::Widget::SideBar | 25/33 | 8/33 subtests failed | 2026-04-22 | +| HTML::Widget | 0/1 | 625/1 subtests failed | 2026-04-25 | +| HTML::Widget::Plugin::Combo | 1/2 | 1/2 subtests failed | 2026-04-26 | +| HTML::Widget::SideBar | 25/33 | 8/33 subtests failed | 2026-04-25 | | HTML::WidgetValidator::Widget::TegakiBlog | 0/1 | 1/1 subtests failed | 2026-04-21 | | HTML::Widgets::NavMenu | 0/46 | 321/46 subtests failed | 2026-04-12 | +| HTML::WikiConverter::DokuWiki | 4/5 | 1/5 subtests failed | 2026-04-26 | +| HTML::WikiConverter::PhpWiki | 4/5 | 1/5 subtests failed | 2026-04-25 | | HTML::WikiConverter::UseMod | 4/5 | 1/5 subtests failed | 2026-04-21 | | HTML::WikiConverter::WakkaWiki | 4/5 | 1/5 subtests failed | 2026-04-22 | +| HTML::YaTmpl | 0/2 | 54/2 subtests failed | 2026-04-26 | | HTTP::Body | 0/57 | 185/57 subtests failed | 2026-04-12 | +| HTTP::Cache::Transparent | 6/10 | 4/10 subtests failed | 2026-04-26 | | HTTP::Engine | 0/7 | 106/7 subtests failed | 2026-04-21 | | HTTP::Engine::Compat | 0/1 | 16/1 subtests failed | 2026-04-21 | +| HTTP::HeaderParser::XS | 0/2 | 38/2 subtests failed | 2026-04-25 | | HTTP::Headers::ActionPack | 445/448 | 3/448 subtests failed | 2026-04-12 | +| HTTP::Headers::Fast::XS | 187/191 | 4/191 subtests failed | 2026-04-25 | +| HTTP::LoadGen | 0/4 | 72/4 subtests failed | 2026-04-25 | +| HTTP::MobileAgent::Plugin::ID | 1/2 | 1/2 subtests failed | 2026-04-25 | +| HTTP::MobileAgent::Plugin::Locator | 0/1 | 12/1 subtests failed | 2026-04-26 | | HTTP::Request::Params | 8/10 | 2/10 subtests failed | 2026-04-21 | -| HTTP::Response::Switch | 0/3 | 3/3 subtests failed | 2026-04-21 | +| HTTP::Response::Switch | 0/3 | 3/3 subtests failed | 2026-04-26 | +| HTTP::Server::Brick | 0/5 | 278/5 subtests failed | 2026-04-26 | | HTTP::Server::Simple | 0/14 | 76/14 subtests failed | 2026-04-12 | -| HTTP::Session2 | 4/6 | 2/6 subtests failed | 2026-04-22 | +| HTTP::Session2 | 4/6 | 2/6 subtests failed | 2026-04-26 | | HTTP::Tiny | 107/227 | 120/227 subtests failed | 2026-04-22 | +| HTTP::Tiny::NewestFirefox | 0/1 | 1/1 subtests failed | 2026-04-25 | | HTTP::Tiny::SPDY | 0/3 | 16/3 subtests failed | 2026-04-12 | | HTTP::UserAgentString::Browser | 4/8 | 4/8 subtests failed | 2026-04-22 | +| HTTP::WebTest | 0/94 | 152/94 subtests failed | 2026-04-26 | | HTTP::XSHeaders | 0/1 | 3/1 subtests failed | 2026-04-21 | +| HTTPEx::Declare | 0/1 | 1/1 subtests failed | 2026-04-26 | | Hash::Objectify | 1/1 | | 2026-04-21 | | Hash::Type | 47/53 | 6/53 subtests failed | 2026-04-22 | | Haul | 0/1 | 9/1 subtests failed | 2026-04-21 | | Heap | 0/862 | 1612/862 subtests failed | 2026-04-12 | | Hook::LexWrap | 58/58 | | 2026-04-12 | | Horus | 0/25 | 157/25 subtests failed | 2026-04-12 | +| IO | 8584/16589 | 8005/16589 subtests failed | 2026-04-25 | +| IO::AIO::Util | 0/2 | 2/2 subtests failed | 2026-04-25 | +| IO::All::SFTP | 0/2 | 2/2 subtests failed | 2026-04-26 | | IO::Async::Loop::Glib | 1/2 | 1/2 subtests failed | 2026-04-22 | | IO::Async::Resolver::StupidCache | 1/2 | 1/2 subtests failed | 2026-04-22 | +| IO::Capture | 119/121 | 2/121 subtests failed | 2026-04-25 | | IO::Detect | 225/228 | 3/228 subtests failed | 2026-04-21 | +| IO::EPP | 1/1 | | 2026-04-25 | +| IO::HyCon | 0/1 | 1/1 subtests failed | 2026-04-26 | | IO::Infiles | 6/8 | 2/8 subtests failed | 2026-04-12 | -| IO::Lambda | 62/123 | 61/123 subtests failed | 2026-04-21 | +| IO::Iron | 11/12 | 1/12 subtests failed | 2026-04-26 | +| IO::Lambda | 62/123 | 61/123 subtests failed | 2026-04-25 | | IO::Pipe | 8581/16586 | 8005/16586 subtests failed | 2026-04-12 | -| IO::SessionData | 14/15 | 1/15 subtests failed | 2026-04-22 | +| IO::Pipely | 11/17 | 6/17 subtests failed | 2026-04-26 | +| IO::SessionData | 14/15 | 1/15 subtests failed | 2026-04-26 | | IO::Slice | 0/1 | 1/1 subtests failed | 2026-04-21 | -| IO::Socket::Timeout | 0/1 | 1/1 subtests failed | 2026-04-22 | -| IO::String | 41/43 | 2/43 subtests failed | 2026-04-12 | +| IO::Socket::Socks::Wrapped | 1/1 | | 2026-04-25 | +| IO::Stream | 0/1 | 1/1 subtests failed | 2026-04-25 | +| IO::Stream::Proxy::SOCKSv4 | 0/1 | 1/1 subtests failed | 2026-04-25 | +| IO::String | 42/43 | 1/43 subtests failed | 2026-04-26 | +| IO::StructuredOutput | 0/16 | 21/16 subtests failed | 2026-04-25 | | IO::Tail | 0/44 | 74/44 subtests failed | 2026-04-22 | +| IO::Tee | 17/31 | 14/31 subtests failed | 2026-04-26 | +| IO::Tokenized | 3/13 | 10/13 subtests failed | 2026-04-25 | | IO::Util | 0/43 | 58/43 subtests failed | 2026-04-12 | | IO::YAML | 0/19 | 31/19 subtests failed | 2026-04-21 | | IOLayer::MD5 | 4/10 | 6/10 subtests failed | 2026-04-22 | | IPC::Cmd | 20/20 | | 2026-04-22 | +| IPC::ConcurrencyLimit::WithStandby | 43/63 | 20/63 subtests failed | 2026-04-26 | | IPC::MPS | 0/1 | 6/1 subtests failed | 2026-04-22 | +| IPC::ReadpipeX | 9/11 | 2/11 subtests failed | 2026-04-25 | | IPC::Run | 0/1 | 640/1 subtests failed | 2026-04-12 | +| IPC::ScoreBoard | 0/1 | 89/1 subtests failed | 2026-04-25 | +| IPC::ShareLite | 0/3 | 18/3 subtests failed | 2026-04-26 | +| IPC::System::Options | 0/1 | 1/1 subtests failed | 2026-04-25 | +| IPC::System::Simple | 171/183 | 12/183 subtests failed | 2026-04-25 | | IPTables::Log | 0/3 | 48/3 subtests failed | 2026-04-22 | | IRI | 4/8 | 4/8 subtests failed | 2026-04-12 | | Image::SVG::Transform | 0/6 | 6/6 subtests failed | 2026-04-21 | @@ -2227,35 +3182,57 @@ | InfluxDB::Writer | 5/10 | 5/10 subtests failed | 2026-04-22 | | Inline | 0/6 | 7/6 subtests failed | 2026-04-22 | | Inline::C | 12/34 | 22/34 subtests failed | 2026-04-22 | +| Inline::Java | 0/1 | 248/1 subtests failed | 2026-04-25 | +| Interchange6 | 30/31 | 1/31 subtests failed | 2026-04-25 | +| Interpolation | 157/158 | 1/158 subtests failed | 2026-04-26 | +| JDBC | 0/2 | 17/2 subtests failed | 2026-04-25 | | JIP::Debug | 3/13 | 10/13 subtests failed | 2026-04-21 | | JIP::LockSocket | 0/2 | 9/2 subtests failed | 2026-04-21 | +| JIRA::Client::Automated | 1/2 | 1/2 subtests failed | 2026-04-25 | +| JKML | 0/1 | 1/1 subtests failed | 2026-04-26 | +| JSON::MaybeXS | 49/51 | 2/51 subtests failed | 2026-04-26 | | JSON::ON | 0/1 | 1/1 subtests failed | 2026-04-22 | | JSON::RPC | 21/30 | 9/30 subtests failed | 2026-04-12 | +| JSON::RPC::Dispatcher | 0/2 | 3/2 subtests failed | 2026-04-26 | | JSON::RPC::Server::FastCGI | 1/2 | 1/2 subtests failed | 2026-04-21 | | JSON::RPC::Simple | 20/24 | 4/24 subtests failed | 2026-04-21 | | JSON::Schema | 0/1 | 8/1 subtests failed | 2026-04-21 | -| JSON::Schema::Generate | 0/1 | 1/1 subtests failed | 2026-04-21 | +| JSON::Schema::Generate | 0/1 | 1/1 subtests failed | 2026-04-26 | +| JSON::Schema::Modern | 3/3 | | 2026-04-26 | | JSON::Validator | 4/4 | | 2026-04-22 | | JSON::WebToken | 21/23 | 2/23 subtests failed | 2026-04-21 | | JSON::ize | 12/17 | 5/17 subtests failed | 2026-04-21 | | JSONP | 0/1 | 1/1 subtests failed | 2026-04-12 | +| JavaScript::Shell | 0/1 | 1/1 subtests failed | 2026-04-25 | +| KCP | 1/2 | 1/2 subtests failed | 2026-04-25 | +| KeyedMutex | 0/5 | 25/5 subtests failed | 2026-04-26 | | KiokuDB | 2/144 | 142/144 subtests failed | 2026-04-21 | | KiokuX::Model | 0/1 | 1/1 subtests failed | 2026-04-21 | | Kwalify | 133/139 | 6/139 subtests failed | 2026-04-12 | | LCFG::Build::PkgSpec | 0/14 | 158/14 subtests failed | 2026-04-22 | | LCFG::Build::Skeleton | 0/1 | 1/1 subtests failed | 2026-04-22 | | LCFG::Build::VCS | 0/3 | 3/3 subtests failed | 2026-04-22 | +| LEOCHARRE::Dir | 1/1 | | 2026-04-26 | | LIMS::MT_Plate | 12/13 | 1/13 subtests failed | 2026-04-22 | | LWP::Authen::OAuth2 | 53/54 | 1/54 subtests failed | 2026-04-22 | +| LWP::ConnCache::MaxKeepAliveRequests | 0/1 | 6/1 subtests failed | 2026-04-26 | | LWP::Protocol::Net::Curl | 0/2 | 2/2 subtests failed | 2026-04-21 | -| LWP::Protocol::PSGI | 25/27 | 2/27 subtests failed | 2026-04-21 | +| LWP::Protocol::PSGI | 25/27 | 2/27 subtests failed | 2026-04-26 | +| LWP::Protocol::sftp | 0/1 | 1/1 subtests failed | 2026-04-26 | +| LWP::UserAgent::AtomClient | 0/116 | 165/116 subtests failed | 2026-04-26 | +| LWP::UserAgent::Cache::Memcached | 0/1 | 2/1 subtests failed | 2026-04-26 | +| LWP::UserAgent::ProgressBar | 9/11 | 2/11 subtests failed | 2026-04-26 | +| LWPx::ParanoidHandler | 22/24 | 2/24 subtests failed | 2026-04-26 | | LabKey::Query | 6/12 | 6/12 subtests failed | 2026-04-12 | | Lexical::Accessor | 63/65 | 2/65 subtests failed | 2026-04-22 | | Lingua::EN::Inflect::Phrase | 137/137 | | 2026-04-12 | | Lingua::EN::Tagger | 0/41 | 75/41 subtests failed | 2026-04-12 | +| Lingua::Han::PinYin | 16/51 | 35/51 subtests failed | 2026-04-26 | | Lingua::PT::PLNbase | 0/7 | 133/7 subtests failed | 2026-04-22 | | Lingua::Stem::Ru | 0/4 | 4/4 subtests failed | 2026-04-12 | +| Linux::PipeMagic | 0/1 | 1/1 subtests failed | 2026-04-26 | | LinuxRealTime | 0/1 | 1/1 subtests failed | 2026-04-12 | +| List::Sliding::Changes | 47/47 | | 2026-04-26 | | List::SomeUtils | 41/45 | 4/45 subtests failed | 2026-04-12 | | List::Util | 0/842 | 1487/842 subtests failed | 2026-04-21 | | Locale::Intl | 0/2 | 2/2 subtests failed | 2026-04-22 | @@ -2278,27 +3255,41 @@ | Log::Handler | 183/186 | 3/186 subtests failed | 2026-04-21 | | Log::Log4perl::Tiny | 214/314 | 100/314 subtests failed | 2026-04-21 | | Log::Structured | 11/13 | 2/13 subtests failed | 2026-04-12 | +| MARC::Batch | 1009/1013 | 4/1013 subtests failed | 2026-04-26 | +| MARC::Charset | 0/16 | 22/16 subtests failed | 2026-04-26 | +| MARC::File::XML | 0/5 | 65/5 subtests failed | 2026-04-26 | +| MARC::Moose::Field::Control | 0/20 | 74/20 subtests failed | 2026-04-26 | | MCP::Run | 0/2 | 2/2 subtests failed | 2026-04-22 | | MD5 | 0/3 | 11/3 subtests failed | 2026-04-12 | +| MDOM::Assignment | 97/97 | | 2026-04-25 | | MIME::Charset | 77/93 | 16/93 subtests failed | 2026-04-12 | | MIME::Lite | 18/24 | 6/24 subtests failed | 2026-04-12 | -| MIME::QuotedPrint | 315/348 | 33/348 subtests failed | 2026-04-12 | +| MIME::Lite::TT::HTML | 0/1 | 1/1 subtests failed | 2026-04-26 | +| MIME::Lite::TT::HTML::Japanese | 2/3 | 1/3 subtests failed | 2026-04-26 | +| MIME::QuotedPrint | 315/348 | 33/348 subtests failed | 2026-04-26 | | MIME::Types | 97/97 | | 2026-04-12 | | MKDoc::XML | 388/388 | | 2026-04-22 | -| MLDBM | 0/6 | 18/6 subtests failed | 2026-04-22 | -| MMS::Mail::Provider::UK02 | 1/2 | 1/2 subtests failed | 2026-04-22 | +| MLDBM | 0/6 | 9/6 subtests failed | 2026-04-26 | +| MMS::Mail::Provider::UK02 | 1/2 | 1/2 subtests failed | 2026-04-25 | +| MRS::Algorithm | 0/12 | 108/12 subtests failed | 2026-04-26 | +| MT::Import::Mbox | 0/1 | 1/1 subtests failed | 2026-04-26 | +| MVC::Neaf | 2/3 | 1/3 subtests failed | 2026-04-25 | | Mac::AppleEvents | 0/2 | 2964/2 subtests failed | 2026-04-21 | | Mac::AppleEvents::Simple | 0/2 | 23/2 subtests failed | 2026-04-21 | | Mac::Apps::Launch | 0/2 | 21/2 subtests failed | 2026-04-21 | | Mac::Errors | 0/8 | 32/8 subtests failed | 2026-04-21 | | Mac::Growl | 0/1 | 10/1 subtests failed | 2026-04-21 | | Mail::Sender | 175/178 | 3/178 subtests failed | 2026-04-21 | +| Marathon | 0/1 | 1/1 subtests failed | 2026-04-25 | +| MarpaX::RFC::RFC3629 | 1/2 | 1/2 subtests failed | 2026-04-26 | +| MasonX::Plugin::Compress | 0/2 | 21/2 subtests failed | 2026-04-25 | +| MassSpec::ViewSpectrum | 0/1 | 2/1 subtests failed | 2026-04-26 | | Math::BigFloat | 0/4967 | 38173/4967 subtests failed | 2026-04-12 | | Math::BigInt | 0/4967 | 38173/4967 subtests failed | 2026-04-12 | | Math::BigInt::GMP | 0/177 | 8962/177 subtests failed | 2026-04-21 | | Math::Complex | 0/392 | 841/392 subtests failed | 2026-04-12 | | Math::Geometry::Planar::Offset | 8/11 | 3/11 subtests failed | 2026-04-22 | -| Math::Matrix | 3470/3506 | 36/3506 subtests failed | 2026-04-21 | +| Math::Matrix | 3470/3506 | 36/3506 subtests failed | 2026-04-26 | | Math::Prime::Util | 0/2 | 2/2 subtests failed | 2026-04-22 | | Math::Prime::Util::GMP | 0/1 | 1/1 subtests failed | 2026-04-22 | | Math::Random::ISAAC | 9/609 | 600/609 subtests failed | 2026-04-21 | @@ -2307,116 +3298,176 @@ | Math::Trig | 0/392 | 841/392 subtests failed | 2026-04-21 | | Math::Vec | 13/20 | 7/20 subtests failed | 2026-04-12 | | Maypole | 0/81 | 337/81 subtests failed | 2026-04-21 | +| MeSH::Parser::ASCII | 0/1 | 1/1 subtests failed | 2026-04-25 | | MediaWiki::DumpFile | 0/2 | 442/2 subtests failed | 2026-04-22 | +| Mercury | 11/13 | 2/13 subtests failed | 2026-04-26 | | MetaCPAN::API | 0/12 | 97/12 subtests failed | 2026-04-22 | | MetaCPAN::Client::Pod::PDF | 0/1 | 1/1 subtests failed | 2026-04-22 | | Metabase::Fact::Hash | 0/47 | 53/47 subtests failed | 2026-04-12 | +| Method::ParamValidator | 15/34 | 19/34 subtests failed | 2026-04-26 | | Method::Signatures::Simple | 0/2 | 26/2 subtests failed | 2026-04-21 | | Mixin::Linewise::Readers | 1/1 | | 2026-04-12 | | Mock::Config | 0/1 | 2/1 subtests failed | 2026-04-12 | | ModPerl::ParamBuilder | 1/2 | 1/2 subtests failed | 2026-04-21 | | Modern::Perl | 91/164 | 73/164 subtests failed | 2026-04-12 | -| Module::Build::XSUtil | 1/3 | 2/3 subtests failed | 2026-04-22 | +| Module::Build::XSUtil | 1/3 | 2/3 subtests failed | 2026-04-26 | | Module::CPANfile | 37/37 | | 2026-04-12 | | Module::Extract::Namespaces | 10/14 | 4/14 subtests failed | 2026-04-12 | +| Module::Extract::Use | 28/33 | 5/33 subtests failed | 2026-04-26 | +| Module::Extract::VERSION | 19/20 | 1/20 subtests failed | 2026-04-26 | | Module::Generic | 3/26 | 23/26 subtests failed | 2026-04-21 | | Module::Mask | 0/4 | 28/4 subtests failed | 2026-04-12 | +| Module::MultiConf | 0/17 | 20/17 subtests failed | 2026-04-26 | | Module::Patch | 4/8 | 4/8 subtests failed | 2026-04-22 | | Module::Path | 11/18 | 7/18 subtests failed | 2026-04-22 | +| Module::Refresh | 14/16 | 2/16 subtests failed | 2026-04-25 | | Module::ScanDeps | 146/159 | 13/159 subtests failed | 2026-04-21 | -| Module::Util | 46/47 | 1/47 subtests failed | 2026-04-22 | +| Module::Util | 46/47 | 1/47 subtests failed | 2026-04-26 | +| MogileFS | 1/12 | 11/12 subtests failed | 2026-04-26 | +| MogileFS::Admin | 0/2 | 2/2 subtests failed | 2026-04-26 | +| MogileFS::Client | 0/2 | 2/2 subtests failed | 2026-04-26 | +| MogileFS::Client::Async | 0/2 | 2/2 subtests failed | 2026-04-26 | +| MogileFS::Plugin::FileRefs | 0/1 | 1/1 subtests failed | 2026-04-26 | +| MogileFS::Server | 1/12 | 11/12 subtests failed | 2026-04-26 | +| Mojo::DOM58 | 143/144 | 1/144 subtests failed | 2026-04-26 | | Mojo::JSON::MaybeXS | 139/140 | 1/140 subtests failed | 2026-04-22 | | MojoX::Encode::Gzip | 11/16 | 5/16 subtests failed | 2026-04-21 | +| MojoX::HTTP::Async | 4/4 | | 2026-04-25 | | MojoX::I18N::Lexemes | 7/14 | 7/14 subtests failed | 2026-04-22 | | MojoX::Log::Log4perl | 54/61 | 7/61 subtests failed | 2026-04-21 | | MojoX::Log::Report | 0/11 | 144/11 subtests failed | 2026-04-21 | +| MojoX::Renderer::Xslate | 0/2 | 2/2 subtests failed | 2026-04-26 | | MojoX::Routes::AsGraph | 0/1 | 2/1 subtests failed | 2026-04-21 | -| MojoX::Session | 130/130 | | 2026-04-21 | +| MojoX::Session | 130/130 | | 2026-04-25 | +| MojoX::Validator | 2/2 | | 2026-04-26 | +| Mojolicious::Plugin::AssetPack | 62/64 | 2/64 subtests failed | 2026-04-25 | | Monkey::Patch::Action | 12/25 | 13/25 subtests failed | 2026-04-22 | | Monoceros | 3/4 | 1/4 subtests failed | 2026-04-22 | | MooX::HandlesVia | 779/787 | 8/787 subtests failed | 2026-04-12 | -| MooX::Locale::TextDomain::OO | 1/1 | | 2026-04-22 | +| MooX::Locale::TextDomain::OO | 0/1 | 1/1 subtests failed | 2026-04-26 | | MooX::ObjectBuilder | 50/58 | 8/58 subtests failed | 2026-04-22 | +| MooX::ProtectedAttributes | 8/9 | 1/9 subtests failed | 2026-04-26 | | MooX::Types::CLike | 8/10 | 2/10 subtests failed | 2026-04-22 | -| Moose::Autobox | 0/17 | 171/17 subtests failed | 2026-04-22 | +| MooX::ValidateSubs | 62/74 | 12/74 subtests failed | 2026-04-25 | +| Moose::Autobox | 0/17 | 171/17 subtests failed | 2026-04-26 | +| MooseX::AbstractFactory | 1/4 | 3/4 subtests failed | 2026-04-26 | +| MooseX::AbstractMethod | 1/3 | 2/3 subtests failed | 2026-04-25 | | MooseX::Aliases | 0/8 | 153/8 subtests failed | 2026-04-12 | | MooseX::App | 0/45 | 153/45 subtests failed | 2026-04-21 | -| MooseX::App::Cmd | 0/6 | 15/6 subtests failed | 2026-04-21 | +| MooseX::App::Role::Log4perl | 0/1 | 1/1 subtests failed | 2026-04-26 | | MooseX::ArrayRef | 0/1 | 10/1 subtests failed | 2026-04-12 | -| MooseX::Attribute::Chained | 1/7 | 6/7 subtests failed | 2026-04-22 | +| MooseX::Attribute::Chained | 1/7 | 6/7 subtests failed | 2026-04-25 | | MooseX::Attribute::Localize | 0/2 | 10/2 subtests failed | 2026-04-12 | | MooseX::Attribute::ValidateWithException | 0/4 | 4/4 subtests failed | 2026-04-21 | | MooseX::AttributeShortcuts | 20/32 | 12/32 subtests failed | 2026-04-21 | | MooseX::Blessed::Reconstruct | 1/3 | 2/3 subtests failed | 2026-04-21 | -| MooseX::Clone | 0/1 | 5/1 subtests failed | 2026-04-22 | -| MooseX::ConfigFromFile | 3/4 | 1/4 subtests failed | 2026-04-22 | -| MooseX::Daemonize | 0/6 | 55/6 subtests failed | 2026-04-22 | -| MooseX::Declare | 0/3 | 104/3 subtests failed | 2026-04-22 | -| MooseX::DeepAccessors | 2/5 | 3/5 subtests failed | 2026-04-21 | +| MooseX::Clone | 0/1 | 5/1 subtests failed | 2026-04-26 | +| MooseX::ConfigFromFile | 3/4 | 1/4 subtests failed | 2026-04-26 | +| MooseX::CurriedDelegation | 14/18 | 4/18 subtests failed | 2026-04-25 | +| MooseX::Daemonize | 0/6 | 55/6 subtests failed | 2026-04-26 | +| MooseX::Declare | 0/3 | 104/3 subtests failed | 2026-04-26 | +| MooseX::DeepAccessors | 2/5 | 3/5 subtests failed | 2026-04-26 | | MooseX::Emulate::Class::Accessor::Fast | 0/4 | 76/4 subtests failed | 2026-04-12 | | MooseX::FSM | 0/8 | 20/8 subtests failed | 2026-04-21 | -| MooseX::Getopt | 4/10 | 6/10 subtests failed | 2026-04-22 | -| MooseX::Getopt::Usage::Role::Man | 0/2 | 2/2 subtests failed | 2026-04-21 | +| MooseX::FileAttribute | 0/1 | 6/1 subtests failed | 2026-04-26 | +| MooseX::Getopt | 4/10 | 6/10 subtests failed | 2026-04-26 | +| MooseX::Getopt::Dashes | 4/10 | 6/10 subtests failed | 2026-04-25 | +| MooseX::Getopt::Usage | 0/2 | 2/2 subtests failed | 2026-04-26 | +| MooseX::Getopt::Usage::Role::Man | 0/2 | 2/2 subtests failed | 2026-04-26 | +| MooseX::Has::Sugar | 1/4 | 3/4 subtests failed | 2026-04-26 | | MooseX::InsideOut | 0/1 | 57/1 subtests failed | 2026-04-21 | +| MooseX::Iterator | 0/4 | 29/4 subtests failed | 2026-04-25 | +| MooseX::LogDispatch | 0/6 | 29/6 subtests failed | 2026-04-25 | | MooseX::MarkAsMethods | 1/3 | 2/3 subtests failed | 2026-04-21 | | MooseX::Meta::TypeConstraint::Mooish | 13/16 | 3/16 subtests failed | 2026-04-21 | -| MooseX::Method::Signatures | 0/1 | 1/1 subtests failed | 2026-04-22 | -| MooseX::Object::Pluggable | 0/8 | 53/8 subtests failed | 2026-04-22 | +| MooseX::Method::Signatures | 0/1 | 1/1 subtests failed | 2026-04-26 | +| MooseX::MungeHas | 6/6 | | 2026-04-26 | +| MooseX::NewDefaults | 1/3 | 2/3 subtests failed | 2026-04-25 | +| MooseX::Object::Pluggable | 0/8 | 53/8 subtests failed | 2026-04-26 | | MooseX::Params | 0/9 | 9/9 subtests failed | 2026-04-21 | | MooseX::Params::Validate | 1/5 | 4/5 subtests failed | 2026-04-12 | +| MooseX::RW::Reader | 0/5 | 5/5 subtests failed | 2026-04-26 | | MooseX::Role::Cmd | 0/6 | 19/6 subtests failed | 2026-04-22 | | MooseX::Role::Loggable | 18/28 | 10/28 subtests failed | 2026-04-21 | | MooseX::RoleFor | 0/1 | 17/1 subtests failed | 2026-04-22 | | MooseX::SemiAffordanceAccessor | 1/3 | 2/3 subtests failed | 2026-04-22 | -| MooseX::SimpleConfig | 0/15 | 21/15 subtests failed | 2026-04-22 | +| MooseX::SimpleConfig | 0/15 | 21/15 subtests failed | 2026-04-26 | | MooseX::SingletonMethod | 0/6 | 41/6 subtests failed | 2026-04-21 | | MooseX::SlurpyConstructor | 4/5 | 1/5 subtests failed | 2026-04-12 | | MooseX::Storage::DBIC | 0/1 | 1/1 subtests failed | 2026-04-21 | +| MooseX::Test::Role | 2/16 | 14/16 subtests failed | 2026-04-26 | +| MooseX::Timestamp | 0/6 | 6/6 subtests failed | 2026-04-26 | | MooseX::TraitFor::Meta::Class::BetterAnonClassNames | 13/17 | 4/17 subtests failed | 2026-04-22 | -| MooseX::Traits | 0/4 | 47/4 subtests failed | 2026-04-22 | +| MooseX::Traitor | 11/13 | 2/13 subtests failed | 2026-04-25 | +| MooseX::Traits | 0/4 | 47/4 subtests failed | 2026-04-25 | | MooseX::Traits::Pluggable | 0/1 | 92/1 subtests failed | 2026-04-21 | | MooseX::Traits::SetScalarByRef | 0/3 | 3/3 subtests failed | 2026-04-22 | -| MooseX::Types | 4/11 | 7/11 subtests failed | 2026-04-22 | +| MooseX::Types | 4/11 | 7/11 subtests failed | 2026-04-26 | +| MooseX::Types::Combine | 4/11 | 7/11 subtests failed | 2026-04-25 | +| MooseX::Types::Common | 5/6 | 1/6 subtests failed | 2026-04-26 | +| MooseX::Types::Common::Numeric | 5/6 | 1/6 subtests failed | 2026-04-25 | +| MooseX::Types::DateTime | 4/5 | 1/5 subtests failed | 2026-04-26 | | MooseX::Types::DateTime::W3C | 0/1 | 72/1 subtests failed | 2026-04-22 | -| MooseX::Types::IO | 0/4 | 45/4 subtests failed | 2026-04-22 | -| MooseX::Types::Moose | 4/11 | 7/11 subtests failed | 2026-04-22 | +| MooseX::Types::Digest | 0/1 | 80/1 subtests failed | 2026-04-25 | +| MooseX::Types::EmailAddress | 0/1 | 1/1 subtests failed | 2026-04-25 | +| MooseX::Types::IO | 0/4 | 45/4 subtests failed | 2026-04-25 | +| MooseX::Types::Moose | 4/11 | 7/11 subtests failed | 2026-04-26 | | MooseX::Types::Ro | 0/1 | 1/1 subtests failed | 2026-04-22 | | MooseX::Types::Set::Object | 3/4 | 1/4 subtests failed | 2026-04-21 | -| MooseX::Types::Structured | 0/8 | 290/8 subtests failed | 2026-04-22 | +| MooseX::Types::Structured | 0/8 | 290/8 subtests failed | 2026-04-26 | +| MooseX::Types::Tied::Hash::IxHash | 1/4 | 3/4 subtests failed | 2026-04-25 | | MooseX::Types::UUID | 0/1 | 1/1 subtests failed | 2026-04-22 | | MooseX::Util | 16/20 | 4/20 subtests failed | 2026-04-21 | | MooseX::YAML | 0/1 | 1/1 subtests failed | 2026-04-21 | | MouseX::ConfigFromFile | 0/1 | 1/1 subtests failed | 2026-04-22 | | MouseX::Foreign | 0/1 | 217/1 subtests failed | 2026-04-22 | | MouseX::Getopt | 0/11 | 278/11 subtests failed | 2026-04-22 | +| MouseX::Role::Loggable | 0/1 | 31/1 subtests failed | 2026-04-26 | | MouseX::SimpleConfig | 0/12 | 21/12 subtests failed | 2026-04-22 | | MouseX::SingletonMethod | 0/1 | 1/1 subtests failed | 2026-04-21 | | MouseX::Traits | 0/1 | 4/1 subtests failed | 2026-04-22 | | MouseX::Types | 0/2 | 81/2 subtests failed | 2026-04-21 | | MouseX::Types::Path::Class | 0/1 | 1/1 subtests failed | 2026-04-22 | +| MozRepl | 0/19 | 41/19 subtests failed | 2026-04-26 | +| MozRepl::Plugin::LinkExtor | 0/5 | 13/5 subtests failed | 2026-04-25 | | Mozilla::Mechanize | 0/13 | 253/13 subtests failed | 2026-04-21 | | Mozilla::Mechanize::GUITester | 0/11 | 200/11 subtests failed | 2026-04-21 | | Mxpress::PDF | 0/1 | 1/1 subtests failed | 2026-04-22 | +| MyCPAN::App::BackPAN::Indexer | 21/23 | 2/23 subtests failed | 2026-04-26 | +| MyData | 452/452 | | 2026-04-26 | +| MyLibrary | 0/93 | 248/93 subtests failed | 2026-04-25 | +| MySQL::Easy | 0/1 | 1/1 subtests failed | 2026-04-25 | | MySQL::Explain::Parser | 0/1 | 1/1 subtests failed | 2026-04-21 | +| MySQL::Privilege::Reader | 1/7 | 6/7 subtests failed | 2026-04-25 | | Myco | 0/1 | 1/1 subtests failed | 2026-04-21 | | NCBIx::eUtils::GeneAliases | 1/2 | 1/2 subtests failed | 2026-04-21 | | NEXT | 0/13 | 47/13 subtests failed | 2026-04-12 | | NSNMP | 0/66 | 1074/66 subtests failed | 2026-04-22 | +| Nanoid | 5/6 | 1/6 subtests failed | 2026-04-25 | +| Neo4j::Cypher::Abstract | 87/88 | 1/88 subtests failed | 2026-04-25 | | Neo4j::Driver | 9/13 | 4/13 subtests failed | 2026-04-21 | | Net::AMQP | 1/29 | 28/29 subtests failed | 2026-04-21 | +| Net::Async::MCP | 0/4 | 4/4 subtests failed | 2026-04-26 | | Net::Curl | 0/2 | 26/2 subtests failed | 2026-04-21 | | Net::HTTP::Client | 0/1 | 14/1 subtests failed | 2026-04-22 | +| Net::HTTPS::Any | 0/4 | 9/4 subtests failed | 2026-04-25 | | Net::LDAP::AutoServer | 4/5 | 1/5 subtests failed | 2026-04-22 | | Net::LDAP::LDAPhash | 4/5 | 1/5 subtests failed | 2026-04-22 | | Net::NIS | 0/1 | 62/1 subtests failed | 2026-04-12 | | Net::Netmask | 710/720 | 10/720 subtests failed | 2026-04-21 | | Net::OSCAR | 0/75 | 158/75 subtests failed | 2026-04-22 | +| Net::SFTP::Foreign | 0/24 | 1162/24 subtests failed | 2026-04-26 | +| Net::SNMP | 31/43 | 12/43 subtests failed | 2026-04-25 | +| Net::SSH2 | 0/1 | 1/1 subtests failed | 2026-04-26 | | Net::SSH::Perl | 0/21 | 31/21 subtests failed | 2026-04-12 | | Net::Server::PreFork | 0/37 | 158/37 subtests failed | 2026-04-12 | | Net::Stomp | 3/3 | | 2026-04-21 | | Net::Twitter | 0/41 | 1267/41 subtests failed | 2026-04-21 | | NetAddr::IP | 0/116 | 425/116 subtests failed | 2026-04-22 | | NetPacket::Ethernet | 355/360 | 5/360 subtests failed | 2026-04-22 | +| NetSDS::Util | 18/20 | 2/20 subtests failed | 2026-04-25 | +| NetStumbler::Speech | 0/1 | 1/1 subtests failed | 2026-04-25 | +| Nodejs::Util | 1/2 | 1/2 subtests failed | 2026-04-25 | | Number::Format | 10/10 | | 2026-04-22 | | Number::RecordLocator | 17/18 | 1/18 subtests failed | 2026-04-21 | | Number::WithError | 891/893 | 2/893 subtests failed | 2026-04-22 | @@ -2424,22 +3475,34 @@ | OAuth::Lite2 | 372/471 | 99/471 subtests failed | 2026-04-21 | | OIDC::Lite | 37/46 | 9/46 subtests failed | 2026-04-21 | | OPC | 3/4 | 1/4 subtests failed | 2026-04-12 | +| ORDB::CPAN::Mageia | 2/3 | 1/3 subtests failed | 2026-04-25 | | ORLite | 0/3 | 493/3 subtests failed | 2026-04-22 | | ORM | 0/18 | 20/18 subtests failed | 2026-04-21 | | OSCARSession | 0/1 | 1/1 subtests failed | 2026-04-22 | +| OSDial | 0/1 | 1/1 subtests failed | 2026-04-25 | +| Object::Array | 90/92 | 2/92 subtests failed | 2026-04-25 | | Object::Event | 0/1 | 99/1 subtests failed | 2026-04-21 | +| Object::Import | 155/248 | 93/248 subtests failed | 2026-04-26 | +| Object::Tiny::RW::XS | 0/4 | 27/4 subtests failed | 2026-04-25 | +| Object::Tiny::XS | 0/5 | 25/5 subtests failed | 2026-04-25 | +| Opcodes | 2/2 | | 2026-04-25 | | OpenBSD::KvmFiles | 0/1 | 1/1 subtests failed | 2026-04-22 | | OpenGL::Earth | 10/14 | 4/14 subtests failed | 2026-04-21 | -| OpenGL::Modern | 0/1 | 2/1 subtests failed | 2026-04-21 | +| OpenGL::Modern | 0/1 | 2/1 subtests failed | 2026-04-26 | | OpenGL::XScreenSaver | 0/1 | 11/1 subtests failed | 2026-04-12 | | OpenID::Login | 0/1 | 18/1 subtests failed | 2026-04-21 | | OpenMP::Simple | 0/1 | 9/1 subtests failed | 2026-04-22 | | OpenMuseum | 0/1 | 1/1 subtests failed | 2026-04-22 | +| OpenOffice::OODoc | 0/4 | 29/4 subtests failed | 2026-04-26 | +| OpenSearch | 0/63 | 63/63 subtests failed | 2026-04-26 | | OpenTracing::Implementation | 3/4 | 1/4 subtests failed | 2026-04-21 | | OpenTracing::Interface::Tracer | 15/21 | 6/21 subtests failed | 2026-04-21 | | OptArgs2 | 81/91 | 10/91 subtests failed | 2026-04-22 | | OpusVL::FB11X::Model::PreferencesDB | 24/25 | 1/25 subtests failed | 2026-04-21 | | OpusVL::SimpleCrypto | 1/1 | | 2026-04-12 | +| Oraperl | 1/2 | 1/2 subtests failed | 2026-04-25 | +| OrePAN2 | 14/20 | 6/20 subtests failed | 2026-04-26 | +| OrePAN2::Server | 0/1 | 1/1 subtests failed | 2026-04-26 | | OvhApi | 0/1 | 1/1 subtests failed | 2026-04-12 | | PAR::Dist | 0/13 | 23/13 subtests failed | 2026-04-22 | | PAR::Repository::Client | 0/23 | 142/23 subtests failed | 2026-04-22 | @@ -2450,13 +3513,23 @@ | PDL::Primitive | 1/45 | 44/45 subtests failed | 2026-04-21 | | PGObject::Util::AsyncPool | 0/1 | 1/1 subtests failed | 2026-04-22 | | PGP::Finger | 0/10 | 10/10 subtests failed | 2026-04-21 | +| PGXN::Meta::Validator | 0/1 | 28/1 subtests failed | 2026-04-25 | | PHP::Functions::Mail | 0/1 | 1/1 subtests failed | 2026-04-21 | +| PHP::Functions::Password | 0/1 | 11/1 subtests failed | 2026-04-25 | +| PHP::ParseStr | 0/1 | 1/1 subtests failed | 2026-04-25 | +| PMLTQ | 99/104 | 5/104 subtests failed | 2026-04-26 | +| PMLTQ::Command::printtrees | 0/1 | 1/1 subtests failed | 2026-04-26 | +| PMLTQ::Commands | 1/17 | 16/17 subtests failed | 2026-04-26 | | POE::Component::AI::MegaHAL | 0/4 | 7/4 subtests failed | 2026-04-21 | +| POE::Component::Algorithm::Evolutionary | 0/1 | 9/1 subtests failed | 2026-04-25 | | POE::Component::Archive::Any | 0/7 | 16/7 subtests failed | 2026-04-22 | | POE::Component::AssaultCube::ServerQuery | 0/52 | 648/52 subtests failed | 2026-04-22 | | POE::Component::Client::HTTP | 8/9 | 1/9 subtests failed | 2026-04-22 | +| POE::Component::Client::Keepalive | 3/4 | 1/4 subtests failed | 2026-04-25 | +| POE::Component::Client::Pastebot | 0/5 | 16/5 subtests failed | 2026-04-25 | | POE::Component::DirWatch | 0/10 | 28/10 subtests failed | 2026-04-22 | -| POE::Component::DirWatch::WithCaller | 0/1 | 1/1 subtests failed | 2026-04-22 | +| POE::Component::DirWatch::WithCaller | 0/1 | 1/1 subtests failed | 2026-04-26 | +| POE::Component::Enc::Flac | 0/1 | 68/1 subtests failed | 2026-04-25 | | POE::Component::IRC::Plugin::ImageMirror | 0/1 | 4/1 subtests failed | 2026-04-21 | | POE::Component::IRC::Plugin::MegaHAL | 0/2 | 4/2 subtests failed | 2026-04-21 | | POE::Component::IRC::Plugin::WWW::CPANRatings::RSS | 3/5 | 2/5 subtests failed | 2026-04-21 | @@ -2467,49 +3540,80 @@ | POE::Component::Resolver | 2/7 | 5/7 subtests failed | 2026-04-21 | | POE::Component::SSLify | 1/4 | 3/4 subtests failed | 2026-04-22 | | POE::Component::SSLify::NonBlock | 2/3 | 1/3 subtests failed | 2026-04-22 | +| POE::Component::Sequence | 0/2 | 4/2 subtests failed | 2026-04-25 | +| POE::Component::Server::HTTP | 0/1 | 25/1 subtests failed | 2026-04-25 | | POE::Component::Server::SOAP | 1/3 | 2/3 subtests failed | 2026-04-22 | | POE::Component::Server::SimpleHTTP | 0/4 | 13/4 subtests failed | 2026-04-21 | | POE::Component::Server::SimpleXMLRPC | 3/4 | 1/4 subtests failed | 2026-04-21 | +| POE::Component::SmokeBox::Uploads::Rsync | 1/2 | 1/2 subtests failed | 2026-04-26 | +| POE::Component::UserBase | 5/7 | 2/7 subtests failed | 2026-04-25 | | POE::Component::WWW::CPANRatings::RSS | 4/5 | 1/5 subtests failed | 2026-04-21 | +| POE::Component::WWW::Pastebin::Bot::Pastebot::Create | 2/5 | 3/5 subtests failed | 2026-04-25 | +| POE::Filter::SimpleXML | 0/1 | 5/1 subtests failed | 2026-04-26 | | POE::Filter::XML | 1/4 | 3/4 subtests failed | 2026-04-21 | | POE::Loop::Glib | 1/2 | 1/2 subtests failed | 2026-04-22 | +| POE::Loop::Kqueue | 0/1 | 1/1 subtests failed | 2026-04-25 | | POE::Quickie | 0/1 | 1/1 subtests failed | 2026-04-21 | | POE::Session::PlainCall | 107/107 | | 2026-04-21 | +| POE::Sugar::Args | 1/2 | 1/2 subtests failed | 2026-04-26 | | POE::Wheel::UDP | 0/3 | 102/3 subtests failed | 2026-04-22 | -| POSIX::strptime | 0/2 | 7/2 subtests failed | 2026-04-21 | -| PPIx::QuoteLike | 220/221 | 1/221 subtests failed | 2026-04-22 | -| PPIx::Regexp | 2872/2878 | 6/2878 subtests failed | 2026-04-22 | +| POE::XUL::Application | 70/113 | 43/113 subtests failed | 2026-04-25 | +| POSIX::strptime | 0/2 | 7/2 subtests failed | 2026-04-25 | +| PPI::HTML | 15/16 | 1/16 subtests failed | 2026-04-25 | +| PPI::Transform::PackageName | 0/147 | 168/147 subtests failed | 2026-04-26 | +| PPIx::QuoteLike | 220/221 | 1/221 subtests failed | 2026-04-26 | +| PPIx::Regexp | 2872/2878 | 6/2878 subtests failed | 2026-04-26 | | PPM::Make | 9/18 | 9/18 subtests failed | 2026-04-21 | | PPR | 2/3 | 1/3 subtests failed | 2026-04-21 | +| PRANG | 30/58 | 28/58 subtests failed | 2026-04-26 | | Package::DeprecationManager | 27/30 | 3/30 subtests failed | 2026-04-21 | | Package::New | 19/36 | 17/36 subtests failed | 2026-04-21 | | Package::Util::Lite | 2/8 | 6/8 subtests failed | 2026-04-22 | | Parallel::ForkManager | 0/7 | 22/7 subtests failed | 2026-04-21 | | Parallel::Prefork | 0/5 | 21/5 subtests failed | 2026-04-21 | -| Params::Classify | 4711/4747 | 36/4747 subtests failed | 2026-04-22 | +| Params::Classify | 4711/4747 | 36/4747 subtests failed | 2026-04-25 | +| Params::Validate::Strict | 0/1 | 2/1 subtests failed | 2026-04-26 | | Parse::CPAN::Packages | 0/3 | 3/3 subtests failed | 2026-04-12 | | Parse::CPAN::Packages::Fast | 14/16 | 2/16 subtests failed | 2026-04-21 | +| Parse::CSV | 100/101 | 1/101 subtests failed | 2026-04-26 | | Parse::Debian::PackageDesc | 43/46 | 3/46 subtests failed | 2026-04-21 | | Parse::Method::Signatures | 0/1 | 1/1 subtests failed | 2026-04-21 | +| Pask | 0/1 | 1/1 subtests failed | 2026-04-25 | +| Passwd::Keyring::PWSafe3 | 0/1 | 1/1 subtests failed | 2026-04-26 | | Path::Iterator::Rule | 89/89 | | 2026-04-21 | | Path::Router | 211/212 | 1/212 subtests failed | 2026-04-22 | | Path::ScanINC | 33/34 | 1/34 subtests failed | 2026-04-22 | +| Pepper | 0/6 | 8/6 subtests failed | 2026-04-25 | +| Perl6::Attributes | 1/8 | 7/8 subtests failed | 2026-04-26 | | Perl6::Export::Attrs | 0/2 | 2/2 subtests failed | 2026-04-21 | +| Perl::MinimumVersion | 0/1 | 100/1 subtests failed | 2026-04-26 | +| Perl::MinimumVersion::Fast | 0/1 | 1/1 subtests failed | 2026-04-26 | | Perl::PrereqScanner | 143/269 | 126/269 subtests failed | 2026-04-22 | +| Perl::Unsafe::Signals | 0/2 | 6/2 subtests failed | 2026-04-25 | | PerlFM | 4/5 | 1/5 subtests failed | 2026-04-22 | | PerlIO::eol | 0/2 | 24/2 subtests failed | 2026-04-12 | +| PerlIO::fse | 0/1 | 1/1 subtests failed | 2026-04-26 | | PerlIO::normalize | 4/13 | 9/13 subtests failed | 2026-04-22 | | PerlIO::utf8_strict | 2389/5816 | 3427/5816 subtests failed | 2026-04-12 | | PerlIO::via::EscStatus | 0/4 | 48/4 subtests failed | 2026-04-22 | | PerlIO::via::dynamic | 0/3 | 5/3 subtests failed | 2026-04-22 | -| PerlIO::via::gzip | 9/10 | 1/10 subtests failed | 2026-04-22 | +| PerlIO::via::gzip | 9/10 | 1/10 subtests failed | 2026-04-26 | +| PerlPoint::Constants | 6677/6691 | 14/6691 subtests failed | 2026-04-26 | +| PerlX::Assert | 1/2 | 1/2 subtests failed | 2026-04-25 | +| Perlbal | 11/12 | 1/12 subtests failed | 2026-04-26 | | Pg::hstore | 0/1 | 67/1 subtests failed | 2026-04-21 | +| PidFile | 0/1 | 1/1 subtests failed | 2026-04-26 | +| Pinwheel | 707/1680 | 973/1680 subtests failed | 2026-04-25 | | Pipeline | 26/55 | 29/55 subtests failed | 2026-04-21 | +| Pithub | 21/109 | 88/109 subtests failed | 2026-04-25 | | Pithub::PullRequests | 21/109 | 88/109 subtests failed | 2026-04-22 | +| PkgForge::App::Buildd | 0/19 | 35/19 subtests failed | 2026-04-25 | | Plack::App::Path::Router | 0/3 | 3/3 subtests failed | 2026-04-22 | +| Plack::Middleware::DBIx::DisconnectAll | 8/9 | 1/9 subtests failed | 2026-04-25 | | Plack::Middleware::Deflater | 9/9 | | 2026-04-22 | | Plack::Middleware::Session | 423/423 | | 2026-04-22 | -| Plack::Session | 423/423 | | 2026-04-22 | +| PlugAuth | 0/15 | 26/15 subtests failed | 2026-04-26 | +| PlugAuth::Lite | 2/10 | 8/10 subtests failed | 2026-04-26 | | Pod::Coverage::TrustPod | 1/5 | 4/5 subtests failed | 2026-04-12 | | Pod::Eventual::Simple | 0/1 | 4/1 subtests failed | 2026-04-12 | | Pod::Find | 24/25 | 1/25 subtests failed | 2026-04-12 | @@ -2518,20 +3622,28 @@ | Pod::Spell | 45/45 | | 2026-04-12 | | Pod::WikiDoc | 0/5 | 35/5 subtests failed | 2026-04-22 | | Pod::WikiText | 11/15 | 4/15 subtests failed | 2026-04-22 | +| Podlite | 0/1 | 1/1 subtests failed | 2026-04-25 | | PostScript::Calendar | 11/35 | 24/35 subtests failed | 2026-04-21 | | Postgredis | 0/1 | 1/1 subtests failed | 2026-04-22 | +| PowerDNS::Control::Server | 4/5 | 1/5 subtests failed | 2026-04-25 | | Proc::CPUUsage | 0/1 | 1/1 subtests failed | 2026-04-22 | +| Proc::ChildError | 6/7 | 1/7 subtests failed | 2026-04-25 | | Proc::Daemon | 0/1 | 38/1 subtests failed | 2026-04-21 | | Proc::Guard | 0/1 | 1/1 subtests failed | 2026-04-12 | | Project2::Gantt | 16/18 | 2/18 subtests failed | 2026-04-22 | | Promise::Me | 1/2 | 1/2 subtests failed | 2026-04-22 | +| Prosody | 0/1 | 1/1 subtests failed | 2026-04-25 | | Protocol::WebSocket | 660/671 | 11/671 subtests failed | 2026-04-22 | +| Q::S::L | 1/9 | 8/9 subtests failed | 2026-04-25 | +| QDBM_File | 0/7 | 398/7 subtests failed | 2026-04-25 | | QRCode::Encoder | 4/5 | 1/5 subtests failed | 2026-04-21 | +| R::Writer | 0/6 | 28/6 subtests failed | 2026-04-25 | | RDF::AllegroGraph | 31/31 | | 2026-04-22 | | RDF::AllegroGraph::Easy | 31/31 | | 2026-04-22 | | RDF::Helper::Properties | 0/1 | 1/1 subtests failed | 2026-04-22 | -| RDF::LinkedData | 0/11 | 46/11 subtests failed | 2026-04-22 | +| RDF::LinkedData | 0/11 | 46/11 subtests failed | 2026-04-26 | | RDF::NS | 97/98 | 1/98 subtests failed | 2026-04-22 | +| RDF::Notation3 | 23/24 | 1/24 subtests failed | 2026-04-26 | | RDF::Query | 0/1 | 186/1 subtests failed | 2026-04-21 | | RDF::RDB2RDF | 0/2 | 16/2 subtests failed | 2026-04-22 | | RDF::RDFa::Generator | 0/3 | 3/3 subtests failed | 2026-04-22 | @@ -2543,40 +3655,66 @@ | RDF::vCard | 0/4 | 6/4 subtests failed | 2026-04-21 | | REST::Client | 2/2 | | 2026-04-12 | | RHC | 19/20 | 1/20 subtests failed | 2026-04-21 | -| RPC::Any | 0/13 | 10679/13 subtests failed | 2026-04-22 | +| RPC::Any | 0/13 | 10679/13 subtests failed | 2026-04-26 | | RPC::Any::Interface::PSGI | 0/1 | 1/1 subtests failed | 2026-04-22 | -| RPC::XML | 275/458 | 183/458 subtests failed | 2026-04-21 | +| RPC::Serialized | 173/328 | 155/328 subtests failed | 2026-04-26 | +| RPC::XML | 275/458 | 183/458 subtests failed | 2026-04-25 | | RPC::XML::Parser::LibXML | 0/2 | 31/2 subtests failed | 2026-04-21 | | RPM2::LocalInstalled | 0/1 | 1/1 subtests failed | 2026-04-21 | +| RPi::ADC::MCP3008 | 0/1 | 1/1 subtests failed | 2026-04-25 | +| RRDTool::Creator | 10/11 | 1/11 subtests failed | 2026-04-25 | +| RT::Atom | 1/2 | 1/2 subtests failed | 2026-04-25 | | RT::Extension::FollowUp | 2/4 | 2/4 subtests failed | 2026-04-21 | +| Razor2::Client::Agent | 93/113 | 20/113 subtests failed | 2026-04-25 | | Readonly::Enum | 0/2 | 2/2 subtests failed | 2026-04-22 | | Readonly::Values::Months | 0/1 | 3/1 subtests failed | 2026-04-22 | -| Reddit | 0/1 | 1/1 subtests failed | 2026-04-22 | -| Redis | 0/4 | 4/4 subtests failed | 2026-04-22 | +| ReadonlyX | 114/135 | 21/135 subtests failed | 2026-04-26 | +| Reddit | 0/1 | 1/1 subtests failed | 2026-04-25 | | RedisDB | 0/3 | 3/3 subtests failed | 2026-04-21 | | RedisDB::Parser | 11/12 | 1/12 subtests failed | 2026-04-21 | | Refine | 17/21 | 4/21 subtests failed | 2026-04-22 | | Regexp::Common | 3/3 | | 2026-04-12 | -| Regexp::Grammars | 0/1 | 15/1 subtests failed | 2026-04-21 | | Regexp::Stringify | 4/10 | 6/10 subtests failed | 2026-04-22 | +| Reindeer | 27/46 | 19/46 subtests failed | 2026-04-25 | +| Resque | 0/2 | 2/2 subtests failed | 2026-04-26 | | Return::MultiLevel | 0/1 | 8/1 subtests failed | 2026-04-21 | +| Return::Set | 0/1 | 1/1 subtests failed | 2026-04-26 | | Return::Type | 15/16 | 1/16 subtests failed | 2026-04-22 | | Role::Basic | 240/275 | 35/275 subtests failed | 2026-04-22 | -| Role::REST::Client | 0/11 | 26/11 subtests failed | 2026-04-22 | -| Router::Boom | 11/26 | 15/26 subtests failed | 2026-04-22 | -| Router::Simple | 0/1 | 1/1 subtests failed | 2026-04-12 | +| Role::REST::Client | 0/11 | 26/11 subtests failed | 2026-04-25 | +| Rose::DB | 0/28 | 779/28 subtests failed | 2026-04-26 | +| Rose::DB::Object | 0/83 | 13475/83 subtests failed | 2026-04-26 | +| Rose::DBx::Object::MoreHelpers | 0/1 | 8/1 subtests failed | 2026-04-26 | +| Rose::DBx::TestDB | 0/6 | 9/6 subtests failed | 2026-04-26 | +| Router::Boom | 11/26 | 15/26 subtests failed | 2026-04-26 | +| Run | 4/39 | 35/39 subtests failed | 2026-04-26 | +| RxPerl | 10/79 | 69/79 subtests failed | 2026-04-26 | +| SIRTX::VM | 0/6 | 6/6 subtests failed | 2026-04-26 | +| SMS::Send::Adapter::Node::Red | 4/5 | 1/5 subtests failed | 2026-04-25 | | SMS::Send::CZ::Neogate | 0/1 | 4/1 subtests failed | 2026-04-21 | +| SMS::Send::Driver::WebService | 0/21 | 115/21 subtests failed | 2026-04-25 | +| SNMP::Agent | 0/1 | 1/1 subtests failed | 2026-04-25 | +| SOAP::Lite | 0/190 | 346/190 subtests failed | 2026-04-26 | +| SPOPS | 382/421 | 39/421 subtests failed | 2026-04-25 | +| SPOPSx::Tool::YAML | 0/9 | 21/9 subtests failed | 2026-04-25 | | SQL::Abstract::More | 162/165 | 3/165 subtests failed | 2026-04-22 | | SQL::Beautify | 41/46 | 5/46 subtests failed | 2026-04-21 | -| SQL::Maker | 82/83 | 1/83 subtests failed | 2026-04-22 | +| SQL::Preproc | 0/14 | 74/14 subtests failed | 2026-04-26 | | SQL::SplitStatement | 2/4 | 2/4 subtests failed | 2026-04-21 | -| SUPER | 48/51 | 3/51 subtests failed | 2026-04-21 | +| SQLite::Archive | 0/2 | 5/2 subtests failed | 2026-04-26 | +| SRS::EPP::Command | 48/108 | 60/108 subtests failed | 2026-04-26 | +| SRU | 0/16 | 25/16 subtests failed | 2026-04-26 | +| SUPER | 48/51 | 3/51 subtests failed | 2026-04-26 | | SVG::Estimate | 2/9 | 7/9 subtests failed | 2026-04-21 | -| SWISH::3 | 0/19 | 912/19 subtests failed | 2026-04-22 | +| SVG::GD | 0/1 | 62/1 subtests failed | 2026-04-26 | +| SVG::SVG2zinc | 8/8 | | 2026-04-25 | +| SVN::Look | 0/1 | 1/1 subtests failed | 2026-04-26 | +| SVN::Notify | 0/31 | 910/31 subtests failed | 2026-04-26 | +| SWISH::3 | 0/19 | 912/19 subtests failed | 2026-04-25 | | SWISH::Filter | 0/6 | 19/6 subtests failed | 2026-04-22 | | SWISH::Prog | 0/26 | 179/26 subtests failed | 2026-04-22 | | SWISH::Prog::KSx | 0/11 | 99/11 subtests failed | 2026-04-22 | -| Scalar::String | 1027/1059 | 32/1059 subtests failed | 2026-04-21 | +| Scalar::String | 1027/1059 | 32/1059 subtests failed | 2026-04-25 | | Scalar::Util | 0/594 | 1478/594 subtests failed | 2026-04-22 | | Scalar::Util::Numeric | 0/10 | 66/10 subtests failed | 2026-04-21 | | Scope::Context | 0/1 | 100/1 subtests failed | 2026-04-21 | @@ -2584,14 +3722,19 @@ | Search::GIN::Driver | 1/9 | 8/9 subtests failed | 2026-04-21 | | Search::Query::Dialect::KSx | 0/1 | 76/1 subtests failed | 2026-04-22 | | Search::QueryParser::SQL | 0/37 | 80/37 subtests failed | 2026-04-21 | +| Selenium::Remote::Commands | 198/200 | 2/200 subtests failed | 2026-04-26 | | SelfLoader | 20/22 | 2/22 subtests failed | 2026-04-21 | -| Server::Starter | 0/4 | 113/4 subtests failed | 2026-04-21 | +| SemVer | 0/1 | 1163/1 subtests failed | 2026-04-25 | +| SemanticWeb::OAI::ORE | 0/41 | 113/41 subtests failed | 2026-04-26 | +| Server::Starter | 0/4 | 113/4 subtests failed | 2026-04-25 | | Shell::Perl | 12/25 | 13/25 subtests failed | 2026-04-12 | | Signal::Mask | 0/2 | 18/2 subtests failed | 2026-04-21 | | SignalWire::Agents | 713/716 | 3/716 subtests failed | 2026-04-22 | | Simple::SAX::Serializer | 33/34 | 1/34 subtests failed | 2026-04-12 | | Slurp | 4/6 | 2/6 subtests failed | 2026-04-21 | -| Smart::Args | 0/1 | 1/1 subtests failed | 2026-04-12 | +| Smart::Args | 0/1 | 1/1 subtests failed | 2026-04-25 | +| SmartMatch::Sugar | 40/76 | 36/76 subtests failed | 2026-04-25 | +| Socket::Class | 0/7 | 23/7 subtests failed | 2026-04-26 | | SocketIO::Emitter | 0/1 | 1/1 subtests failed | 2026-04-22 | | SolarBeam | 17/21 | 4/21 subtests failed | 2026-04-22 | | Sort::ByExample | 0/1 | 13/1 subtests failed | 2026-04-22 | @@ -2600,12 +3743,16 @@ | SortKey::Num::similarity | 0/1 | 1/1 subtests failed | 2026-04-22 | | Spiffy | 148/168 | 20/168 subtests failed | 2026-04-12 | | Spreadsheet::WriteExcel | 1068/1178 | 110/1178 subtests failed | 2026-04-22 | +| Spreadsheet::XLSX | 17/23 | 6/23 subtests failed | 2026-04-25 | | Starman | 1/1 | | 2026-04-22 | | Starwoman | 1/1 | | 2026-04-22 | +| Statistics::Basic | 220/221 | 1/221 subtests failed | 2026-04-25 | | Storable::Improved | 254/1150 | 896/1150 subtests failed | 2026-04-21 | | String::CamelCase | 27/31 | 4/31 subtests failed | 2026-04-12 | | String::Wildcard::Bash | 6/8 | 2/8 subtests failed | 2026-04-22 | | Struct::Match | 5/5 | | 2026-04-12 | +| Stump | 1/2 | 1/2 subtests failed | 2026-04-25 | +| Su | 201/220 | 19/220 subtests failed | 2026-04-26 | | Sub::Attribute | 0/2 | 50/2 subtests failed | 2026-04-21 | | Sub::Exporter::ForMethods | 6/10 | 4/10 subtests failed | 2026-04-12 | | Sub::Identify | 86/139 | 53/139 subtests failed | 2026-04-12 | @@ -2613,180 +3760,326 @@ | Sub::Mutate | 0/9 | 95/9 subtests failed | 2026-04-21 | | Sub::Prototype | 0/1 | 4/1 subtests failed | 2026-04-21 | | Sub::WrapPackages | 0/4 | 112/4 subtests failed | 2026-04-21 | +| Symbol::Util | 290/307 | 17/307 subtests failed | 2026-04-26 | | Syntax::Feature::Junction | 0/9 | 380/9 subtests failed | 2026-04-12 | | Syntax::Feature::Qs | 1/2 | 1/2 subtests failed | 2026-04-21 | | Syringe | 0/1 | 1/1 subtests failed | 2026-04-22 | | Sys::Hostname::Long | 0/1 | 1/1 subtests failed | 2026-04-12 | | Sys::Syslog | 0/112 | 289/112 subtests failed | 2026-04-21 | +| SysTray | 0/1 | 1/1 subtests failed | 2026-04-26 | +| TAP::Base | 0/1 | 194/1 subtests failed | 2026-04-26 | +| TAP::DOM | 0/7 | 20/7 subtests failed | 2026-04-25 | | TAP::Formatter::EARL | 0/4 | 4/4 subtests failed | 2026-04-22 | +| TAP::Harness::Archive | 0/29 | 61/29 subtests failed | 2026-04-25 | +| TAP::Harness::Archive::MultipleHarnesses | 16/23 | 7/23 subtests failed | 2026-04-25 | +| TAP::Parser::Iterator::PherkinStream | 355/357 | 2/357 subtests failed | 2026-04-26 | +| TOML | 0/1 | 2/1 subtests failed | 2026-04-25 | +| TOML::Parser | 0/3 | 57/3 subtests failed | 2026-04-25 | | TPath | 0/65 | 362/65 subtests failed | 2026-04-21 | | TSQL::SplitStatement | 2/3 | 1/3 subtests failed | 2026-04-22 | | Taint::Util | 0/1 | 95/1 subtests failed | 2026-04-22 | +| Tangerine | 0/100 | 233/100 subtests failed | 2026-04-25 | | Task::Weaken | 21/22 | 1/22 subtests failed | 2026-04-12 | -| Template::Extract | 9/21 | 12/21 subtests failed | 2026-04-21 | +| Template::Extract | 9/21 | 12/21 subtests failed | 2026-04-26 | | Template::Flute | 0/1 | 1/1 subtests failed | 2026-04-21 | | Template::Magic | 0/5 | 51/5 subtests failed | 2026-04-12 | +| Template::Plugin::Comma | 0/6 | 22/6 subtests failed | 2026-04-25 | +| Template::Toolkit::Simple | 0/1 | 1/1 subtests failed | 2026-04-25 | +| Term::ProgressBar | 0/16 | 119/16 subtests failed | 2026-04-26 | | Term::ReadLine | 12/15 | 3/15 subtests failed | 2026-04-12 | | Term::Size | 12/18 | 6/18 subtests failed | 2026-04-12 | | Term::Size::Perl | 16/18 | 2/18 subtests failed | 2026-04-22 | | Term::Table | 41/42 | 1/42 subtests failed | 2026-04-22 | -| Test::Base::Less | 25/30 | 5/30 subtests failed | 2026-04-21 | +| Test::Base::Less | 25/30 | 5/30 subtests failed | 2026-04-26 | +| Test::Block | 22/26 | 4/26 subtests failed | 2026-04-26 | +| Test::CGI::Multipart | 3/4 | 1/4 subtests failed | 2026-04-25 | | Test::Class | 159/173 | 14/173 subtests failed | 2026-04-12 | | Test::CleanNamespaces | 119/134 | 15/134 subtests failed | 2026-04-12 | -| Test::Compile | 66/79 | 13/79 subtests failed | 2026-04-22 | +| Test::Command | 104/118 | 14/118 subtests failed | 2026-04-26 | +| Test::Compile | 66/79 | 13/79 subtests failed | 2026-04-26 | | Test::Compile::Internal | 66/79 | 13/79 subtests failed | 2026-04-22 | | Test::Consul | 0/1 | 1/1 subtests failed | 2026-04-22 | | Test::DBIC::ExpectedQueries | 3/3 | | 2026-04-22 | | Test::DBIx::Class | 0/23 | 35/23 subtests failed | 2026-04-12 | | Test::Database | 88/105 | 17/105 subtests failed | 2026-04-22 | +| Test::DatabaseRow | 319/320 | 1/320 subtests failed | 2026-04-26 | | Test::Differences | 45/49 | 4/49 subtests failed | 2026-04-12 | | Test::Directory | 27/50 | 23/50 subtests failed | 2026-04-22 | | Test::Exit | 0/1 | 10/1 subtests failed | 2026-04-21 | | Test::FailWarnings | 6/8 | 2/8 subtests failed | 2026-04-12 | -| Test::Flatten | 13/17 | 4/17 subtests failed | 2026-04-21 | +| Test::Flatten | 13/17 | 4/17 subtests failed | 2026-04-26 | | Test::Fork | 0/3 | 15/3 subtests failed | 2026-04-22 | +| Test::Group | 218/263 | 45/263 subtests failed | 2026-04-26 | +| Test::HTML::Content | 31/241 | 210/241 subtests failed | 2026-04-26 | +| Test::HTTP::LocalServer | 0/1 | 24/1 subtests failed | 2026-04-26 | | Test::HTTP::Response | 22/23 | 1/23 subtests failed | 2026-04-22 | | Test::HTTP::Server | 0/3 | 15/3 subtests failed | 2026-04-21 | +| Test::Image::GD | 0/6 | 9/6 subtests failed | 2026-04-25 | | Test::Interface | 0/1 | 1/1 subtests failed | 2026-04-21 | +| Test::Internet | 6/7 | 1/7 subtests failed | 2026-04-26 | +| Test::JSON::Schema::Acceptance | 1/1 | | 2026-04-26 | | Test::LectroTest | 285/311 | 26/311 subtests failed | 2026-04-22 | | Test::LongString | 32/38 | 6/38 subtests failed | 2026-04-12 | | Test::Memory::Cycle | 19/38 | 19/38 subtests failed | 2026-04-12 | +| Test::MinimumVersion | 0/1 | 10/1 subtests failed | 2026-04-26 | +| Test::MinimumVersion::Fast | 0/1 | 10/1 subtests failed | 2026-04-26 | | Test::Mock::ExternalCommand | 0/1 | 1/1 subtests failed | 2026-04-21 | -| Test::Mock::Guard | 209/216 | 7/216 subtests failed | 2026-04-21 | +| Test::Mock::LWP | 0/6 | 6/6 subtests failed | 2026-04-25 | | Test::Mock::LWP::Conditional | 1/2 | 1/2 subtests failed | 2026-04-21 | -| Test::MockModule | 1/2 | 1/2 subtests failed | 2026-04-21 | +| Test::Mock::Redis | 0/2 | 3/2 subtests failed | 2026-04-25 | +| Test::MockModule | 1/2 | 1/2 subtests failed | 2026-04-26 | | Test::MockObject | 0/103 | 136/103 subtests failed | 2026-04-12 | -| Test::MockTime::HiRes | 209/216 | 7/216 subtests failed | 2026-04-22 | +| Test::MockTime::HiRes | 209/216 | 7/216 subtests failed | 2026-04-26 | +| Test::Mojibake | 45/55 | 10/55 subtests failed | 2026-04-26 | | Test::More | 31/31 | | 2026-04-22 | +| Test::Net::RabbitMQ | 1/2 | 1/2 subtests failed | 2026-04-25 | +| Test::PAUSE::Permissions | 0/1 | 1/1 subtests failed | 2026-04-26 | | Test::Pod::Coverage | 0/9 | 20/9 subtests failed | 2026-04-12 | -| Test::PostgreSQL | 0/1 | 1/1 subtests failed | 2026-04-22 | +| Test::Pod::Snippets | 5/8 | 3/8 subtests failed | 2026-04-26 | +| Test::PostgreSQL | 0/1 | 1/1 subtests failed | 2026-04-26 | | Test::RDF | 0/1 | 1/1 subtests failed | 2026-04-22 | -| Test::Refcount | 15/21 | 6/21 subtests failed | 2026-04-22 | +| Test::Refcount | 15/21 | 6/21 subtests failed | 2026-04-25 | +| Test::Resub | 74/76 | 2/76 subtests failed | 2026-04-25 | +| Test::Returns | 0/1 | 1/1 subtests failed | 2026-04-26 | | Test::Roo | 1/9 | 8/9 subtests failed | 2026-04-12 | | Test::Roo::DataDriven | 11/11 | | 2026-04-22 | | Test::Routine | 1/3 | 2/3 subtests failed | 2026-04-21 | +| Test::Run | 0/41 | 77/41 subtests failed | 2026-04-25 | +| Test::SharedObject | 0/1 | 11/1 subtests failed | 2026-04-25 | | Test::Spelling | 6/23 | 17/23 subtests failed | 2026-04-12 | | Test::TempDatabase | 0/5 | 41/5 subtests failed | 2026-04-22 | | Test::TempDir | 1/7 | 6/7 subtests failed | 2026-04-12 | | Test::Trap | 0/5 | 5/5 subtests failed | 2026-04-22 | -| Test::Type | 1/2 | 1/2 subtests failed | 2026-04-21 | +| Test::Type | 1/2 | 1/2 subtests failed | 2026-04-26 | +| Test::TypeConstraints | 0/1 | 1/1 subtests failed | 2026-04-25 | +| Test::Version | 57/62 | 5/62 subtests failed | 2026-04-25 | | Test::WWW::Mechanize | 178/238 | 60/238 subtests failed | 2026-04-21 | +| Test::WWW::Mechanize::Catalyst | 0/1 | 50/1 subtests failed | 2026-04-26 | | Test::Weaken | 15/94 | 79/94 subtests failed | 2026-04-22 | -| Test::XML | 13/35 | 22/35 subtests failed | 2026-04-22 | +| Test::XML | 13/35 | 22/35 subtests failed | 2026-04-26 | | Test::YAML | 0/1 | 1/1 subtests failed | 2026-04-12 | +| Test::mysqld | 0/1 | 1/1 subtests failed | 2026-04-25 | +| Test::utf8 | 37/40 | 3/40 subtests failed | 2026-04-26 | +| Text::ASCIITable | 109/111 | 2/111 subtests failed | 2026-04-26 | +| Text::CSV::Encoded | 241/255 | 14/255 subtests failed | 2026-04-25 | | Text::Convert::PETSCII | 0/3 | 121/3 subtests failed | 2026-04-22 | +| Text::Demoroniser | 0/1 | 9/1 subtests failed | 2026-04-26 | | Text::Levenshtein::XS | 0/2 | 2/2 subtests failed | 2026-04-22 | | Text::MicroTemplate | 77/79 | 2/79 subtests failed | 2026-04-21 | -| Text::Table | 0/9 | 166/9 subtests failed | 2026-04-22 | +| Text::MicroTemplate::Extended | 23/25 | 2/25 subtests failed | 2026-04-25 | +| Text::Similarity | 0/36 | 116/36 subtests failed | 2026-04-25 | +| Text::Sprintf::Named | 23/27 | 4/27 subtests failed | 2026-04-25 | +| Text::Table::Tiny | 0/1 | 29/1 subtests failed | 2026-04-26 | | Text::Template | 100/163 | 63/163 subtests failed | 2026-04-12 | +| Text::Trac | 0/9 | 9/9 subtests failed | 2026-04-26 | +| Text::VimColor | 4/4 | | 2026-04-25 | | Text::VisualWidth::PP | 0/5 | 16/5 subtests failed | 2026-04-21 | | Text::VisualWidth::UTF8 | 0/3 | 15/3 subtests failed | 2026-04-12 | +| Text::vCard | 0/11 | 112/11 subtests failed | 2026-04-26 | +| Thrift::Parser | 40/47 | 7/47 subtests failed | 2026-04-25 | | Tie::EncryptedHash | 0/1 | 67/1 subtests failed | 2026-04-22 | | Tie::File | 4389/4725 | 336/4725 subtests failed | 2026-04-12 | | Tie::Hash::LRU | 2/2 | | 2026-04-21 | -| Tie::IxHash | 27/29 | 2/29 subtests failed | 2026-04-22 | +| Tie::IxHash | 27/29 | 2/29 subtests failed | 2026-04-26 | | Tie::RegexpHash | 0/10 | 10/10 subtests failed | 2026-04-21 | +| TieScalarTest | 380/1063 | 683/1063 subtests failed | 2026-04-25 | | Time::Duration::Concise::Localize | 39/42 | 3/42 subtests failed | 2026-04-21 | -| Time::Format | 0/214 | 319/214 subtests failed | 2026-04-12 | +| Time::Format | 0/194 | 339/194 subtests failed | 2026-04-25 | | Time::Moment | 1/36 | 35/36 subtests failed | 2026-04-12 | | Time::ParseDate | 2/8 | 6/8 subtests failed | 2026-04-12 | | Timer::Simple | 49/49 | | 2026-04-22 | +| TinyURL | 6/8 | 2/8 subtests failed | 2026-04-25 | +| TkUtil::Configure | 1/2 | 1/2 subtests failed | 2026-04-26 | | Toader | 0/1 | 1/1 subtests failed | 2026-04-22 | | Tree::XPathEngine | 157/158 | 1/158 subtests failed | 2026-04-22 | | Try::Tiny | 94/97 | 3/97 subtests failed | 2026-04-22 | +| Type::Tiny::XS | 0/76 | 118/76 subtests failed | 2026-04-26 | +| Types::Core | 0/8 | 11/8 subtests failed | 2026-04-25 | +| Types::Encodings | 58/61 | 3/61 subtests failed | 2026-04-26 | | UAV::Pilot | 0/39 | 43/39 subtests failed | 2026-04-22 | +| UAV::Pilot::Wumpus::Server | 0/12 | 26/12 subtests failed | 2026-04-26 | +| UAV::Pilot::WumpusRover::Control | 0/33 | 123/33 subtests failed | 2026-04-26 | +| UMLS::Association | 30/31 | 1/31 subtests failed | 2026-04-25 | | UNIVERSAL::can | 56/59 | 3/59 subtests failed | 2026-04-22 | | UNIVERSAL::isa | 53/76 | 23/76 subtests failed | 2026-04-12 | | URI::Escape::XS | 4/5 | 1/5 subtests failed | 2026-04-21 | -| URI::Find | 617/619 | 2/619 subtests failed | 2026-04-21 | +| URI::Find | 617/619 | 2/619 subtests failed | 2026-04-26 | +| URI::Find::Delimited | 0/1 | 18/1 subtests failed | 2026-04-26 | | URI::Query | 91/93 | 2/93 subtests failed | 2026-04-12 | | URI::Simple | 18/20 | 2/20 subtests failed | 2026-04-22 | +| URI::XSEscape | 0/1 | 1/1 subtests failed | 2026-04-26 | | URL::Transform | 6/18 | 12/18 subtests failed | 2026-04-22 | | URL::XS | 1/3 | 2/3 subtests failed | 2026-04-22 | | Unicode::LineBreak | 0/9 | 202/9 subtests failed | 2026-04-12 | | User::Identity | 0/4 | 75/4 subtests failed | 2026-04-22 | | Util::H2O | 0/2 | 343/2 subtests failed | 2026-04-22 | | VBTK | 2/3 | 1/3 subtests failed | 2026-04-21 | +| VCS::PVCS | 10/10 | | 2026-04-26 | +| VCS::Rcs::Parser | 49/57 | 8/57 subtests failed | 2026-04-25 | | VIC | 32/49 | 17/49 subtests failed | 2026-04-22 | | VM::CloudAtCost | 0/1 | 1/1 subtests failed | 2026-04-12 | +| VM::Virtuozzo | 1/2 | 1/2 subtests failed | 2026-04-25 | +| VMPS::Packet | 2/3 | 1/3 subtests failed | 2026-04-26 | | VSGDR::SQLServer::DataType | 17/18 | 1/18 subtests failed | 2026-04-22 | +| VSGDR::TestScriptGen | 2/3 | 1/3 subtests failed | 2026-04-25 | +| Valiemon | 0/3 | 3/3 subtests failed | 2026-04-25 | | Variable::Expand::AnyLevel | 0/1 | 1/1 subtests failed | 2026-04-21 | | Variable::Magic | 0/1 | 886/1 subtests failed | 2026-04-21 | | Venus | 12/13 | 1/13 subtests failed | 2026-04-21 | | WJSON | 0/1 | 1/1 subtests failed | 2026-04-22 | | WKHTMLTOPDF | 0/1 | 1/1 subtests failed | 2026-04-22 | +| WSDL::XML::Generator | 5/5 | | 2026-04-25 | +| WWW::BashOrg | 0/6 | 6/6 subtests failed | 2026-04-25 | +| WWW::Bund | 215/294 | 79/294 subtests failed | 2026-04-25 | +| WWW::CBF | 1/2 | 1/2 subtests failed | 2026-04-25 | | WWW::Comic::Plugin | 27/63 | 36/63 subtests failed | 2026-04-22 | | WWW::Dilbert | 7/19 | 12/19 subtests failed | 2026-04-22 | +| WWW::Github::Files | 16/18 | 2/18 subtests failed | 2026-04-25 | +| WWW::Google::Places | 8/10 | 2/10 subtests failed | 2026-04-26 | +| WWW::Google::UserAgent | 2/3 | 1/3 subtests failed | 2026-04-26 | +| WWW::Hanako | 0/2 | 3/2 subtests failed | 2026-04-26 | | WWW::HostipInfo | 20/23 | 3/23 subtests failed | 2026-04-22 | +| WWW::KeenIO | 0/1 | 1/1 subtests failed | 2026-04-26 | | WWW::Mechanize::Meta | 3/10 | 7/10 subtests failed | 2026-04-21 | | WWW::NicoVideo | 2/4 | 2/4 subtests failed | 2026-04-22 | | WWW::NicoVideo::Download | 0/1 | 1/1 subtests failed | 2026-04-22 | | WWW::Opentracker::Stats | 86/93 | 7/93 subtests failed | 2026-04-22 | +| WWW::Pastebin::PastebinCa::Retrieve | 0/5 | 5/5 subtests failed | 2026-04-25 | | WWW::Patent::Page | 0/6 | 259/6 subtests failed | 2026-04-22 | +| WWW::Postmark | 0/1 | 1/1 subtests failed | 2026-04-25 | +| WWW::RiotGames::LeagueOfLegends | 0/2 | 2/2 subtests failed | 2026-04-26 | | WWW::Salesforce | 1/1 | | 2026-04-22 | -| WWW::Salesforce::Report | 3/5 | 2/5 subtests failed | 2026-04-22 | +| WWW::Salesforce::Report | 3/5 | 2/5 subtests failed | 2026-04-25 | | WWW::Scraper::ISBN::TWCwbook_Driver | 0/3 | 12/3 subtests failed | 2026-04-21 | +| WWW::Scraper::ISBN::TWPchome_Driver | 0/3 | 13/3 subtests failed | 2026-04-26 | +| WWW::Scraper::ISBN::TWTenlong_Driver | 0/3 | 13/3 subtests failed | 2026-04-26 | | WWW::Scripter | 0/5 | 76/5 subtests failed | 2026-04-22 | | WWW::Search | 21/31 | 10/31 subtests failed | 2026-04-22 | +| WWW::Search::ISBNDB | 0/4 | 4/4 subtests failed | 2026-04-25 | +| WWW::Search::NCBI::PubMed | 0/1 | 1/1 subtests failed | 2026-04-25 | | WWW::Search::PharmGKB | 1/2 | 1/2 subtests failed | 2026-04-22 | | WWW::Search::PubChem | 4/5 | 1/5 subtests failed | 2026-04-22 | +| WWW::Shopify | 0/2 | 2/2 subtests failed | 2026-04-26 | | WWW::Shorten::ShadyURL | 0/3 | 6/3 subtests failed | 2026-04-21 | -| WWW::VenusEnvy | 7/23 | 16/23 subtests failed | 2026-04-22 | +| WWW::SubDB | 0/1 | 1/1 subtests failed | 2026-04-25 | +| WWW::Tabela::Fipe | 0/2 | 2/2 subtests failed | 2026-04-26 | +| WWW::Velib | 82/86 | 4/86 subtests failed | 2026-04-26 | +| WWW::WuFoo | 0/1 | 1/1 subtests failed | 2026-04-25 | +| WWW::Yahoo::Groups | 0/16 | 130/16 subtests failed | 2026-04-26 | | Want | 0/1 | 147/1 subtests failed | 2026-04-12 | | Wanted | 0/2 | 2/2 subtests failed | 2026-04-21 | -| Web::Scraper | 0/1 | 1/1 subtests failed | 2026-04-22 | +| Web::Scraper | 0/1 | 1/1 subtests failed | 2026-04-26 | +| WebDyne::Chain | 2/18 | 16/18 subtests failed | 2026-04-25 | +| WebDyne::Template::VERSION | 0/2 | 2/2 subtests failed | 2026-04-25 | +| WebNano | 31/53 | 22/53 subtests failed | 2026-04-26 | +| WebService::AcousticBrainz | 0/1 | 1/1 subtests failed | 2026-04-25 | +| WebService::Amazon::Route53 | 2/5 | 3/5 subtests failed | 2026-04-26 | | WebService::Beeminder | 0/1 | 1/1 subtests failed | 2026-04-22 | +| WebService::Bloglines | 0/1 | 1/1 subtests failed | 2026-04-25 | +| WebService::BorisBikes | 3/3 | | 2026-04-25 | | WebService::Cath::FuncNet | 7/10 | 3/10 subtests failed | 2026-04-22 | | WebService::ChatWorkApi | 4/14 | 10/14 subtests failed | 2026-04-12 | | WebService::DataDog | 5/16 | 11/16 subtests failed | 2026-04-21 | +| WebService::HMRC | 1/4 | 3/4 subtests failed | 2026-04-26 | +| WebService::HMRC::HelloWorld | 0/1 | 1/1 subtests failed | 2026-04-26 | | WebService::Hatena::BookmarkCount | 3/6 | 3/6 subtests failed | 2026-04-22 | +| WebService::Heartrails::Express | 0/1 | 1/1 subtests failed | 2026-04-26 | | WebService::ImKayac::Simple | 0/1 | 1/1 subtests failed | 2026-04-22 | | WebService::Instapaper | 0/1 | 1/1 subtests failed | 2026-04-22 | | WebService::KoreanSpeller | 0/1 | 1/1 subtests failed | 2026-04-22 | +| WebService::NFSN | 86/87 | 1/87 subtests failed | 2026-04-25 | | WebService::Northern911 | 0/1 | 1/1 subtests failed | 2026-04-22 | +| WebService::Pushwoosh | 0/1 | 1/1 subtests failed | 2026-04-26 | +| WebService::Qiita::V2 | 15/15 | | 2026-04-25 | | WebService::Strike | 0/1 | 13/1 subtests failed | 2026-04-22 | | WebService::UMLSKS::ConnectUMLS | 0/1 | 1/1 subtests failed | 2026-04-21 | +| WebService::Uptrack | 0/2 | 7/2 subtests failed | 2026-04-26 | +| WebService::UrbanAirship | 0/13 | 25/13 subtests failed | 2026-04-25 | | WebService::Vichan | 1/9 | 8/9 subtests failed | 2026-04-22 | +| WebService::XING | 16/23 | 7/23 subtests failed | 2026-04-26 | | Win32::Monitoring::DLLInject | 0/1 | 1/1 subtests failed | 2026-04-22 | | Win32::Monitoring::Session | 0/1 | 4/1 subtests failed | 2026-04-22 | +| Win32::Scsv | 0/1 | 13/1 subtests failed | 2026-04-25 | +| WiringPi::API | 1/1 | | 2026-04-25 | +| WordNet::get_wn_info | 0/92 | 2021/92 subtests failed | 2026-04-25 | | Wx::Perl::Imagick | 1/2 | 1/2 subtests failed | 2026-04-22 | -| X11::XRandR | 19/21 | 2/21 subtests failed | 2026-04-22 | +| X11::XRandR | 19/21 | 2/21 subtests failed | 2026-04-25 | +| X500::DN | 40/54 | 14/54 subtests failed | 2026-04-25 | | XML::Assert | 0/11 | 12/11 subtests failed | 2026-04-22 | -| XML::Atom | 0/114 | 164/114 subtests failed | 2026-04-22 | +| XML::Atom | 0/116 | 165/116 subtests failed | 2026-04-26 | +| XML::Atom::Ext::Inline | 1/2 | 1/2 subtests failed | 2026-04-26 | +| XML::Atom::Ext::Media | 0/1 | 1/1 subtests failed | 2026-04-26 | +| XML::Atom::Feed | 0/116 | 165/116 subtests failed | 2026-04-26 | | XML::Atom::Stream | 0/1 | 1/1 subtests failed | 2026-04-22 | +| XML::AutoWriter | 0/1 | 181/1 subtests failed | 2026-04-26 | +| XML::Bare | 0/10 | 10/10 subtests failed | 2026-04-26 | +| XML::Catalog | 2/5 | 3/5 subtests failed | 2026-04-25 | | XML::CompactTree | 0/9 | 189/9 subtests failed | 2026-04-22 | +| XML::Compare | 0/9 | 26/9 subtests failed | 2026-04-26 | +| XML::Compile::C14N | 6/8 | 2/8 subtests failed | 2026-04-26 | +| XML::Compile::WSS | 0/4 | 127/4 subtests failed | 2026-04-26 | +| XML::Compile::WSS::KeyInfo | 0/5 | 5/5 subtests failed | 2026-04-26 | | XML::DT | 0/3 | 46/3 subtests failed | 2026-04-22 | +| XML::Declare | 0/3 | 31/3 subtests failed | 2026-04-26 | +| XML::Descent | 0/3 | 17/3 subtests failed | 2026-04-26 | +| XML::Element | 0/4 | 9/4 subtests failed | 2026-04-25 | +| XML::Elemental | 15/47 | 32/47 subtests failed | 2026-04-26 | +| XML::Enc | 0/1 | 985/1 subtests failed | 2026-04-26 | | XML::FeedPP | 1394/1398 | 4/1398 subtests failed | 2026-04-22 | | XML::FeedPP::Plugin::AddMP3 | 0/1 | 29/1 subtests failed | 2026-04-22 | +| XML::Filter::BufferText | 2/4 | 2/4 subtests failed | 2026-04-26 | | XML::Flow | 0/7 | 48/7 subtests failed | 2026-04-21 | -| XML::Generator | 131/149 | 18/149 subtests failed | 2026-04-21 | +| XML::Generator | 140/149 | 9/149 subtests failed | 2026-04-26 | +| XML::Generator::vCard::RDF | 12/18 | 6/18 subtests failed | 2026-04-26 | +| XML::Grove | 6/9 | 3/9 subtests failed | 2026-04-26 | +| XML::Hash | 0/2 | 4/2 subtests failed | 2026-04-26 | | XML::Hash::LX | 0/4 | 42/4 subtests failed | 2026-04-21 | -| XML::Parser::Wrapper | 0/2 | 10/2 subtests failed | 2026-04-12 | +| XML::IETF | 0/1 | 1/1 subtests failed | 2026-04-26 | +| XML::LibXML::Augment | 0/1 | 1/1 subtests failed | 2026-04-26 | +| XML::LibXML::jQuery | 1/3 | 2/3 subtests failed | 2026-04-26 | +| XML::NewsML | 0/1 | 2/1 subtests failed | 2026-04-26 | +| XML::OBEXFTP::FolderListing | 142/152 | 10/152 subtests failed | 2026-04-26 | +| XML::PP | 0/6 | 6/6 subtests failed | 2026-04-26 | +| XML::Parser::Lite | 0/5 | 50/5 subtests failed | 2026-04-26 | +| XML::Parser::Style::EasyTree | 0/10 | 52/10 subtests failed | 2026-04-25 | +| XML::Parser::Wrapper | 0/2 | 10/2 subtests failed | 2026-04-26 | | XML::Quote | 0/1 | 48/1 subtests failed | 2026-04-21 | -| XML::RSS | 402/441 | 39/441 subtests failed | 2026-04-22 | +| XML::RSS | 402/441 | 39/441 subtests failed | 2026-04-26 | +| XML::RSS::LibXML | 0/40 | 664/40 subtests failed | 2026-04-26 | +| XML::RSS::Parser::Lite | 0/2 | 4/2 subtests failed | 2026-04-26 | | XML::RSS::PicLens | 1/2 | 1/2 subtests failed | 2026-04-22 | | XML::SAX | 105/109 | 4/109 subtests failed | 2026-04-12 | -| XML::SemanticDiff | 45/47 | 2/47 subtests failed | 2026-04-22 | +| XML::SRS | 61/123 | 62/123 subtests failed | 2026-04-26 | +| XML::SemanticDiff | 45/47 | 2/47 subtests failed | 2026-04-26 | | XML::Simple | 502/503 | 1/503 subtests failed | 2026-04-22 | +| XML::Smart | 0/1 | 1/1 subtests failed | 2026-04-26 | | XML::TMX | 0/11 | 19/11 subtests failed | 2026-04-22 | | XML::TMX::CWB | 0/1 | 1/1 subtests failed | 2026-04-22 | | XML::TreePuller | 0/1 | 57/1 subtests failed | 2026-04-22 | +| XML::WBXML | 0/3 | 27/3 subtests failed | 2026-04-26 | | XML::Writer | 267/273 | 6/273 subtests failed | 2026-04-22 | +| XML::XMetaL | 0/45 | 95/45 subtests failed | 2026-04-26 | +| XML::XSS | 0/13 | 14/13 subtests failed | 2026-04-26 | +| XRI | 23/27 | 4/27 subtests failed | 2026-04-26 | +| XString | 1/4 | 3/4 subtests failed | 2026-04-26 | | YAML::Any | 29/38 | 9/38 subtests failed | 2026-04-12 | | YAML::Dump | 27/35 | 8/35 subtests failed | 2026-04-22 | -| YAML::PP | 2449/2595 | 146/2595 subtests failed | 2026-04-21 | | YAML::Tiny | 52/58 | 6/58 subtests failed | 2026-04-12 | | YAML::XS | 0/2 | 48/2 subtests failed | 2026-04-12 | | ZConf | 6/9 | 3/9 subtests failed | 2026-04-22 | | ZConf::Bookmarks | 4/5 | 1/5 subtests failed | 2026-04-22 | +| ZConf::DBI | 4/5 | 1/5 subtests failed | 2026-04-26 | | ZConf::GUI | 4/5 | 1/5 subtests failed | 2026-04-22 | -| ZConf::Runner | 6/9 | 3/9 subtests failed | 2026-04-22 | +| ZConf::Runner | 6/9 | 3/9 subtests failed | 2026-04-26 | +| ZMQ::Declare | 0/1 | 1/1 subtests failed | 2026-04-26 | | Zydeco | 0/2 | 3/2 subtests failed | 2026-04-22 | | aliased | 39/40 | 1/40 subtests failed | 2026-04-21 | | autobox | 0/2 | 670/2 subtests failed | 2026-04-12 | | autobox::Transform | 0/1 | 1/1 subtests failed | 2026-04-22 | | autovivification | 0/41 | 71/41 subtests failed | 2026-04-12 | | boolean | 87/89 | 2/89 subtests failed | 2026-04-12 | +| builtin::compat | 2/2 | | 2026-04-26 | +| constant::boolean | 12/15 | 3/15 subtests failed | 2026-04-26 | | lexical::underscore | 6/7 | 1/7 subtests failed | 2026-04-21 | | lib::abs | 0/32 | 126/32 subtests failed | 2026-04-21 | | lib::projectroot | 15/22 | 7/22 subtests failed | 2026-04-22 | @@ -2801,34 +4094,54 @@ | version | 394/430 | 36/430 subtests failed | 2026-04-21 | | warnings::illegalproto | 4/6 | 2/6 subtests failed | 2026-04-22 | -### Timeout (24 modules) +### Timeout (44 modules) | Module | Pass/Total | Error | Date | |--------|-----------|-------|------| +| AnyEvent::Stomper::Pool | | TIMEOUT (>300s) | 2026-04-25 | +| AsposeCellsCloud::LightCellsApi | | TIMEOUT (>300s) | 2026-04-25 | +| AsposeCellsCloud::Object::QueryDataSource | | TIMEOUT (>300s) | 2026-04-26 | +| AsposeCellsCloud::Request::GetExtractBarcodesRequest | | TIMEOUT (>300s) | 2026-04-25 | | B::BUtils | | TIMEOUT (>300s) | 2026-04-21 | +| BZ::Client::Test | | TIMEOUT (>300s) | 2026-04-26 | | CHI::Driver::DBI::t::Base | | TIMEOUT (>300s) | 2026-04-21 | | CORBA::C::nameattr | | TIMEOUT (>300s) | 2026-04-21 | | CORBA::Cplusplus::nameattr | | TIMEOUT (>300s) | 2026-04-21 | +| CPAN::Test::Dummy::Perl5::VersionBump::Decrease | | TIMEOUT (>300s) | 2026-04-25 | | CPU::Z80::Assembler::Token | | TIMEOUT (>120s) | 2026-04-12 | | DBD::Safe | | TIMEOUT (>120s) | 2026-04-12 | +| DBIx::Simple::SQE | | TIMEOUT (>300s) | 2026-04-26 | | DBNull_File | | TIMEOUT (>120s) | 2026-04-12 | | DR::Msgpuck::Bool | | TIMEOUT (>120s) | 2026-04-12 | +| Dancer2::Plugin::Cart::Ext::Email | | TIMEOUT (>300s) | 2026-04-26 | | Demo_Export | | TIMEOUT (>300s) | 2026-04-21 | | IO::All::Gopher | | TIMEOUT (>300s) | 2026-04-21 | | JSON::Literal | | TIMEOUT (>300s) | 2026-04-21 | | JSON::Validator::Ref | | TIMEOUT (>300s) | 2026-04-21 | +| LWPx::TimedHTTP::https | | TIMEOUT (>300s) | 2026-04-26 | +| LiquidCrystal_I2C | | TIMEOUT (>300s) | 2026-04-25 | | MODS::Element::ShelfLocation | | TIMEOUT (>300s) | 2026-04-22 | +| MQSeries::OAM | | TIMEOUT (>300s) | 2026-04-25 | | MasonX::Maypole::Application | | TIMEOUT (>300s) | 2026-04-22 | +| PBib::BibItemStyle | | TIMEOUT (>300s) | 2026-04-25 | | PBib::Builder | | TIMEOUT (>300s) | 2026-04-21 | | POE::Component::Client::Whois::Smart::Data | | TIMEOUT (>300s) | 2026-04-22 | | POE::Component::Server::IRC::Pipeline | | TIMEOUT (>300s) | 2026-04-22 | | PawsX::FakeImplementation::Instance | | TIMEOUT (>300s) | 2026-04-21 | +| PerlGuard::Agent::Monitors::DBI::DBILogger | | TIMEOUT (>300s) | 2026-04-26 | +| PerlPoint::Tags::CPPP | | TIMEOUT (>300s) | 2026-04-25 | | QBit::WebInterface::Test | | TIMEOUT (>300s) | 2026-04-22 | | RDFStore::FindIndex | | TIMEOUT (>300s) | 2026-04-22 | | SPVM::Eg::Attributes | | TIMEOUT (>300s) | 2026-04-22 | | SPVM::IO::Handle::Interface | | TIMEOUT (>300s) | 2026-04-22 | +| SkypeAPI::Command | | TIMEOUT (>300s) | 2026-04-25 | +| Toto | | TIMEOUT (>300s) | 2026-04-25 | | WebService::Technorati::BlogSubject | | TIMEOUT (>300s) | 2026-04-22 | -| XML::XSPF::Base | | TIMEOUT (>300s) | 2026-04-22 | +| Win32::CtrlGUI::Criteria::and | | TIMEOUT (>300s) | 2026-04-25 | +| XML::ASCX12::Catalogs | | TIMEOUT (>300s) | 2026-04-26 | +| XML::RSS::Parser::Element | | TIMEOUT (>300s) | 2026-04-26 | +| XML::Writer::Namespaces | | TIMEOUT (>300s) | 2026-04-26 | +| XML::XSPF::Base | | TIMEOUT (>300s) | 2026-04-26 | ## How to Reproduce diff --git a/src/main/java/org/perlonjava/core/Configuration.java b/src/main/java/org/perlonjava/core/Configuration.java index 249c9777d..9733564da 100644 --- a/src/main/java/org/perlonjava/core/Configuration.java +++ b/src/main/java/org/perlonjava/core/Configuration.java @@ -33,14 +33,14 @@ public final class Configuration { * Automatically populated by Gradle/Maven during build. * DO NOT EDIT MANUALLY - this value is replaced at build time. */ - public static final String gitCommitId = "1d5def215"; + public static final String gitCommitId = "472d4e2da"; /** * Git commit date of the build (ISO format: YYYY-MM-DD). * Automatically populated by Gradle/Maven during build. * DO NOT EDIT MANUALLY - this value is replaced at build time. */ - public static final String gitCommitDate = "2026-04-25"; + public static final String gitCommitDate = "2026-04-26"; /** * Build timestamp in Perl 5 "Compiled at" format (e.g., "Apr 7 2026 11:20:00"). @@ -48,7 +48,7 @@ public final class Configuration { * Parsed by App::perlbrew and other tools via: perl -V | grep "Compiled at" * DO NOT EDIT MANUALLY - this value is replaced at build time. */ - public static final String buildTimestamp = "Apr 26 2026 17:32:45"; + public static final String buildTimestamp = "Apr 26 2026 17:43:24"; // Prevent instantiation private Configuration() {