summaryrefslogtreecommitdiff
path: root/databases/p5-DBIx-Class
diff options
context:
space:
mode:
authorwen <wen>2014-11-23 12:48:55 +0000
committerwen <wen>2014-11-23 12:48:55 +0000
commit34baa1d48446e05729c46daad7c3db16c4dd95c5 (patch)
tree7fca6455ee83e23039a9d35cf79ac8bf234e6269 /databases/p5-DBIx-Class
parent3c2bbd3e4f5ae01b0313c141ad960238f882a740 (diff)
downloadpkgsrc-34baa1d48446e05729c46daad7c3db16c4dd95c5.tar.gz
Update to 0.082810
Update DEPENDS Upstream changes: 0.082810 2014-10-25 13:58 (UTC) * Fixes - Fix incorrect collapsing-parser source being generated in the presence of unicode data among the collapse-points - Fix endless loop on BareSourcelessResultClass->throw_exception(...) * Misc - Depend on newer SQL::Abstract (fixing overly-aggressive parenthesis opener: RT#99503) - Depend on newer Moo, fixing some interoperability issues: http://lists.scsys.co.uk/pipermail/dbix-class/2014-October/011787.html 0.082801 2014-10-05 23:55 (UTC) * Known Issues - Passing large amounts of objects with stringification overload directly to DBIx::Class may result in strange action at a distance exceptions. More info (and a workaround description) can be found under "Note" at https://metacpan.org/pod/SQL::Abstract#is_plain_value - The relationship condition resolution fixes come with the side effect of returning more complete data, tripping up *some* users of an undocumented but widely used internal function. In particular https://rt.cpan.org/Ticket/Display.html?id=91375#txn-1407239 * Notable Changes and Deprecations - DBIC::FilterColumn now properly bypasses \'' and \[] literals, just like the rest of DBIC - DBIC::FilterColumn "from_storage" handler is now invoked on NULLs returned from storage - find() now throws an exception if some of the supplied values are managed by DBIC::FilterColumn (RT#95054) - Custom condition relationships are now invoked with a slightly different signature (existing coderefs will continue to work) - Add extra custom condition coderef attribute 'foreign_values' to allow for proper reverse-relationship-like behavior (i.e. $result->set_from_related($custom_rel, $foreign_result_object) - When in a transaction, DBIC::Ordered now seamlesly handles result objects that went out of sync with the storage (RT#96499) - CDBICompat::columns() now supports adding columns through supplied Class::DBI::Column instances (GH#52) - Deprecate { col1 => col2 } expressions in manual {from} structures (at some point of time manual {from} will be deprecated entirely) * Fixes - Fix Resultset delete/update affecting *THE ENTIRE TABLE* in cases of empty (due to conditions) resultsets with multi-column keys - Fix on_connect_* not always firing in some cases - a race condition existed between storage accessor setters and the determine_driver routines, triggering a connection before the set-cycle is finished - Fix collapse being ignored on single-origin selection (RT#95658) - Fix incorrect behavior on custom result_class inflators altering the amount of returned results - Fix failure to detect stable order criteria when in iterator mode of a has_many prefetch off a search_related chain - Prevent erroneous database hit when accessing prefetched related resultsets with no rows - Proper exceptions on malformed relationship conditions (RT#92234) - Fix incorrect handling of custom relationship conditions returning SQLA literal expressions - Fix long standing bug with populate() missing data from hashrefs with different keysets: http://is.gd/2011_dbic_populate_gotcha (RT#92723) - Fix multi-value literal populate not working with simplified bind specifications - Massively improve the implied resultset condition parsing - now all applicable conditions within a resultset should be properly picked up by create() and populate() - Ensure definitive condition extractor handles bizarre corner cases without bombing out (RT#93244) - Fix set_column on non-native (+columns) selections (RT#86685) - Fix set_inflated_column incorrectly handling \[] literals (GH#44) - Ensure that setting a column to a literal invariably marks it dirty - Fix copy() not working correctly with extra selections present - Work around exception objects with broken string overloading in one additional codepath (missed in 0.08260) - Fix more inconsistencies of the quote_names attribute propagating to SQL::Translator (partially RT#87731) - Fix SQLT constraint naming when DBIC table names are fully qualified - Ensure ::Schema::Versioned connects only once by reusing the main connection (GH#57) - Fix inability to handle multiple consecutive transactions with savepoints on DBD::SQLite < 1.39 - Fix CDBICompat to match Class::DBI behavior handling non-result blessed has_a (implicit deflate via stringification and inflate via blind new) (GH#51) * Misc - Ensure source metadata calls always take place on the result source instance registered with the caller - IFF DBIC_TRACE output defaults to STDERR we now silence the possible wide-char warnings if the trace happens to contain unicode
Diffstat (limited to 'databases/p5-DBIx-Class')
-rw-r--r--databases/p5-DBIx-Class/Makefile12
-rw-r--r--databases/p5-DBIx-Class/distinfo8
2 files changed, 10 insertions, 10 deletions
diff --git a/databases/p5-DBIx-Class/Makefile b/databases/p5-DBIx-Class/Makefile
index 88138c559d3..16489c99ad9 100644
--- a/databases/p5-DBIx-Class/Makefile
+++ b/databases/p5-DBIx-Class/Makefile
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.32 2014/05/29 23:35:27 wiz Exp $
+# $NetBSD: Makefile,v 1.33 2014/11/23 12:48:55 wen Exp $
-DISTNAME= DBIx-Class-0.08270
+DISTNAME= DBIx-Class-0.082810
PKGNAME= p5-${DISTNAME}
-PKGREVISION= 1
CATEGORIES= databases perl5
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=DBIx/}
@@ -11,7 +10,7 @@ HOMEPAGE= http://search.cpan.org/dist/DBIx-Class/
COMMENT= Extensible and flexible object <-> relational mapper
LICENSE= ${PERL5_LICENSE}
-DEPENDS+= p5-Class-Accessor-Grouped>=0.10010:../../devel/p5-Class-Accessor-Grouped
+DEPENDS+= p5-Class-Accessor-Grouped>=0.10012:../../devel/p5-Class-Accessor-Grouped
DEPENDS+= p5-Class-C3-Componentised>=1.0009:../../devel/p5-Class-C3-Componentised
DEPENDS+= p5-Class-Inspector>=1.24:../../devel/p5-Class-Inspector
DEPENDS+= p5-Class-Method-Modifiers>=1.06:../../devel/p5-Class-Method-Modifiers
@@ -24,9 +23,9 @@ DEPENDS+= p5-Devel-GlobalDestruction>=0.09:../../devel/p5-Devel-GlobalDestructio
DEPENDS+= p5-Hash-Merge>=0.12:../../devel/p5-Hash-Merge
DEPENDS+= p5-MRO-Compat>=0.12:../../devel/p5-MRO-Compat
DEPENDS+= p5-Module-Find>=0.07:../../devel/p5-Module-Find
-DEPENDS+= p5-Moo>=1.000006:../../devel/p5-Moo
+DEPENDS+= p5-Moo>=1.006001:../../devel/p5-Moo
DEPENDS+= p5-Path-Class>=0.18:../../devel/p5-Path-Class
-DEPENDS+= p5-SQL-Abstract>=1.77:../../databases/p5-SQL-Abstract
+DEPENDS+= p5-SQL-Abstract>=1.81:../../databases/p5-SQL-Abstract
DEPENDS+= p5-SQL-Abstract-Limit>=0.13:../../databases/p5-SQL-Abstract-Limit
DEPENDS+= p5-Scope-Guard>=0.03:../../devel/p5-Scope-Guard
DEPENDS+= p5-Sub-Name>=0.04:../../devel/p5-Sub-Name
@@ -40,6 +39,7 @@ BUILD_DEPENDS+= p5-Test-Exception-[0-9]*:../../devel/p5-Test-Exception
BUILD_DEPENDS+= {perl>=5.10.1,p5-Test-Simple>=0.92}:../../devel/p5-Test-Simple
BUILD_DEPENDS+= p5-Test-Warn>=0.21:../../devel/p5-Test-Warn
BUILD_DEPENDS+= p5-Class-DBI>=0:../../databases/p5-Class-DBI
+BUILD_DEPENDS+= p5-SQL-Translator>=0.11018:../../databases/p5-SQL-Translator
REPLACE_PERL= script/dbicadmin
diff --git a/databases/p5-DBIx-Class/distinfo b/databases/p5-DBIx-Class/distinfo
index 8e23aba7085..ed89b65da0c 100644
--- a/databases/p5-DBIx-Class/distinfo
+++ b/databases/p5-DBIx-Class/distinfo
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.23 2014/02/05 12:00:08 wen Exp $
+$NetBSD: distinfo,v 1.24 2014/11/23 12:48:55 wen Exp $
-SHA1 (DBIx-Class-0.08270.tar.gz) = dfe29b59acbadaaa0ae811596303c54a176250b8
-RMD160 (DBIx-Class-0.08270.tar.gz) = 80a708a40e0a3e09f3d40f2fa87cbd6dda4c0687
-Size (DBIx-Class-0.08270.tar.gz) = 808377 bytes
+SHA1 (DBIx-Class-0.082810.tar.gz) = c1afb84923a96c91e4cfc7193fd5cd95147d5a82
+RMD160 (DBIx-Class-0.082810.tar.gz) = dc43a450f6781f922d8b567e1631d40e947e6012
+Size (DBIx-Class-0.082810.tar.gz) = 845736 bytes