X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass.pm;h=e5d9d8508fcf8aaa233600edc14a63c5353de8d8;hb=726c8f65ef37b47aad62e29a306f64528a00f65d;hp=dc42f38f8535f22242e64c8ae2443517555f1dcb;hpb=4e0a89e400d865458081bc5af9e0eedf349f60de;p=dbsrgits%2FDBIx-Class.git diff --git a/lib/DBIx/Class.pm b/lib/DBIx/Class.pm index dc42f38..e5d9d85 100644 --- a/lib/DBIx/Class.pm +++ b/lib/DBIx/Class.pm @@ -3,15 +3,34 @@ package DBIx::Class; use strict; use warnings; -use MRO::Compat; +BEGIN { + if ($] < 5.009_005) { + require MRO::Compat; + *DBIx::Class::_ENV_::OLD_MRO = sub () { 1 }; + } + else { + require mro; + *DBIx::Class::_ENV_::OLD_MRO = sub () { 0 }; + } + + # ::Runmode would only be loaded by DBICTest, which in turn implies t/ + *DBIx::Class::_ENV_::DBICTEST = eval { DBICTest::RunMode->is_author } + ? sub () { 1 } + : sub () { 0 } + ; +} + use mro 'c3'; use DBIx::Class::Optional::Dependencies; use vars qw($VERSION); -use base qw/DBIx::Class::Componentised Class::Accessor::Grouped/; +use base qw/DBIx::Class::Componentised DBIx::Class::AccessorGroup/; use DBIx::Class::StartupCheck; +__PACKAGE__->mk_group_accessors(inherited => '_skip_namespace_frames'); +__PACKAGE__->_skip_namespace_frames('^DBIx::Class|^SQL::Abstract|^Try::Tiny'); + sub mk_classdata { shift->mk_classaccessor(@_); } @@ -27,7 +46,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.08126'; +$VERSION = '0.08127'; $VERSION = eval $VERSION if $VERSION =~ /_/; # numify for warning-free dev releases @@ -266,6 +285,8 @@ brunov: Bruno Vecchi caelum: Rafael Kitover +caldrin: Maik Hentsche + castaway: Jess Robinson claco: Christopher H. Laco @@ -296,6 +317,8 @@ goraxe: Gordon Irving gphat: Cory G Watson +Grant Street Group L + groditi: Guillermo Roditi Haarg: Graham Knop @@ -306,6 +329,8 @@ ilmari: Dagfinn Ilmari MannsEker initself: Mike Baas +jawnsy: Jonathan Yu + jasonmay: Jason May jesper: Jesper Krogh @@ -334,8 +359,12 @@ marcus: Marcus Ramberg mattlaw: Matt Lawrence +mattp: Matt Phillips + michaelr: Michael Reddick +milki: Jonathan Chu + ned: Neil de Carteret nigel: Nigel Metheringham @@ -386,6 +415,8 @@ rjbs: Ricardo Signes robkinyon: Rob Kinyon +Robert Olson + Roman: Roman Filippov Sadrak: Felix Antonius Wilhelm Ostmann @@ -406,6 +437,8 @@ sszabo: Stephan Szabo talexb: Alex Beamish +tamias: Ronald J Kimball + teejay : Aaron Trevena Todd Lipcon