diff --git a/docs/gotcha.txt b/docs/gotcha.txt index 4b348fa4d..0effcda28 100644 --- a/docs/gotcha.txt +++ b/docs/gotcha.txt @@ -7,6 +7,12 @@ upgrading from one version to the next, or even between multiple versions. Be sure to heed the warnings contained herein as they will save you many hours of grief. +7.5.19 +-------------------------------------------------------------------- + * WebGUI now requires Text::CSV_XS version 0.52. If you have been + using an earlier version you will need to upgrade this perl + module before you upgrade. + 7.5.17 -------------------------------------------------------------------- * If users are allowed to self register and emails are not required, this diff --git a/sbin/testEnvironment.pl b/sbin/testEnvironment.pl index 01d04b51e..b0fcbf477 100644 --- a/sbin/testEnvironment.pl +++ b/sbin/testEnvironment.pl @@ -92,7 +92,7 @@ checkModule("HTML::Template::Expr", 0.05, 2 ); checkModule("XML::RSSLite", 0.11 ); checkModule("JSON", 2.04 ); checkModule("Config::JSON", "1.1.2" ); -checkModule("Text::CSV_XS", "0.26" ); +checkModule("Text::CSV_XS", "0.52" ); checkModule("Net::Subnets", 0.21 ); checkModule("Finance::Quote", 1.08 ); checkModule("POE", 0.3202 );