Revision history for DBIx::Class
+0.05006 2006-02-17 15:32:40
+ - storage fix for fork() and workaround for Apache::DBI
- made update(\%hash) work on row as well as rs
- another fix for count with scalar group_by
- remove dependency on Module::Find in 40resultsetmanager.t (RT #17598)
t/30dbicplain.t
t/40resultsetmanager.t
t/41orrible.t
+t/50fork.t
t/basicrels/01core.t
t/basicrels/04db.t
t/basicrels/05multipk.t
Brandon Black
+ Scotty Allen <scotty@scottyallen.com>
+
LICENSE
You may distribute this code under the same terms as Perl itself.
# 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.05005';
+$VERSION = '0.05006';
sub MODIFY_CODE_ATTRIBUTES {
my ($class,$code,@attrs) = @_;
no strict 'refs';
my $resultset_class = $self->_setup_resultset_class;
*{"$resultset_class\::$meth"} = $self->can($meth);
- undef *{"$self\::$meth"};
+ delete ${"${self}::"}{$meth};
}
}
}