Commit | Line | Data |
38e48163 |
1 | 2005-04-16 by mst |
2 | - set_from_related should take undef |
3 | - ResultSource objects caching ->resultset causes interesting problems |
4 | - find why XSUB dumper kills schema in Catalyst (may be Pg only?) |
5 | |
bad808ba |
6 | 2006-03-25 by mst |
bad808ba |
7 | - find a way to un-wantarray search without breaking compat |
bad808ba |
8 | - delay relationship setup if done via ->load_classes |
9 | - double-sided relationships |
bad808ba |
10 | - make short form of class specifier in relationships work |
2b7a4025 |
11 | |
2b7a4025 |
12 | 2006-03-18 by bluefeet |
13 | - Support table locking. |
14 | |
133dd22a |
15 | 2006-03-21 by bluefeet |
16 | - When subclassing a dbic class make it so you don't have to do |
17 | __PACKAGE__->table(__PACKAGE__->table()); for the result set to |
18 | return the correct object type. |
19 | |
8ae30bcf |
20 | 2006-05-25 by mst (TODOed by bluefeet) |
21 | Add the search attributes "limit" and "rows_per_page". |
22 | limit: work as expected just like offset does |
23 | rows_per_page: only be used if you used the page attr or called $rs->page |
24 | rows: modify to be an alias that gets used to populate either as appropriate, |
25 | if you haven't specified one of the others |
7d9ac7ce |
26 | |
ec052c52 |
27 | 2008-10-30 by ribasushi |
ec052c52 |
28 | - Rewrite the test suite to rely on $schema->deploy, allowing for seamless |
29 | testing of various RDBMS using the same tests |
ec052c52 |
30 | - Automatically infer quote_char/name_sep from $schema->storage |
31337730 |
31 | - Recursive update() (all code seems to be already available) |