Merge 'ordered_handle_updates' into 'DBIx-Class-current'
[dbsrgits/DBIx-Class.git] / Changes
1 Revision history for DBIx::Class
2
3         - add support to Ordered for multiple ordering columns
4         - mark DB.pm and compose_connection as deprecated
5         - switch tests to compose_namespace
6
7 0.07999_01 2006-10-05 21:00:00
8         - add connect_info option "disable_statement_caching"
9         - create insert_bulk using execute_array, populate uses it
10         - added DBIx::Class::Schema::load_namespaces, alternative to
11           load_classes
12         - added source_info method for source-level metadata (kinda like
13           column_info)
14         - Some of ::Storage::DBI's code/docs moved to ::Storage
15         - DBIx::Class::Schema::txn_do code moved to ::Storage
16         - Storage::DBI now uses exceptions instead of ->ping/->{Active} checks
17         - Storage exceptions are thrown via the schema class's throw_exception
18         - DBIx::Class::Schema::throw_exception's behavior can be modified via
19           ->exception_action
20         - columns_info_for is deprecated, and no longer runs automatically.
21           You can make it work like before via
22           __PACKAGE__->column_info_from_storage(1) for now
23         - Replaced DBIx::Class::AccessorGroup and Class::Data::Accessor with
24           Class::Accessor::Grouped. Only user noticible change is to 
25           table_class on ResultSourceProxy::Table (i.e. table objects in 
26           schemas) and, resultset_class and result_class in ResultSource. 
27           These accessors no longer automatically require the classes when
28           set.
29
30 0.07004
31         - fix find_related-based queries to correctly grep the unique key
32
33 0.07003 2006-11-16 11:52:00
34         - fix for rt.cpan.org #22740 (use $^X instead of hardcoded "perl")
35         - Tweaks to resultset to allow inflate_result to return an array
36         - Fix UTF8Columns to work under Perl <= 5.8.0
37         - Fix up new_result in ResultSet to avoid alias-related bugs
38         - Made new/update/find handle 'single' rel accessor correctly
39         - Fix NoBindVars to be safer and handle non-true bind values
40         - Don't blow up if columns_info_for returns useless results
41         - Documentation updates
42
43 0.07002 2006-09-14 21:17:32
44         - fix quote tests for recent versions of SQLite
45         - added reference implementation of Manual::Example
46         - backported column_info_from_storage accessor from -current, but
47         - fixed inflate_datetime.t tests/stringify under older Test::More
48         - minor fixes for many-to-many relationship helpers
49         - cleared up Relationship docs, and fixed some typos
50         - use ref instead of eval to check limit syntax (to avoid issues with
51           Devel::StackTrace)
52         - update ResultSet::_cond_for_update_delete to handle more complicated
53           queries
54         - bugfix to Oracle columns_info_for
55         - remove_columns now deletes columns from _columns
56
57 0.07001 2006-08-18 19:55:00
58         - add directory argument to deploy()
59         - support default aliases in many_to_many accessors.
60         - support for relationship attributes in many_to_many accessors.
61         - stop search_rs being destructive to attrs
62         - better error reporting when loading components
63         - UTF8Columns changed to use "utf8" instead of "Encode"
64         - restore automatic aliasing in ResultSet::find() on nonunique queries
65         - allow aliases in ResultSet::find() queries (in cases of relationships
66           with prefetch)
67         - pass $attrs to find from update_or_create so a specific key can be
68           provided
69         - remove anonymous blesses to avoid major speed hit on Fedora Core 5's
70           Perl and possibly others; for more information see:
71           https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=196836
72         - fix a pathological prefetch case
73         - table case fix for Oracle in columns_info_for
74         - stopped search_rs deleting attributes from passed hash
75
76 0.07000 2006-07-23 02:30:00
77         - supress warnings for possibly non-unique queries, since
78           _is_unique_query doesn't infer properly in all cases
79         - skip empty queries to eliminate spurious warnings on ->deploy
80         - fixups to ORDER BY, tweaks to deepen some copies in ResultSet
81         - fixup for RowNum limit syntax with functions
82
83 0.06999_07 2006-07-12 20:58:05
84         - fix issue with from attr copying introduced in last release
85
86 0.06999_06 2006-07-12 17:16:55
87         - documentation for new storage options, fix S::A::L hanging on to $dbh
88         - substantial refactor of search_related code to fix alias numbering
89         - don't generate partial unique keys in ResultSet::find() when a table
90           has more than one unique constraint which share a column and only one
91           is satisfied
92         - cleanup UTF8Columns and make more efficient
93         - rename DBIX_CLASS_STORAGE_DBI_DEBUG to DBIC_TRACE (with compat)
94         - rename _parent_rs to _parent_source in ResultSet
95         - new FAQ.pod!
96
97 0.06999_05 2006-07-04 14:40:01
98         - fix issue with incorrect $rs->{attrs}{alias}
99         - fix subclassing issue with source_name
100         - tweak quotes test to output text on failure
101         - fix Schema->txn_do to not fail as a classmethod
102
103 0.06999_04 2006-06-29 20:18:47
104         - disable cdbi-t/02-Film.t warning tests under AS perl
105         - fixups to MySQL tests (aka "work round mysql being retarded")
106         - compat tweaks for Storage debug logging
107
108 0.06999_03 2006-06-26 21:04:44
109         - various documentation improvements
110         - fixes to pass test suite on Windows
111         - rewrote and cleaned up SQL::Translator tests
112         - changed relationship helpers to only call ensure_class_loaded when the
113           join condition is inferred 
114         - rewrote many_to_many implementation, now provides helpers for adding
115           and deleting objects without dealing with the link table
116         - reworked InflateColumn implementation to lazily deflate where
117           possible; now handles passing an inflated object to new()
118         - changed join merging to not create a rel_2 alias when adding a join
119           that already exists in a parent resultset
120         - Storage::DBI::deployment_statements now calls ensure_connected
121           if it isn't passed a type 
122         - fixed Componentized::ensure_class_loaded
123         - InflateColumn::DateTime supports date as well as datetime
124         - split Storage::DBI::MSSQL into MSSQL and Sybase::MSSQL
125         - fixed wrong debugging hook call in Storage::DBI 
126         - set connect_info properly before setting any ->sql_maker things 
127
128 0.06999_02 2006-06-09 23:58:33
129         - Fixed up POD::Coverage tests, filled in some POD holes
130         - Added a warning for incorrect component order in load_components
131         - Fixed resultset bugs to do with related searches
132         - added code and tests for Componentized::ensure_class_found and
133           load_optional_class
134         - NoBindVars + Sybase + MSSQL stuff
135         - only rebless S::DBI if it is still S::DBI and not a subclass
136         - Added `use' statement for DBD::Pg in Storage::DBI::Pg
137         - stopped test relying on order of unordered search
138         - bugfix for join-types in nested joins using the from attribute
139         - obscure prefetch problem fixed
140         - tightened up deep search_related
141         - Fixed 'DBIx/Class/DB.pm did not return a true value' error
142         - Revert change to test for deprecated find usage and swallow warnings
143         - Slight wording change to new_related() POD
144         - new specific test for connect_info coderefs
145         - POD clarification and content bugfixing + a few code formatting fixes
146         - POD::Coverage additions
147         - fixed debugfh
148         - Fix column_info stomping
149
150 0.06999_01 2006-05-28 17:19:30
151         - add automatic naming of unique constraints
152         - marked DB.pm as deprecated and noted it will be removed by 1.0
153         - add ResultSetColumn
154         - refactor ResultSet code to resolve attrs as late as possible
155         - merge prefetch attrs into join attrs
156         - add +select and +as attributes to ResultSet
157         - added InflateColumn::DateTime component
158         - refactor debugging to allow for profiling using Storage::Statistics
159         - removed Data::UUID from deps, made other optionals required
160         - modified SQLT parser to skip dupe table names
161         - added remove_column(s) to ResultSource/ResultSourceProxy
162         - added add_column alias to ResultSourceProxy
163         - added source_name to ResultSource
164         - load_classes now uses source_name and sets it if necessary
165         - add update_or_create_related to Relationship::Base
166         - add find_or_new to ResultSet/ResultSetProxy and find_or_new_related
167           to Relationship::Base
168         - add accessors for unique constraint names and coulums to
169           ResultSource/ResultSourceProxy
170         - rework ResultSet::find() to search unique constraints
171         - CDBICompat: modify retrieve to fix column casing when ColumnCase is
172           loaded
173         - CDBICompat: override find_or_create to fix column casing when
174           ColumnCase is loaded
175         - reorganized and simplified tests
176         - added Ordered
177         - added the ability to set on_connect_do and the various sql_maker
178           options as part of Storage::DBI's connect_info.
179
180 0.06003 2006-05-19 15:37:30
181         - make find_or_create_related check defined() instead of truth
182         - don't unnecessarily fetch rels for cascade_update
183         - don't set_columns explicitly in update_or_create; instead use
184           update($hashref) so InflateColumn works
185         - fix for has_many prefetch with 0 related rows
186         - make limit error if rows => 0
187         - added memory cycle tests and a long-needed weaken call
188
189 0.06002 2006-04-20 00:42:41
190         - fix set_from_related to accept undef
191         - fix to Dumper-induced hash iteration bug
192         - fix to copy() with non-composed resultsource
193         - fix to ->search without args to clone rs but maintain cache
194         - grab $self->dbh once per function in Storage::DBI
195         - nuke ResultSource caching of ->resultset for consistency reasons
196         - fix for -and conditions when updating or deleting on a ResultSet
197
198 0.06001
199         - Added fix for quoting with single table
200         - Substantial fixes and improvements to deploy
201         - slice now uses search directly
202         - fixes for update() on resultset
203         - bugfix to Cursor to avoid error during DESTROY
204         - transaction DBI operations now in debug trace output
205
206 0.06000 2006-03-25 18:03:46
207         - Lots of documentation improvements
208         - Minor tweak to related_resultset to prevent it storing a searched rs
209         - Fixup to columns_info_for when database returns type(size)
210         - Made do_txn respect void context (on the off-chance somebody cares)
211         - Fix exception text for nonexistent key in ResultSet::find()
212
213 0.05999_04 2006-03-18 19:20:49
214         - Fix for delete on full-table resultsets
215         - Removed caching on count() and added _count for pager()
216         - ->connection does nothing if ->storage defined and no args
217           (and hence ->connect acts like ->clone under the same conditions)
218         - Storage::DBI throws better exception if no connect info
219         - columns_info_for made more robust / informative
220         - ithreads compat added, fork compat improved
221         - weaken result_source in all resultsets
222         - Make pg seq extractor less sensitive.
223
224 0.05999_03 2006-03-14 01:58:10
225         - has_many prefetch fixes
226         - deploy now adds drop statements before creates
227         - deploy outputs debugging statements if DBIX_CLASS_STORAGE_DBI_DEBUG
228             is set
229
230 0.05999_02 2006-03-10 13:31:37
231         - remove test dep on YAML
232         - additional speed tweaks for C3
233         - allow scalarefs passed to order_by to go straight through to SQL
234         - renamed insert_or_update to update_or_insert (with compat alias)
235         - hidden lots of packages from the PAUSE Indexer
236
237 0.05999_01 2006-03-09 18:31:44
238         - renamed cols attribute to columns (cols still supported)
239         - added has_column_loaded to Row
240         - Storage::DBI connect_info supports coderef returning dbh as 1st arg
241         - load_components() doesn't prepend base when comp. prefixed with +
242         - $schema->deploy
243         - HAVING support
244         - prefetch for has_many
245         - cache attr for resultsets
246         - PK::Auto::* no longer required since Storage::DBI::* handle auto-inc
247         - minor tweak to tests for join edge case
248         - added cascade_copy relationship attribute
249           (sponsored by Airspace Software, http://www.airspace.co.uk/)
250         - clean up set_from_related
251         - made copy() automatically null out auto-inc columns
252         - added txn_do() method to Schema, which allows a coderef to be
253           executed atomically
254
255 0.05007 2006-02-24 00:59:00
256         - tweak to Componentised for Class::C3 0.11
257         - fixes for auto-inc under MSSQL
258
259 0.05006 2006-02-17 15:32:40
260         - storage fix for fork() and workaround for Apache::DBI
261         - made update(\%hash) work on row as well as rs
262         - another fix for count with scalar group_by
263         - remove dependency on Module::Find in 40resultsetmanager.t (RT #17598)
264
265 0.05005 2006-02-13 21:24:51
266         - remove build dependency on version.pm
267
268 0.05004 2006-02-13 20:59:00
269         - allow specification of related columns via cols attr when primary
270           keys of the related table are not fetched
271         - fix count for group_by as scalar
272         - add horrific fix to make Oracle's retarded limit syntax work
273         - remove Carp require
274         - changed UUIDColumns to use new UUIDMaker classes for uuid creation
275         using whatever module may be available
276
277 0.05003 2006-02-08 17:50:20
278         - add component_class accessors and use them for *_class
279         - small fixes to Serialize and ResultSetManager
280         - rollback on disconnect, and disconnect on DESTROY
281
282 0.05002 2006-02-06 12:12:03
283         - Added recommends for Class::Inspector
284         - Added skip_all to t/40resultsetmanager.t if no Class::Inspector available
285
286 0.05001 2006-02-05 15:28:10
287         - debug output now prints NULL for undef params
288         - multi-step prefetch along the same rel (e.g. for trees) now works
289         - added multi-join (join => [ 'foo', 'foo' ]), aliases second to foo_2
290         - hack PK::Auto::Pg for "table" names referencing a schema
291         - find() with attributes works
292         - added experimental Serialize and ResultSetManager components
293         - added code attribute recording to DBIx::Class
294         - fix to find() for complex resultsets
295         - added of $storage->debugcb(sub { ... })
296         - added $source->resultset_attributes accessor
297         - added include_columns rs attr
298
299 0.05000 2006-02-01 16:48:30
300         - assorted doc fixes
301         - remove ObjectCache, not yet working in 0.05
302         - let many_to_many rels have attrs
303         - fix ID method in PK.pm to be saner for new internals
304         - fix t/30dbicplain.t to use ::Schema instead of
305           Catalyst::Model::DBIC::Plain
306
307 0.04999_06 2006-01-28 21:20:32
308         - fix Storage/DBI (tried to load deprecated ::Exception component)
309
310 0.04999_05 2006-01-28 20:13:52
311         - count will now work for grouped resultsets
312         - added accessor => option to column_info to specify accessor name
313         - added $schema->populate to load test data (similar to AR fixtures)
314         - removed cdbi-t dependencies, only run tests if installed
315         - Removed DBIx::Class::Exception
316         - unified throw_exception stuff, using Carp::Clan
317         - report query when sth generation fails.
318         - multi-step prefetch!
319         - inheritance fixes
320         - test tweaks
321
322 0.04999_04 2006-01-24 21:48:21
323         - more documentation improvements
324         - add columns_info_for for vendor-specific column info (Zbigniew Lukasiak)
325         - add SQL::Translator::Producer for DBIx::Class table classes (Jess Robinson)
326         - add unique constraint declaration (Daniel Westermann-Clark)
327         - add new update_or_create method (Daniel Westermann-Clark)
328         - rename ResultSetInstance class to ResultSetProxy, ResultSourceInstance
329           to ResultSourceProxy, and TableInstance to ResultSourceProxy::Table
330         - minor fixes to UUIDColumns
331         - add debugfh method and ENV magic for tracing SQL (Nigel Metheringham)
332
333 0.04999_03 2006-01-20 06:05:27
334         - imported Jess Robinson's SQL::Translator::Parser::DBIx::Class
335         - lots of internals cleanup to eliminate result_source_instance requirement
336         - added register_column and register_relationship class APIs
337         - made Storage::DBI use prepare_cached safely (thanks to Tim Bunce)
338         - many documentation improvements (thanks guys!)
339         - added ->connection, ->connect, ->register_source and ->clone schema methods
340         - Use croak instead of die for user errors.
341
342 0.04999_02 2006-01-14 07:17:35
343         - Schema is now self-contained; no requirement for co-operation
344         - add_relationship, relationships, relationship_info, has_relationship
345         - relationship handling on ResultSource
346         - all table handling now in Table.pm / ResultSource.pm
347         - added GROUP BY and DISTINCT support
348         - hacked around SQL::Abstract::Limit some more in DBIC::SQL::Abstract
349           (this may have fixed complex quoting)
350         - moved inflation to inflate_result in Row.pm
351         - added $rs->search_related
352         - split compose_namespace out of compose_connection in Schema
353         - ResultSet now handles find
354         - various *_related methods are now ->search_related->*
355         - added new_result to ResultSet
356
357 0.04999_01 2005-12-27 03:33:42
358         - search and related methods moved to ResultSet
359         - select and as added to ResultSet attrs
360         - added DBIx::Class::Table and TableInstance for table-per-class
361         - added DBIx::Class::ResultSetInstance which handles proxying
362           search etc. as a superclass of DBIx::Class::DB
363         - assorted test and code cleanup work
364
365 0.04001 2005-12-13 22:00:00
366         - Fix so set_inflated_column calls set_column
367         - Syntax errors in relationship classes are now reported
368         - Better error detection in set_primary_key and columns methods
369         - Documentation improvements
370         - Better transaction support with txn_* methods
371         - belongs_to now works when $cond is a string
372         - PK::Auto::Pg updated, only tries primary keys instead of all cols
373
374 0.04 2005-11-26
375         - Moved get_simple and set_simple into AccessorGroup
376         - Made 'new' die if given invalid columns
377         - Added has_column and column_info to Table.pm
378         - Refactored away from direct use of _columns and _primaries
379         - Switched from NEXT to Class::C3
380
381 0.03004
382         - Added an || '' to the CDBICompat stringify to avoid null warnings
383         - Updated name section for manual pods
384 0.03003 2005-11-03 17:00:00
385         - POD fixes.
386         - Changed use to require in Relationship/Base to avoid import.
387
388 0.03002 2005-10-20 22:35:00
389         - Minor bugfix to new (Row.pm)
390         - Schema doesn't die if it can't load a class (Schema.pm)
391         - New UUID columns plugin (UUIDColumns.pm)
392         - Documentation improvements.
393
394 0.03001 2005-09-23 14:00:00
395         - Fixes to relationship helpers
396         - IMPORTANT: prefetch/schema combination bug fix
397
398 0.03    2005-09-19 19:35:00
399         - Paging support
400         - Join support on search
401         - Prefetch support on search
402
403 0.02    2005-08-12 18:00:00
404         - Test fixes.
405         - Performance improvements.
406         - Oracle primary key support.
407         - MS-SQL primary key support.
408         - SQL::Abstract::Limit integration for database-agnostic limiting.
409
410 0.01    2005-08-08 17:10:00
411         - initial release