Fix to columns_info_for for type(size)
[dbsrgits/DBIx-Class.git] / Changes
CommitLineData
3b44ccc6 1Revision history for DBIx::Class
2
8fcf21b3 30.05999_05
4 - Fixup to columns_info_for when database returns type(size)
5
936332ea 60.05999_04
7ed3d6dc 7 - Fix for delete on full-table resultsets
936332ea 8 - Removed caching on count() and added _count for pager()
3ec067db 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
1346e22d 13 - ithreads compat added, fork compat improved
bcd26419 14 - weaken result_source in all resultsets
32da1042 15 - Make pg seq extractor less sensitive.
3b44ccc6 16
c42d8358 170.05999_03 2006-03-14 01:58:10
18 - has_many prefetch fixes
85dea9a9 19 - deploy now adds drop statements before creates
f109ee4a 20 - deploy outputs debugging statements if DBIX_CLASS_STORAGE_DBI_DEBUG
21 is set
85dea9a9 22
f109ee4a 230.05999_02 2006-03-10 13:31:37
e9100ff7 24 - remove test dep on YAML
25 - additional speed tweaks for C3
e535069e 26 - allow scalarefs passed to order_by to go straight through to SQL
9b465d00 27 - renamed insert_or_update to update_or_insert (with compat alias)
f43b2744 28 - hidden lots of packages from the PAUSE Indexer
561bd5f6 29
300.05999_01 2006-03-09 18:31:44
5e8b1b2a 31 - renamed cols attribute to columns (cols still supported)
32 - added has_column_loaded to Row
90ec6cad 33 - Storage::DBI connect_info supports coderef returning dbh as 1st arg
aa972396 34 - load_components() doesn't prepend base when comp. prefixed with +
074a366d 35 - $schema->deploy
36 - HAVING support
37 - prefetch for has_many
38 - PK::Auto::* no longer required since Storage::DBI::* handle auto-inc
0e35aa05 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
62cb84ec 44 - added txn_do() method to Schema, which allows a coderef to be
45 executed atomically
70ecd5a1 46
975c65b5 470.05007 2006-02-24 00:59:00
971c0085 48 - tweak to Componentised for Class::C3 0.11
49 - fixes for auto-inc under MSSQL
50
f8d97a01 510.05006 2006-02-17 15:32:40
52 - storage fix for fork() and workaround for Apache::DBI
fc27a867 53 - made update(\%hash) work on row as well as rs
d3231653 54 - another fix for count with scalar group_by
55 - remove dependency on Module::Find in 40resultsetmanager.t (RT #17598)
4834d8ac 56
d0bb3812 570.05005 2006-02-13 21:24:51
58 - remove build dependency on version.pm
59
dec2517f 600.05004 2006-02-13 20:59:00
d20bb28e 61 - allow specification of related columns via cols attr when primary
f3b05bad 62 keys of the related table are not fetched
63 - fix count for group_by as scalar
f66596f9 64 - add horrific fix to make Oracle's retarded limit syntax work
3b24f6ea 65 - remove Carp require
60283c2e 66 - changed UUIDColumns to use new UUIDMaker classes for uuid creation
67 using whatever module may be available
f66596f9 68
85b4a1c5 690.05003 2006-02-08 17:50:20
70 - add component_class accessors and use them for *_class
71 - small fixes to Serialize and ResultSetManager
85b4a1c5 72 - rollback on disconnect, and disconnect on DESTROY
85b4a1c5 73
cc6504dc 740.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
780.05001 2006-02-05 15:28:10
6ee299bf 79 - debug output now prints NULL for undef params
887ce227 80 - multi-step prefetch along the same rel (e.g. for trees) now works
489709af 81 - added multi-join (join => [ 'foo', 'foo' ]), aliases second to foo_2
5ec6bc2e 82 - hack PK::Auto::Pg for "table" names referencing a schema
83 - find() with attributes works
5ac6a044 84 - added experimental Serialize and ResultSetManager components
19345968 85 - added code attribute recording to DBIx::Class
5ac6a044 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
fc69fea6 910.05000 2006-02-01 16:48:30
92 - assorted doc fixes
602afcfa 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
132f3b89 96 - fix t/30dbicplain.t to use ::Schema instead of
97 Catalyst::Model::DBIC::Plain
cd67f809 98
7a1fe534 990.04999_06 2006-01-28 21:20:32
de5e2fe9 100 - fix Storage/DBI (tried to load deprecated ::Exception component)
101
1020.04999_05 2006-01-28 20:13:52
00018e9d 103 - count will now work for grouped resultsets
104 - added accessor => option to column_info to specify accessor name
a37a4697 105 - added $schema->populate to load test data (similar to AR fixtures)
5e8b1b2a 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.
a14d1055 110 - multi-step prefetch!
111 - inheritance fixes
112 - test tweaks
113
09aeebca 1140.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)
e46a66f2 120 - rename ResultSetInstance class to ResultSetProxy, ResultSourceInstance
121 to ResultSourceProxy, and TableInstance to ResultSourceProxy::Table
09aeebca 122 - minor fixes to UUIDColumns
6565b410 123 - add debugfh method and ENV magic for tracing SQL (Nigel Metheringham)
09aeebca 124
151fc9ad 1250.04999_03 2006-01-20 06:05:27
09aeebca 126 - imported Jess Robinson's SQL::Translator::Parser::DBIx::Class
127 - lots of internals cleanup to eliminate result_source_instance requirement
8bfc3d48 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!)
151fc9ad 131 - added ->connection, ->connect, ->register_source and ->clone schema methods
5e8b1b2a 132 - Use croak instead of die for user errors.
8bfc3d48 133
9ce9ec10 1340.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
475978db 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
fea3d045 145 - ResultSet now handles find
146 - various *_related methods are now ->search_related->*
147 - added new_result to ResultSet
475978db 148
82b1cd1f 1490.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
de5d1955 1570.04001 2005-12-13 22:00:00
47bd0267 158 - Fix so set_inflated_column calls set_column
de5d1955 159 - Syntax errors in relationship classes are now reported
c2074366 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
47bd0267 165
1660.04 2005-11-26
484c9dda 167 - Moved get_simple and set_simple into AccessorGroup
168 - Made 'new' die if given invalid columns
103647d5 169 - Added has_column and column_info to Table.pm
170 - Refactored away from direct use of _columns and _primaries
47bd0267 171 - Switched from NEXT to Class::C3
484c9dda 172
2441e56f 1730.03004
174 - Added an || '' to the CDBICompat stringify to avoid null warnings
5e8b1b2a 175 - Updated name section for manual pods
3b44ccc6 1760.03003 2005-11-03 17:00:00
177 - POD fixes.
178 - Changed use to require in Relationship/Base to avoid import.
179
1800.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
1860.03001 2005-09-23 14:00:00
187 - Fixes to relationship helpers
188 - IMPORTANT: prefetch/schema combination bug fix
189
1900.03 2005-09-19 19:35:00
191 - Paging support
192 - Join support on search
193 - Prefetch support on search
194
1950.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
2020.01 2005-08-08 17:10:00
203 - initial release