X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass.pm;h=e6cc6a7e8b59c6eea30f05f346f1f977b9e7d6c5;hb=f165eda8a5bb8140f9b40d78089d5db3d8edf572;hp=4139212bf5555b050ec4caca1eb9f5b8cdd6be95;hpb=5c9cada3a82f2e9b745fed877fcc20e155e44993;p=dbsrgits%2FDBIx-Class.git diff --git a/lib/DBIx/Class.pm b/lib/DBIx/Class.pm index 4139212..e6cc6a7 100644 --- a/lib/DBIx/Class.pm +++ b/lib/DBIx/Class.pm @@ -3,7 +3,17 @@ 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 }; + } +} + use mro 'c3'; use DBIx::Class::Optional::Dependencies; @@ -27,7 +37,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.08123_02'; +$VERSION = '0.08127'; $VERSION = eval $VERSION if $VERSION =~ /_/; # numify for warning-free dev releases @@ -61,6 +71,8 @@ The community can be found via: =over +=item * Web Site: L + =item * IRC: irc.perl.org#dbix-class =for html @@ -114,7 +126,7 @@ MyDB/Schema/Result/CD.pm: __PACKAGE__->table('cd'); __PACKAGE__->add_columns(qw/ cdid artistid title year /); __PACKAGE__->set_primary_key('cdid'); - __PACKAGE__->belongs_to(artist => 'MyDB::Schema::Artist', 'artistid'); + __PACKAGE__->belongs_to(artist => 'MyDB::Schema::Result::Artist', 'artistid'); 1; @@ -195,7 +207,8 @@ resultset is used as an iterator it only fetches rows off the statement handle as requested in order to minimise memory usage. It has auto-increment support for SQLite, MySQL, PostgreSQL, Oracle, SQL Server and DB2 and is known to be used in production on at least the first four, and is fork- -and thread-safe out of the box (although your DBD may not be). +and thread-safe out of the box (although +L). This project is still under rapid development, so large new features may be marked EXPERIMENTAL - such APIs are still usable but may have edge bugs. @@ -231,6 +244,8 @@ aherzog: Adam Herzog Alexander Keusch +alnewkirk: Al Newkirk + amiri: Amiri Barksdale amoore: Andrew Moore @@ -251,6 +266,8 @@ blblack: Brandon L. Black bluefeet: Aran Deltac +bphillips: Brian Phillips + boghead: Bryan Beeley bricas: Brian Cassidy @@ -259,6 +276,8 @@ brunov: Bruno Vecchi caelum: Rafael Kitover +caldrin: Maik Hentsche + castaway: Jess Robinson claco: Christopher H. Laco @@ -281,6 +300,8 @@ dwc: Daniel Westermann-Clark dyfrgi: Michael Leuchtenburg +freetime: Bill Moseley + frew: Arthur Axel "fREW" Schmidt goraxe: Gordon Irving @@ -295,6 +316,10 @@ hobbs: Andrew Rodland ilmari: Dagfinn Ilmari MannsEker +initself: Mike Baas + +jawnsy: Jonathan Yu + jasonmay: Jason May jesper: Jesper Krogh @@ -311,16 +336,24 @@ jon: Jon Schutz jshirley: J. Shirley +kaare: Kaare Rasmussen + konobi: Scott McWhirter +littlesavage: Alexey Illarionov + lukes: Luke Saunders marcus: Marcus Ramberg mattlaw: Matt Lawrence +mattp: Matt Phillips + michaelr: Michael Reddick +milki: Jonathan Chu + ned: Neil de Carteret nigel: Nigel Metheringham @@ -373,6 +406,8 @@ robkinyon: Rob Kinyon Roman: Roman Filippov +Sadrak: Felix Antonius Wilhelm Ostmann + sc_: Just Another Perl Hacker scotty: Scotty Allen @@ -383,8 +418,14 @@ solomon: Jared Johnson spb: Stephen Bennett +Squeeks + sszabo: Stephan Szabo +talexb: Alex Beamish + +tamias: Ronald J Kimball + teejay : Aaron Trevena Todd Lipcon