[Rt-commit] rt branch, 4.4/avoid-mojo-css-version, created. rt-4.4.4-118-g5e988bb37e

Jim Brandt jbrandt at bestpractical.com
Mon Jul 6 13:35:28 EDT 2020


The branch, 4.4/avoid-mojo-css-version has been created
        at  5e988bb37eb44d61760f8056671da404e83fb9ed (commit)

- Log -----------------------------------------------------------------
commit 5e988bb37eb44d61760f8056671da404e83fb9ed
Author: Jim Brandt <jbrandt at bestpractical.com>
Date:   Mon Jul 6 13:28:46 2020 -0400

    Avoid a known problem version of Mojo::DOM::CSS
    
    Version 8.54 of Mojo::DOM::CSS causes failures in the test
    t/web/ticket_owner.t like
    
    Not an ARRAY reference at /usr/share/perl5/Mojo/DOM/CSS.pm line 237.
    
    This is noted in the Mojolicious Changes file and fixed in 8.55.
    
    Also change the dependency from Mojo::DOM to
    Mojolicious since Mojo::DOM is packaged in that module.
    Calling Mojo::DOM directly returned no version number, so the
    "avoid" check is unable to identify the bad version.
    
    Fixes: I#36426

diff --git a/sbin/rt-test-dependencies.in b/sbin/rt-test-dependencies.in
index 1f05a69c3f..8707b15aab 100644
--- a/sbin/rt-test-dependencies.in
+++ b/sbin/rt-test-dependencies.in
@@ -223,7 +223,7 @@ File::Which
 HTML::Entities
 Locale::PO
 Log::Dispatch::Perl
-Mojo::DOM
+Mojolicious
 Plack::Middleware::Test::StashWarnings 0.08
 Pod::Simple 3.24
 Set::Tiny
@@ -313,6 +313,7 @@ my %AVOID = (
     'Devel::StackTrace' => [qw(1.28 1.29)],
     'DateTime::Locale'  => [qw(1.00 1.01)],
     'DBD::mysql'        => [qw(4.042)],
+    'Mojolicious'         => [qw(8.54)],
 );
 
 check_perl_version();

-----------------------------------------------------------------------


More information about the rt-commit mailing list