[Bps-public-commit] dbix-searchbuilder branch master updated. 1.77-1-g9a475c4
BPS Git Server
git at git.bestpractical.com
Wed Jul 5 13:18:01 UTC 2023
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "dbix-searchbuilder".
The branch, master has been updated
via 9a475c4f5a83fdf977fe1f6b24d4d4e403d5cd53 (commit)
from 815837b07ad4f0992f7c191f5cd02f2d16074842 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 9a475c4f5a83fdf977fe1f6b24d4d4e403d5cd53
Author: sunnavy <sunnavy at bestpractical.com>
Date: Wed Jul 5 21:15:42 2023 +0800
Require DBD::SQLite 1.60+ for combine searches
Mostly considering 1.60 is the earliest available version on CPAN anyway.
diff --git a/META.yml b/META.yml
index 745d14e..22e43c5 100644
--- a/META.yml
+++ b/META.yml
@@ -3,7 +3,7 @@ abstract: 'Encapsulate SQL queries and rows in simple perl objects'
author:
- 'Best Practical Solutions, LLC <modules at bestpractical.com>'
build_requires:
- DBD::SQLite: 0
+ DBD::SQLite: 1.6
ExtUtils::MakeMaker: 6.59
File::Temp: 0
Test::More: 0.52
diff --git a/Makefile.PL b/Makefile.PL
index 545b002..c4e0dc0 100755
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -13,7 +13,7 @@ requires('Cache::Simple::TimedExpiry' => '0.21');
requires('Clone');
requires('Scalar::Util');
build_requires('Test::More' => 0.52);
-build_requires('DBD::SQLite');
+build_requires('DBD::SQLite' => 1.6);
build_requires('File::Temp');
features(
'Lower case API' => [
diff --git a/t/03searches_combine.t b/t/03searches_combine.t
index 4dc8674..3b28c5d 100644
--- a/t/03searches_combine.t
+++ b/t/03searches_combine.t
@@ -19,10 +19,6 @@ SKIP: {
skip "ENV is not defined for driver '$d'", TESTS_PER_DRIVER;
}
- if ( $d eq 'SQLite' && version->parse($DBD::SQLite::VERSION) <= 1.6 ) {
- skip "Require DBD::SQLite 1.60+ to enable combine search", TESTS_PER_DRIVER;
- }
-
my $handle = get_handle($d);
connect_handle($handle);
-----------------------------------------------------------------------
Summary of changes:
META.yml | 2 +-
Makefile.PL | 2 +-
t/03searches_combine.t | 4 ----
3 files changed, 2 insertions(+), 6 deletions(-)
hooks/post-receive
--
dbix-searchbuilder
More information about the Bps-public-commit
mailing list