[Rt-commit] rt branch, 4.4/avoid-dbd-mysql-4.042, created. rt-4.4.1-344-g1e196b3
Brian Duggan
brian at bestpractical.com
Tue May 23 12:39:21 EDT 2017
The branch, 4.4/avoid-dbd-mysql-4.042 has been created
at 1e196b3f1ceddab090f7478b32780ef978cebab7 (commit)
- Log -----------------------------------------------------------------
commit 1e196b3f1ceddab090f7478b32780ef978cebab7
Author: Brian C. Duggan <brian at bestpractical.com>
Date: Tue May 23 12:33:42 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 4822bdd..ec88168 100644
--- a/sbin/rt-test-dependencies.in
+++ b/sbin/rt-test-dependencies.in
@@ -312,7 +312,8 @@ File::Dropbox
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)],
);
check_perl_version();
-----------------------------------------------------------------------
More information about the rt-commit
mailing list