find_related now does search_related->find
[dbsrgits/DBIx-Class.git] / Changes
1 Revision history for DBIx::Class
2
3         - added GROUP BY and DISTINCT support
4         - hacked around SQL::Abstract::Limit some more in DBIC::SQL::Abstract
5           (this may have fixed complex quoting)
6         - moved inflation to inflate_result in Row.pm
7         - added $rs->search_related
8         - split compose_namespace out of compose_connection in Schema
9
10 0.04999_01 2005-12-27 03:33:42
11         - search and related methods moved to ResultSet
12         - select and as added to ResultSet attrs
13         - added DBIx::Class::Table and TableInstance for table-per-class
14         - added DBIx::Class::ResultSetInstance which handles proxying
15           search etc. as a superclass of DBIx::Class::DB
16         - assorted test and code cleanup work
17
18 0.04001 2005-12-13 22:00:00
19         - Fix so set_inflated_column calls set_column
20         - Syntax errors in relationship classes are now reported
21         - Better error detection in set_primary_key and columns methods
22         - Documentation improvements
23         - Better transaction support with txn_* methods
24         - belongs_to now works when $cond is a string
25         - PK::Auto::Pg updated, only tries primary keys instead of all cols
26
27 0.04 2005-11-26
28         - Moved get_simple and set_simple into AccessorGroup
29         - Made 'new' die if given invalid columns
30         - Added has_column and column_info to Table.pm
31         - Refactored away from direct use of _columns and _primaries
32         - Switched from NEXT to Class::C3
33
34 0.03004
35         - Added an || '' to the CDBICompat stringify to avoid null warnings
36         - Updated name section for manual pods
37         
38 0.03003 2005-11-03 17:00:00
39         - POD fixes.
40         - Changed use to require in Relationship/Base to avoid import.
41
42 0.03002 2005-10-20 22:35:00
43         - Minor bugfix to new (Row.pm)
44         - Schema doesn't die if it can't load a class (Schema.pm)
45         - New UUID columns plugin (UUIDColumns.pm)
46         - Documentation improvements.
47
48 0.03001 2005-09-23 14:00:00
49         - Fixes to relationship helpers
50         - IMPORTANT: prefetch/schema combination bug fix
51
52 0.03    2005-09-19 19:35:00
53         - Paging support
54         - Join support on search
55         - Prefetch support on search
56
57 0.02    2005-08-12 18:00:00
58         - Test fixes.
59         - Performance improvements.
60         - Oracle primary key support.
61         - MS-SQL primary key support.
62         - SQL::Abstract::Limit integration for database-agnostic limiting.
63
64 0.01    2005-08-08 17:10:00
65         - initial release