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