From: Matt S Trout Date: Tue, 27 Dec 2005 03:48:20 +0000 (+0000) Subject: Changes updated. 0.04999_01 away X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=82b1cd1fcde80e16498081033a256ccf89f32cd4;p=dbsrgits%2FDBIx-Class-Historic.git Changes updated. 0.04999_01 away --- diff --git a/Changes b/Changes index 7320d9a..5bdd226 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,13 @@ Revision history for DBIx::Class +0.04999_01 2005-12-27 03:33:42 + - search and related methods moved to ResultSet + - select and as added to ResultSet attrs + - added DBIx::Class::Table and TableInstance for table-per-class + - added DBIx::Class::ResultSetInstance which handles proxying + search etc. as a superclass of DBIx::Class::DB + - assorted test and code cleanup work + 0.04001 2005-12-13 22:00:00 - Fix so set_inflated_column calls set_column - Syntax errors in relationship classes are now reported diff --git a/MANIFEST b/MANIFEST index 879a99f..425afd4 100644 --- a/MANIFEST +++ b/MANIFEST @@ -54,13 +54,16 @@ lib/DBIx/Class/Relationship/HasMany.pm lib/DBIx/Class/Relationship/HasOne.pm lib/DBIx/Class/Relationship/ProxyMethods.pm lib/DBIx/Class/ResultSet.pm +lib/DBIx/Class/ResultSetInstance.pm lib/DBIx/Class/Row.pm lib/DBIx/Class/Schema.pm lib/DBIx/Class/Storage/DBI.pm lib/DBIx/Class/Storage/DBI/Cursor.pm lib/DBIx/Class/Table.pm +lib/DBIx/Class/TableInstance.pm lib/DBIx/Class/Test/SQLite.pm lib/DBIx/Class/UUIDColumns.pm +lib/DBIx/Class/Validation.pm Makefile.PL MANIFEST This list of files META.yml @@ -94,7 +97,6 @@ t/cdbi-t/02-Film.t t/cdbi-t/03-subclassing.t t/cdbi-t/04-lazy.t t/cdbi-t/06-hasa.t -t/cdbi-t/08-inheritcols.t t/cdbi-t/09-has_many.t t/cdbi-t/11-triggers.t t/cdbi-t/12-filter.t diff --git a/lib/DBIx/Class/ResultSet.pm b/lib/DBIx/Class/ResultSet.pm index f2fdcdc..9c615d7 100644 --- a/lib/DBIx/Class/ResultSet.pm +++ b/lib/DBIx/Class/ResultSet.pm @@ -69,7 +69,6 @@ sub new { } my $new = { source => $source, - result_class => $source->result_class, cond => $attrs->{where}, from => $attrs->{from}, count => undef,