[Bps-public-commit] dbix-searchbuilder branch master updated. 1.78-5-g8c719a5

BPS Git Server git at git.bestpractical.com
Mon Nov 27 20:22:26 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  8c719a52e5d1c9b48d12f8b741b21ffd485a5fc5 (commit)
       via  49f29bb0d6d67179e14235bf070411114ab1fe95 (commit)
       via  871616448ca175cc5bba442d7034b8872307aa35 (commit)
       via  e220a2e3774aba948d556725131583f53fe59653 (commit)
       via  ec23588133354cc67183af18eda5bc80ad82b2bf (commit)
      from  7330d53b0f7bf6e1111082fb5eed536fc5d31e07 (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 8c719a52e5d1c9b48d12f8b741b21ffd485a5fc5
Author: sunnavy <sunnavy at bestpractical.com>
Date:   Mon Nov 27 15:18:30 2023 -0500

    Prep version 1.79

diff --git a/Changes b/Changes
index f54cf34..87217bc 100644
--- a/Changes
+++ b/Changes
@@ -1,5 +1,8 @@
 Revision history for Perl extension DBIx::SearchBuilder.
 
+1.79 2023-11-27
+ - Produce correct query hints
+
 1.78 2023-07-05
  - Query the Count data if current page does not have any records
  - Require DBD::SQLite 1.60+ for combine searches
diff --git a/META.yml b/META.yml
index aa93498..191c953 100644
--- a/META.yml
+++ b/META.yml
@@ -36,4 +36,4 @@ requires:
   perl: 5.10.1
 resources:
   license: http://dev.perl.org/licenses/
-version: '1.78'
+version: '1.79'
diff --git a/README b/README
index 8d7242e..cc262a5 100644
--- a/README
+++ b/README
@@ -546,7 +546,9 @@ METHODS
     Always returns this collection's table.
 
   QueryHint [Hint]
-    If called with an argument, sets a query hint for this collection.
+    If called with an argument, sets a query hint for this collection. Call
+    this method before performing additional operations on a collection,
+    such as Count(), Next(), etc.
 
     Always returns the query hint.
 
diff --git a/lib/DBIx/SearchBuilder.pm b/lib/DBIx/SearchBuilder.pm
index 7cbc514..112f254 100755
--- a/lib/DBIx/SearchBuilder.pm
+++ b/lib/DBIx/SearchBuilder.pm
@@ -4,7 +4,7 @@ package DBIx::SearchBuilder;
 use strict;
 use warnings;
 
-our $VERSION = "1.78";
+our $VERSION = "1.79";
 
 use Clone qw();
 use Encode qw();

commit 49f29bb0d6d67179e14235bf070411114ab1fe95
Merge: 7330d53 8716164
Author: sunnavy <sunnavy at bestpractical.com>
Date:   Mon Nov 27 15:11:33 2023 -0500

    Merge branch 'produce-correct-oracle-query-hints'


-----------------------------------------------------------------------

Summary of changes:
 Changes                   |  3 +++
 META.yml                  |  2 +-
 README                    |  4 +++-
 lib/DBIx/SearchBuilder.pm | 11 ++++++++---
 t/01searches.t            | 12 +++++++++++-
 5 files changed, 26 insertions(+), 6 deletions(-)


hooks/post-receive
-- 
dbix-searchbuilder


More information about the Bps-public-commit mailing list