Revision history for Perl extension DBIx::Class::Schema::Loader
+0.04002 Tue Jul 24, 2007
+ - rescan method now returns the actual list of new tables
+ loaded (previously, the return value wasn't taking
+ constraint/exclude into account, even though the meat
+ of the operation was).
+ - Hid the Oracle module so that search.cpan.org will stop
+ ignoring this package, temporary fix until perms are
+ sorted out
- Fix Win32 test skip counts (RT #27715, Alexandr Ciornii)
- Fix a small output quoting bug (RT #28073, Tokuhiro Matsuno)
# 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
-our $VERSION = '0.04001';
+our $VERSION = '0.04002';
__PACKAGE__->mk_classaccessor('_loader_args' => {});
__PACKAGE__->mk_classaccessors(qw/dump_to_dir _loader_invoked _loader/);
use Digest::MD5 qw//;
require DBIx::Class;
-our $VERSION = '0.04001';
+our $VERSION = '0.04002';
__PACKAGE__->mk_ro_accessors(qw/
schema
}
}
- $self->_load_tables(@created);
+ my $loaded = $self->_load_tables(@created);
- return map { $self->monikers->{$_} } @created;
+ return map { $self->monikers->{$_} } @$loaded;
}
sub _load_tables {
# Drop temporary cache
delete $self->{_cache};
- 1;
+ return \@tables;
}
sub _get_dump_filename {
use Carp::Clan qw/^DBIx::Class/;
use UNIVERSAL::require;
-our $VERSION = '0.04001';
+our $VERSION = '0.04002';
=head1 NAME
use Carp::Clan qw/^DBIx::Class/;
use Class::C3;
-our $VERSION = '0.04001';
+our $VERSION = '0.04002';
=head1 NAME
-package DBIx::Class::Schema::Loader::DBI::Oracle;
+package # hide from pause/cpan for now, as there's a permissions
+ # issue and it's screwing the rest of the package
+ DBIx::Class::Schema::Loader::DBI::Oracle;
use strict;
use warnings;
use Carp::Clan qw/^DBIx::Class/;
use Class::C3;
-our $VERSION = '0.04001';
+our $VERSION = '0.04002';
=head1 NAME
use Carp::Clan qw/^DBIx::Class/;
use Class::C3;
-our $VERSION = '0.04001';
+our $VERSION = '0.04002';
=head1 NAME
use Text::Balanced qw( extract_bracketed );
use Class::C3;
-our $VERSION = '0.04001';
+our $VERSION = '0.04002';
=head1 NAME
package DBIx::Class::Schema::Loader::DBI::Writing;
use strict;
-our $VERSION = '0.04001';
+our $VERSION = '0.04002';
# Empty. POD only.
use Carp::Clan qw/^DBIx::Class/;
use Class::C3;
-our $VERSION = '0.04001';
+our $VERSION = '0.04002';
=head1 NAME
use Carp::Clan qw/^DBIx::Class/;
use Lingua::EN::Inflect::Number ();
-our $VERSION = '0.04001';
+our $VERSION = '0.04002';
=head1 NAME