X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass.pm;h=3b715967adc33792bc620d879602c3ffaa373027;hb=0ac0af6c62637a5fdb06ecfb8ba4b60f93bf9d75;hp=1036b53a926c0ee210fc76d7d4a4ab75bc7015b2;hpb=2e4b6d78ee21dd4d4008470fe990f47e00e80c5c;p=dbsrgits%2FDBIx-Class.git diff --git a/lib/DBIx/Class.pm b/lib/DBIx/Class.pm index 1036b53..3b71596 100644 --- a/lib/DBIx/Class.pm +++ b/lib/DBIx/Class.pm @@ -11,7 +11,6 @@ use DBIx::Class::Optional::Dependencies; use vars qw($VERSION); use base qw/DBIx::Class::Componentised Class::Accessor::Grouped/; use DBIx::Class::StartupCheck; -use Try::Tiny; sub mk_classdata { shift->mk_classaccessor(@_); @@ -28,7 +27,7 @@ sub component_base_class { 'DBIx::Class' } # Always remember to do all digits for the version even if they're 0 # i.e. first release of 0.XX *must* be 0.XX000. This avoids fBSD ports # brain damage and presumably various other packaging systems too -$VERSION = '0.08121_01'; +$VERSION = '0.08124'; $VERSION = eval $VERSION if $VERSION =~ /_/; # numify for warning-free dev releases @@ -43,14 +42,11 @@ sub MODIFY_CODE_ATTRIBUTES { sub _attr_cache { my $self = shift; my $cache = $self->can('__attr_cache') ? $self->__attr_cache : {}; - my $rest; - my $exception; - try { - $rest = $self->next::method; - } catch { - $exception = 1; + + return { + %$cache, + %{ $self->maybe::next::method || {} }, }; - return $exception ? $cache : { %$cache, %$rest }; } 1; @@ -65,16 +61,20 @@ The community can be found via: =over -=item * IRC: L +=item * IRC: irc.perl.org#dbix-class + +=for html +(click for instant chatroom login) =item * Mailing list: L =item * RT Bug Tracker: L -=item * SVNWeb: L +=item * gitweb: L -=item * SVN: L +=item * git: L + +=item * twitter L =back @@ -229,12 +229,18 @@ abraxxa: Alexander Hartmaier aherzog: Adam Herzog +Alexander Keusch + +amiri: Amiri Barksdale + amoore: Andrew Moore andyg: Andy Grundman ank: Andres Kievsky +arc: Aaron Crane + arcanez: Justin Hunter ash: Ash Berlin @@ -283,10 +289,14 @@ gphat: Cory G Watson groditi: Guillermo Roditi +Haarg: Graham Knop + hobbs: Andrew Rodland ilmari: Dagfinn Ilmari MannsEker +initself: Mike Baas + jasonmay: Jason May jesper: Jesper Krogh @@ -343,10 +353,16 @@ phaylon: Robert Sedlacek plu: Johannes Plunien +Possum: Daniel LeWarne + quicksilver: Jules Bean rafl: Florian Ragwitz +rainboxx: Matthias Dietrich + +rbo: Robert Bohne + rbuels: Robert Buels rdj: Ryan D Johnson @@ -391,9 +407,9 @@ willert: Sebastian Willert wreis: Wallace Reis -zamolxes: Bogdan Lucaciu +yrlnry: Mark Jason Dominus -Possum: Daniel LeWarne +zamolxes: Bogdan Lucaciu =head1 COPYRIGHT