[Bps-public-commit] r19584 - DBIx-SearchBuilder/trunk

ruz at bestpractical.com ruz at bestpractical.com
Thu May 7 17:23:33 EDT 2009


Author: ruz
Date: Thu May  7 17:23:31 2009
New Revision: 19584

Modified:
   DBIx-SearchBuilder/trunk/   (props changed)
   DBIx-SearchBuilder/trunk/Changes
   DBIx-SearchBuilder/trunk/SearchBuilder.pm

Log:
 r19592 at Macintosh:  ruz | 2009-05-07 19:49:00 +0400
 * bump version - 1.55


Modified: DBIx-SearchBuilder/trunk/Changes
==============================================================================
--- DBIx-SearchBuilder/trunk/Changes	(original)
+++ DBIx-SearchBuilder/trunk/Changes	Thu May  7 17:23:31 2009
@@ -1,12 +1,20 @@
 Revision history for Perl extension DBIx::SearchBuilder.
 
-1.55
-    * Put test suite SQLite databases inside of tempdirs so they get garbage collected properly
-        Nov 30 Andreas Koenig [rt.cpan.org #41322] Cleaning up /tmp directory                                                  
+1.55 Thu May  7 19:44:47 MSD 2009
+
+* Put test suite SQLite databases inside of tempdirs so they get
+  garbage collected properly. Thanks to Andreas Koenig
+  [rt.cpan.org #41322]
+* Allow ->Join to pre-existing collection object
+* Imlement and test SB::Handle::Fields
+* Pg can not guaranty order in the following queries:
+  SELECT ... FROM (SELECT... ORDER BY ...)
+  we use them to build distinct sets with ordering by columns
+  in joined tables. Switched to group by instead of sub-selects.
 
 1.54 Wed Jul  9 09:34:25 EDT 2008
 
-  When aborting transactions, we need to flush our cache,
+* When aborting transactions, we need to flush our cache,
   because SQLite is reusing the primary id for later inserts and the cache
   can otherwise become inconsistent.
 

Modified: DBIx-SearchBuilder/trunk/SearchBuilder.pm
==============================================================================
--- DBIx-SearchBuilder/trunk/SearchBuilder.pm	(original)
+++ DBIx-SearchBuilder/trunk/SearchBuilder.pm	Thu May  7 17:23:31 2009
@@ -4,7 +4,7 @@
 use strict;
 use warnings;
 
-our $VERSION = "1.54";
+our $VERSION = "1.55";
 
 use Clone qw();
 use Encode qw();



More information about the Bps-public-commit mailing list