[Rt-commit] rt branch, 4.0/backport-avoid-dbd-mysql-datetime-locale, created. rt-4.0.24-49-gc4aaf3e
Brian Duggan
brian at bestpractical.com
Tue May 23 14:06:34 EDT 2017
The branch, 4.0/backport-avoid-dbd-mysql-datetime-locale has been created
at c4aaf3e182e5a6a85a149d7e467f471fe92e799f (commit)
- Log -----------------------------------------------------------------
commit f2aeefbba20a9cb83d21136bd626cb0a0e7df396
Author: Jim Brandt <jbrandt at bestpractical.com>
Date: Fri Dec 11 14:05:44 2015 -0500
Avoid version 1.01 of DateTime::Locale
DateTime::Locale 1.01 included some changes to locale parsing
including a change in behavior such that en-us, which previously
loaded as a locale, no longer worked. This was updated in
version 1.02. See this ticket for details:
https://rt.cpan.org/Public/Bug/Display.html?id=110244
This was observed in version 1.01, but version 1.00 was the first
to include the large set of changes, so avoid that version as
well.
Fixes: I#31542
diff --git a/sbin/rt-test-dependencies.in b/sbin/rt-test-dependencies.in
index 9f0a4ff..8a2b9a9 100644
--- a/sbin/rt-test-dependencies.in
+++ b/sbin/rt-test-dependencies.in
@@ -386,6 +386,7 @@ my %AVOID = (
'DBD::Oracle' => [qw(1.23)],
'Email::Address' => [qw(1.893 1.894)],
'Devel::StackTrace' => [qw(1.28 1.29)],
+ 'DateTime::Locale' => [qw(1.00 1.01)]
);
if ($args{'download'}) {
commit c4aaf3e182e5a6a85a149d7e467f471fe92e799f
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 8a2b9a9..48e0095 100644
--- a/sbin/rt-test-dependencies.in
+++ b/sbin/rt-test-dependencies.in
@@ -386,7 +386,8 @@ my %AVOID = (
'DBD::Oracle' => [qw(1.23)],
'Email::Address' => [qw(1.893 1.894)],
'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