7b22990d9bb68c7d28aef9749072034e8bf800b1
[dbsrgits/DBIx-Class.git] / Changes
1 Revision history for DBIx::Class
2
3         - minor tweak to tests for join edge case
4         - added cascade_copy relationship attribute
5           (sponsored by Airspace Software, http://www.airspace.co.uk/)
6         - clean up set_from_related
7         - made copy() automatically null out auto-inc columns
8
9 0.05006 2006-02-17 15:32:40
10         - storage fix for fork() and workaround for Apache::DBI
11         - made update(\%hash) work on row as well as rs
12         - another fix for count with scalar group_by
13         - remove dependency on Module::Find in 40resultsetmanager.t (RT #17598)
14
15 0.05005 2006-02-13 21:24:51
16         - remove build dependency on version.pm
17
18 0.05004 2006-02-13 20:59:00
19         - allow specification of related columns via cols attr when primary 
20           keys of the related table are not fetched
21         - fix count for group_by as scalar
22         - add horrific fix to make Oracle's retarded limit syntax work
23         - remove Carp require
24
25 0.05003 2006-02-08 17:50:20
26         - add component_class accessors and use them for *_class
27         - small fixes to Serialize and ResultSetManager
28         - rollback on disconnect, and disconnect on DESTROY
29
30 0.05002 2006-02-06 12:12:03
31         - Added recommends for Class::Inspector
32         - Added skip_all to t/40resultsetmanager.t if no Class::Inspector available
33
34 0.05001 2006-02-05 15:28:10
35         - debug output now prints NULL for undef params
36         - multi-step prefetch along the same rel (e.g. for trees) now works
37         - added multi-join (join => [ 'foo', 'foo' ]), aliases second to foo_2
38         - hack PK::Auto::Pg for "table" names referencing a schema
39         - find() with attributes works
40         - added experimental Serialize and ResultSetManager components
41         - added code attribute recording to DBIx::Class
42         - fix to find() for complex resultsets
43         - added of $storage->debugcb(sub { ... })
44         - added $source->resultset_attributes accessor
45         - added include_columns rs attr
46
47 0.05000 2006-02-01 16:48:30
48         - assorted doc fixes
49         - remove ObjectCache, not yet working in 0.05
50         - let many_to_many rels have attrs
51         - fix ID method in PK.pm to be saner for new internals
52         - fix t/30dbicplain.t to use ::Schema instead of
53           Catalyst::Model::DBIC::Plain
54
55 0.04999_06 2006-01-28 21:20:32
56         - fix Storage/DBI (tried to load deprecated ::Exception component)
57
58 0.04999_05 2006-01-28 20:13:52
59         - count will now work for grouped resultsets
60         - added accessor => option to column_info to specify accessor name
61         - added $schema->populate to load test data (similar to AR fixtures)
62         - removed cdbi-t dependencies, only run tests if installed
63         - Removed DBIx::Class::Exception
64         - unified throw_exception stuff, using Carp::Clan
65         - report query when sth generation fails.
66         - multi-step prefetch!
67         - inheritance fixes
68         - test tweaks
69
70 0.04999_04 2006-01-24 21:48:21
71         - more documentation improvements
72         - add columns_info_for for vendor-specific column info (Zbigniew Lukasiak)
73         - add SQL::Translator::Producer for DBIx::Class table classes (Jess Robinson)
74         - add unique constraint declaration (Daniel Westermann-Clark)
75         - add new update_or_create method (Daniel Westermann-Clark)
76         - rename ResultSetInstance class to ResultSetProxy, ResultSourceInstance
77           to ResultSourceProxy, and TableInstance to ResultSourceProxy::Table
78         - minor fixes to UUIDColumns
79         - add debugfh method and ENV magic for tracing SQL (Nigel Metheringham)
80
81 0.04999_03 2006-01-20 06:05:27
82         - imported Jess Robinson's SQL::Translator::Parser::DBIx::Class
83         - lots of internals cleanup to eliminate result_source_instance requirement
84         - added register_column and register_relationship class APIs
85         - made Storage::DBI use prepare_cached safely (thanks to Tim Bunce)
86         - many documentation improvements (thanks guys!)
87         - added ->connection, ->connect, ->register_source and ->clone schema methods
88         - Use croak instead of die for user errors.
89
90 0.04999_02 2006-01-14 07:17:35
91         - Schema is now self-contained; no requirement for co-operation
92         - add_relationship, relationships, relationship_info, has_relationship
93         - relationship handling on ResultSource
94         - all table handling now in Table.pm / ResultSource.pm
95         - added GROUP BY and DISTINCT support
96         - hacked around SQL::Abstract::Limit some more in DBIC::SQL::Abstract
97           (this may have fixed complex quoting)
98         - moved inflation to inflate_result in Row.pm
99         - added $rs->search_related
100         - split compose_namespace out of compose_connection in Schema
101         - ResultSet now handles find
102         - various *_related methods are now ->search_related->*
103         - added new_result to ResultSet
104
105 0.04999_01 2005-12-27 03:33:42
106         - search and related methods moved to ResultSet
107         - select and as added to ResultSet attrs
108         - added DBIx::Class::Table and TableInstance for table-per-class
109         - added DBIx::Class::ResultSetInstance which handles proxying
110           search etc. as a superclass of DBIx::Class::DB
111         - assorted test and code cleanup work
112
113 0.04001 2005-12-13 22:00:00
114         - Fix so set_inflated_column calls set_column
115         - Syntax errors in relationship classes are now reported
116         - Better error detection in set_primary_key and columns methods
117         - Documentation improvements
118         - Better transaction support with txn_* methods
119         - belongs_to now works when $cond is a string
120         - PK::Auto::Pg updated, only tries primary keys instead of all cols
121
122 0.04 2005-11-26
123         - Moved get_simple and set_simple into AccessorGroup
124         - Made 'new' die if given invalid columns
125         - Added has_column and column_info to Table.pm
126         - Refactored away from direct use of _columns and _primaries
127         - Switched from NEXT to Class::C3
128
129 0.03004
130         - Added an || '' to the CDBICompat stringify to avoid null warnings
131         - Updated name section for manual pods
132 0.03003 2005-11-03 17:00:00
133         - POD fixes.
134         - Changed use to require in Relationship/Base to avoid import.
135
136 0.03002 2005-10-20 22:35:00
137         - Minor bugfix to new (Row.pm)
138         - Schema doesn't die if it can't load a class (Schema.pm)
139         - New UUID columns plugin (UUIDColumns.pm)
140         - Documentation improvements.
141
142 0.03001 2005-09-23 14:00:00
143         - Fixes to relationship helpers
144         - IMPORTANT: prefetch/schema combination bug fix
145
146 0.03    2005-09-19 19:35:00
147         - Paging support
148         - Join support on search
149         - Prefetch support on search
150
151 0.02    2005-08-12 18:00:00
152         - Test fixes.
153         - Performance improvements.
154         - Oracle primary key support.
155         - MS-SQL primary key support.
156         - SQL::Abstract::Limit integration for database-agnostic limiting.
157
158 0.01    2005-08-08 17:10:00
159         - initial release