From: Peter Rabbitson Date: Tue, 8 Oct 2013 22:47:15 +0000 (+0200) Subject: Add explicit notes wrt DBI/DBD::SQLite dep versions X-Git-Tag: v0.08260~126 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=5342cd1ab95f8cf49a6b5bd87d9d7f8f133c53cc;p=dbsrgits%2FDBIx-Class.git Add explicit notes wrt DBI/DBD::SQLite dep versions --- diff --git a/Makefile.PL b/Makefile.PL index c3cebfa..32f04c6 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -46,6 +46,12 @@ my $runtime_requires = { # DBI itself should be capable of installation and execution in pure-perl # mode. However it has never been tested yet, so consider XS for the time # being +### +### IMPORTANT - do not raise this dependency +### even though many bugfixes are present in newer versions, the general DBIC +### rule is to bend over backwards for available DBI versions (given upgrading +### them is often *not* easy or even possible) +### 'DBI' => '1.57', # on older versions first() leaks @@ -86,6 +92,12 @@ my $runtime_requires = { my $build_requires = { # needed for testing only, not for operation # we will move away from this dep eventually, perhaps to DBD::CSV or something +### +### IMPORTANT - do not raise this dependency +### even though many bugfixes are present in newer versions, the general DBIC +### rule is to bend over backwards for available DBDs (given upgrading them is +### often *not* easy or even possible) +### 'DBD::SQLite' => '1.29', };