2 - Refactor ResultSet::new to be less hairy
3 - we should move the setup of select, as, and from out of here
4 - these should be local rs attrs, not main attrs, and extra joins
5 provided on search should be merged
6 - find a way to un-wantarray search without breaking compat
7 - audit logging component
8 - delay relationship setup if done via ->load_classes
9 - double-sided relationships
11 - make short form of class specifier in relationships work
13 2006-01-31 by bluefeet
14 - Create a DBIx::Class::FilterColumn to replace inflate/deflate. This
15 component would provide a new syntax for filtering column update and
16 retrieval through a simple syntax. The syntax would be:
17 __PACKAGE__->add_columns(phone => { set=>sub{ ... }, get=>sub{ ... } });
18 We should still support the old inflate/deflate syntax, but this new
19 way should be recommended.
22 - Extract DBIC::SQL::Abstract into a separate module for CPAN
23 - Chop PK::Auto::Foo up to have PK::Auto refer to an appropriate
24 DBIx::Storage::DBI::Foo, which will be loaded on connect from Driver info?
25 - Add deploy method to Schema, which will create DB tables from Schema, via
28 2006-03-18 by bluefeet
29 - Support table locking.
31 2006-03-21 by bluefeet
32 - When subclassing a dbic class make it so you don't have to do
33 __PACKAGE__->table(__PACKAGE__->table()); for the result set to
34 return the correct object type.