[Rt-commit] rt branch, 4.2/avoid-dbd-mysql-4.042, created. rt-4.2.13-120-gb5ea48d

Brian Duggan brian at bestpractical.com
Tue May 23 13:18:54 EDT 2017


The branch, 4.2/avoid-dbd-mysql-4.042 has been created
        at  b5ea48d0f73b73e7b12c3487cd1c7873d83473ed (commit)

- Log -----------------------------------------------------------------
commit b5ea48d0f73b73e7b12c3487cd1c7873d83473ed
Author: Brian C. Duggan <brian at bestpractical.com>
Date:   Tue May 23 13:17:51 2017 -0400

    Avoid DBD::mysql v4.042 in rt-test-dependencies
    
    The newest versions of DBD::mysql made some incompatible changes with
    utf8 handling that cause RT to not work correctly. Until the changes
    can be sorted out, add some code to rt-test-dependencies to check for
    the older, compatible versions.
    
    Fixes: I#32670

diff --git a/sbin/rt-test-dependencies.in b/sbin/rt-test-dependencies.in
index f006d44..47036e1 100644
--- a/sbin/rt-test-dependencies.in
+++ b/sbin/rt-test-dependencies.in
@@ -377,7 +377,8 @@ Pod::Simple 3.24
 my %AVOID = (
     'DBD::Oracle' => [qw(1.23)],
     'Devel::StackTrace' => [qw(1.28 1.29)],
-    'DateTime::Locale' => [qw(1.00 1.01)]
+    'DateTime::Locale' => [qw(1.00 1.01)],
+    'DBD::mysql'        => [qw(4.042)],
 );
 
 if ($args{'download'}) {

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


More information about the rt-commit mailing list