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