Merge 'complex_join_rels' into 'trunk'
[dbsrgits/DBIx-Class.git] / Changes
1 Revision history for DBIx::Class
2
3         - Added search_related_rs method to ResultSet
4         - add a make_column_dirty method to Row to force updates
5         - throw a clear exception when user tries multi-has_many prefetch
6         - SQLT parser prefixes index names with ${table}_idx_ to avoid clashes
7         - mark ResultSetManager as deprecated and undocument it
8         - pod fix (RT #32988)
9         - add Test::Exception to test requirements (RT #34256)
10         - make ash's build_requires/META.yml fixes work better
11         - is_deferable support on relations used by the SQL::Translator
12           parser
13         - Refactored DBIx::Class::Schema::Versioned
14         - Syntax errors from resultset components are now reported correctly
15         - sqltargs respected correctly in deploy et al.
16         - Added support for savepoints, and using them automatically in
17           nested transactions if auto_savepoint is set in connect_info.
18         - Changed naming scheme for constraints and keys in the sqlt parser;
19           names should now be consistent and collision-free.
20         - Improve handling of explicit key attr in ResultSet::find
21         - Add warnings for non-unique ResultSet::find queries
22         - Changed Storage::DBI::Replication to Storage::DBI::Replicated, fixed
23           some problems using this with versioned databases, added some docs
24         - By default now deploy/diff et al. will ignore constraint and index 
25           names
26         - Add ResultSet::_is_deterministic_value, make new_result filter the
27           values passed to new to drop values that would generate invalid SQL.
28
29 0.08010 2008-03-01 10:30
30         - Fix t/94versioning.t so it passes with latest SQL::Translator
31
32 0.08009 2008-01-20 13:30
33         - Made search_rs smarter about when to preserve the cache to fix
34           mm prefetch usage
35         - Added Storage::DBI subclass for MSSQL over ODBC. 
36         - Added freeze, thaw and dclone methods to Schema so that thawed
37           objects will get re-attached to the schema.
38         - Moved dbicadmin to JSON::Any wrapped JSON.pm for a sane API
39           (also fixes RT #32393)
40         - introduced DBIx::Class::set_inflated_columns
41         - DBIx::Class::Row::copy uses set_inflated_columns
42
43 0.08008 2007-11-16 14:30:00
44         - Fixed join merging bug (test from Zby)
45         - When adding relationships, it will throw an exception if you get the
46           foreign and self parts the wrong way round in the condition
47         - ResultSetColumn::func() now returns all results if called in list
48           context; this makes things like func('DISTINCT') work as expected
49         - Many-to-many relationships now warn if the utility methods would 
50           clash
51         - InflateColumn::DateTime now accepts an extra parameter of timezone
52           to set timezone on the DT object (thanks Sergio Salvi)
53         - Added sqlt_deploy_hook to result classes so that indexes can be 
54           added.
55         - Added startup checks to warn loudly if we appear to be running on 
56           RedHat systems from perl-5.8.8-10 and up that have the bless/overload
57           patch applied (badly) which causes 2x -> 100x performance penalty.
58           (Jon Schutz)
59         - ResultSource::reverse_relationship_info can distinguish between 
60           sources using the same table
61         - Row::insert will now not fall over if passed duplicate related objects
62         - Row::copy will not fall over if you have two relationships to the 
63           same source with a unique constraint on it
64
65 0.08007 2007-09-04 19:36:00
66         - patch for Oracle datetime inflation (abram@arin.net)
67         - added on_disconnect_do
68         - on_connect_do and on_disconnect_do take coderefs and arrayrefs
69
70 0.08006 2007-08-12 15:12:00
71         - Move to using Class::C3::Componentised
72         - Remove warn statement from DBIx::Class::Row
73
74 0.08005 2007-08-06 
75         - add timestamp fix re rt.cpan 26978 - no test yet but change
76           clearly should cause no regressions
77         - provide alias for related_resultset via local() so it's set
78           correctly at resultset construction time (fixes RestrictWithObject)
79         - fixes bind params in debug statements
80           (original test from abraxxa)
81         - fixed storage->connected fork bug
82           (test and fix from Radu Greab)
83         - add 1; to AccessorGroup.pm for stuff that still uses it
84         - refactor Statistics to create debugging filehandle to fix bug with
85           closed STDERR, update docs and modify Versioned to use Statistics
86           (original fix from diz)
87
88 0.08004 2007-08-06 19:00:00
89         - fix storage connect code to not trigger bug via auto-viv 
90           (test from aherzog)
91         - fixup cursor_class to be an 'inherited' attr for per-package defaults
92         - add default_resultset_attributes entry to Schema
93         - optimisation in DBI::Cursor to check software_limit before falling
94           back to base Cursor->all
95         - fix bug with create_multi not inserting non-storage objects
96           (test and fix from davinchi)
97         - DBIx::Class::AccessorGroup made empty subclass of
98           Class::Accessor::Grouped
99         - fixed an ugly bug regarding $dbh->{AutoCommit} and transactions
100         - ensure_class_loaded handles non-classnames better.
101         - non-destructive hashref handling for connect_info options
102         - count no longer returns negative values after slice
103           (report and test from JOHANL)
104         - rebless before building datetime_parser
105           (patch from mattlaw / Matt Lawrence)
106
107 0.08003 2007-07-14 18:01:00
108         - improved populate bulk_insert mode
109         - fixed up multi_create to be more intelligent about PK<->PK rels
110         - fix many-many rels to not use set_columns
111         - Unmarked deploy as experimental since it isn't anymore
112         - Removed Cwd dep since it's not required and causes problems
113           with debian packaging
114         - Patch to fix ? in data for NoBindVars (from Tom Hukins)
115         - Restored mk_classaccessor method for compatibility
116         - Fixed group_by problem with oracle limit syntax
117         - Fixed attr merging problem
118         - Fixed $rs->get_column w/prefetch  problem
119
120 0.08002 2007-06-20 06:10:00
121         - add scope guard to Row::insert to ensure rollback gets called
122         - more heuristics in Row::insert to try and get insert order right
123         - eliminate vestigial code in PK::Auto
124         - more expressive DBI errors
125         - soften errors during deploy
126         - ensure_connected before txn_begin to catch stomping on transaction
127           depth
128         - new method "rethrow" for our exception objects
129
130 0.08001 2007-06-17 21:21:02
131         - Cleaned up on_connect handling for versioned
132         - removed DateTime use line from multi_create test
133         - hid DBIx::ContextualFetch::st override in CDBICompat
134
135 0.08000 2007-06-17 18:06:12
136         - Fixed DBIC_TRACE debug filehandles to set ->autoflush(1)
137         - Fixed circular dbh<->storage in HandleError with weakref
138
139 0.07999_06 2007-06-13 04:45:00
140         - tweaked Row.pm to make last_insert_id take multiple column names
141         - Fixed DBIC::Storage::DBI::Cursor::DESTROY bug that was
142           messing up exception handling
143         - added exception objects to eliminate stacktrace/Carp::Clan
144           output redundancy
145         - setting $ENV{DBIC_TRACE} defaults stacktrace on.
146         - added stacktrace option to Schema, makes throw_exception
147           use "confess"
148         - make database handles use throw_exception by default
149         - make database handles supplied by a coderef use our
150           standard HandleError/RaiseError/PrintError
151         - add "unsafe" connect_info option to suppress our setting
152           of HandleError/RaiseError/PrintError
153         - removed several redundant evals whose sole purpose was to
154           provide extra debugging info
155         - fixed page-within-page bug (reported by nilsonsfj)
156         - fixed rare bug when database is disconnected inbetween
157           "$dbh->prepare_cached" and "$sth->execute"
158
159 0.07999_05 2007-06-07 23:00:00
160         - Made source_name rw in ResultSource
161         - Fixed up SQL::Translator test/runtime dependencies
162         - Fixed t/60core.t in the absence of DateTime::Format::MySQL
163         - Test cleanup and doc note (ribasushi)
164
165 0.07999_04 2007-06-01 14:04:00
166         - pulled in Replication storage from branch and marked EXPERIMENTAL
167         - fixup to ensure join always LEFT after first LEFT join depthwise
168         - converted the vendor tests to use schema objects intead of schema
169           classes, made cleaned more reliable with END blocks
170         - versioning support via DBIx::Class::Schema::Versioned
171         - find/next now return undef rather than () on fail from Bernhard Graf
172         - rewritten collapse_result to fix prefetch
173         - moved populate to resultset
174         - added support for creation of related rows via insert and populate
175         - transaction support more robust now in the face of varying AutoCommit
176           and manual txn_begin usage
177         - unbreak back-compat for Row/ResultSet->new_result
178         - Added Oracle/WhereJoins.pm for Oracle >= 8 to support
179           Oracle <= 9i, and provide Oracle with a better join method for
180           later versions.  (I use the term better loosely.)
181         - The SQL::T parser class now respects a relationship attribute of
182           is_foreign_key_constrain to allow explicit control over wether or
183           not a foreign constraint is needed
184         - resultset_class/result_class now (again) auto loads the specified
185           class; requires Class::Accessor::Grouped 0.05002+
186         - added get_inflated_columns to Row
187         - %colinfo accessor and inflate_column now work together
188         - More documentation updates
189         - Error messages from ->deploy made more informative
190         - connect_info will now always return the arguments it was
191           originally given
192         - A few small efficiency improvements for load_classes
193           and compose_namespace
194
195 0.07006 2007-04-17 23:18:00
196         - Lots of documentation updates
197         - deploy now takes an optional 'source_names' parameter (dec)
198         - Quoting for for columns_info_for
199         - RT#25683 fixed (multiple open sths on DBD::Sybase)
200         - CDBI compat infers has_many from has_a (Schwern)
201         - Fix ddl_filename transformation (Carl Vincent)
202
203 0.07999_02 2007-01-25 20:11:00
204         - add support for binding BYTEA and similar parameters (w/Pg impl)
205         - add support to Ordered for multiple ordering columns
206         - mark DB.pm and compose_connection as deprecated
207         - switch tests to compose_namespace
208         - ResultClass::HashRefInflator added
209         - Changed row and rs objects to not have direct handle to a source,
210           instead a (schema,source_name) tuple of type ResultSourceHandle
211
212 0.07005 2007-01-10 18:36:00
213         - fixup changes file
214         - remove erroneous .orig files - oops
215
216 0.07004 2007-01-09 21:52:00
217         - fix find_related-based queries to correctly grep the unique key
218         - fix InflateColumn to inflate/deflate all refs but scalar refs
219
220 0.07003 2006-11-16 11:52:00
221         - fix for rt.cpan.org #22740 (use $^X instead of hardcoded "perl")
222         - Tweaks to resultset to allow inflate_result to return an array
223         - Fix UTF8Columns to work under Perl <= 5.8.0
224         - Fix up new_result in ResultSet to avoid alias-related bugs
225         - Made new/update/find handle 'single' rel accessor correctly
226         - Fix NoBindVars to be safer and handle non-true bind values
227         - Don't blow up if columns_info_for returns useless results
228         - Documentation updates
229
230 0.07999_01 2006-10-05 21:00:00
231         - add connect_info option "disable_statement_caching"
232         - create insert_bulk using execute_array, populate uses it
233         - added DBIx::Class::Schema::load_namespaces, alternative to
234           load_classes
235         - added source_info method for source-level metadata (kinda like
236           column_info)
237         - Some of ::Storage::DBI's code/docs moved to ::Storage
238         - DBIx::Class::Schema::txn_do code moved to ::Storage
239         - Storage::DBI now uses exceptions instead of ->ping/->{Active} checks
240         - Storage exceptions are thrown via the schema class's throw_exception
241         - DBIx::Class::Schema::throw_exception's behavior can be modified via
242           ->exception_action
243         - columns_info_for is deprecated, and no longer runs automatically.
244           You can make it work like before via
245           __PACKAGE__->column_info_from_storage(1) for now
246         - Replaced DBIx::Class::AccessorGroup and Class::Data::Accessor with
247           Class::Accessor::Grouped. Only user noticible change is to
248           table_class on ResultSourceProxy::Table (i.e. table objects in
249           schemas) and, resultset_class and result_class in ResultSource.
250           These accessors no longer automatically require the classes when
251           set.
252
253 0.07002 2006-09-14 21:17:32
254         - fix quote tests for recent versions of SQLite
255         - added reference implementation of Manual::Example
256         - backported column_info_from_storage accessor from -current, but
257         - fixed inflate_datetime.t tests/stringify under older Test::More
258         - minor fixes for many-to-many relationship helpers
259         - cleared up Relationship docs, and fixed some typos
260         - use ref instead of eval to check limit syntax (to avoid issues with
261           Devel::StackTrace)
262         - update ResultSet::_cond_for_update_delete to handle more complicated
263           queries
264         - bugfix to Oracle columns_info_for
265         - remove_columns now deletes columns from _columns
266
267 0.07001 2006-08-18 19:55:00
268         - add directory argument to deploy()
269         - support default aliases in many_to_many accessors.
270         - support for relationship attributes in many_to_many accessors.
271         - stop search_rs being destructive to attrs
272         - better error reporting when loading components
273         - UTF8Columns changed to use "utf8" instead of "Encode"
274         - restore automatic aliasing in ResultSet::find() on nonunique queries
275         - allow aliases in ResultSet::find() queries (in cases of relationships
276           with prefetch)
277         - pass $attrs to find from update_or_create so a specific key can be
278           provided
279         - remove anonymous blesses to avoid major speed hit on Fedora Core 5's
280           Perl and possibly others; for more information see:
281           https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=196836
282         - fix a pathological prefetch case
283         - table case fix for Oracle in columns_info_for
284         - stopped search_rs deleting attributes from passed hash
285
286 0.07000 2006-07-23 02:30:00
287         - supress warnings for possibly non-unique queries, since
288           _is_unique_query doesn't infer properly in all cases
289         - skip empty queries to eliminate spurious warnings on ->deploy
290         - fixups to ORDER BY, tweaks to deepen some copies in ResultSet
291         - fixup for RowNum limit syntax with functions
292
293 0.06999_07 2006-07-12 20:58:05
294         - fix issue with from attr copying introduced in last release
295
296 0.06999_06 2006-07-12 17:16:55
297         - documentation for new storage options, fix S::A::L hanging on to $dbh
298         - substantial refactor of search_related code to fix alias numbering
299         - don't generate partial unique keys in ResultSet::find() when a table
300           has more than one unique constraint which share a column and only one
301           is satisfied
302         - cleanup UTF8Columns and make more efficient
303         - rename DBIX_CLASS_STORAGE_DBI_DEBUG to DBIC_TRACE (with compat)
304         - rename _parent_rs to _parent_source in ResultSet
305         - new FAQ.pod!
306
307 0.06999_05 2006-07-04 14:40:01
308         - fix issue with incorrect $rs->{attrs}{alias}
309         - fix subclassing issue with source_name
310         - tweak quotes test to output text on failure
311         - fix Schema->txn_do to not fail as a classmethod
312
313 0.06999_04 2006-06-29 20:18:47
314         - disable cdbi-t/02-Film.t warning tests under AS perl
315         - fixups to MySQL tests (aka "work round mysql being retarded")
316         - compat tweaks for Storage debug logging
317
318 0.06999_03 2006-06-26 21:04:44
319         - various documentation improvements
320         - fixes to pass test suite on Windows
321         - rewrote and cleaned up SQL::Translator tests
322         - changed relationship helpers to only call ensure_class_loaded when the
323           join condition is inferred
324         - rewrote many_to_many implementation, now provides helpers for adding
325           and deleting objects without dealing with the link table
326         - reworked InflateColumn implementation to lazily deflate where
327           possible; now handles passing an inflated object to new()
328         - changed join merging to not create a rel_2 alias when adding a join
329           that already exists in a parent resultset
330         - Storage::DBI::deployment_statements now calls ensure_connected
331           if it isn't passed a type
332         - fixed Componentized::ensure_class_loaded
333         - InflateColumn::DateTime supports date as well as datetime
334         - split Storage::DBI::MSSQL into MSSQL and Sybase::MSSQL
335         - fixed wrong debugging hook call in Storage::DBI
336         - set connect_info properly before setting any ->sql_maker things
337
338 0.06999_02 2006-06-09 23:58:33
339         - Fixed up POD::Coverage tests, filled in some POD holes
340         - Added a warning for incorrect component order in load_components
341         - Fixed resultset bugs to do with related searches
342         - added code and tests for Componentized::ensure_class_found and
343           load_optional_class
344         - NoBindVars + Sybase + MSSQL stuff
345         - only rebless S::DBI if it is still S::DBI and not a subclass
346         - Added `use' statement for DBD::Pg in Storage::DBI::Pg
347         - stopped test relying on order of unordered search
348         - bugfix for join-types in nested joins using the from attribute
349         - obscure prefetch problem fixed
350         - tightened up deep search_related
351         - Fixed 'DBIx/Class/DB.pm did not return a true value' error
352         - Revert change to test for deprecated find usage and swallow warnings
353         - Slight wording change to new_related() POD
354         - new specific test for connect_info coderefs
355         - POD clarification and content bugfixing + a few code formatting fixes
356         - POD::Coverage additions
357         - fixed debugfh
358         - Fix column_info stomping
359
360 0.06999_01 2006-05-28 17:19:30
361         - add automatic naming of unique constraints
362         - marked DB.pm as deprecated and noted it will be removed by 1.0
363         - add ResultSetColumn
364         - refactor ResultSet code to resolve attrs as late as possible
365         - merge prefetch attrs into join attrs
366         - add +select and +as attributes to ResultSet
367         - added InflateColumn::DateTime component
368         - refactor debugging to allow for profiling using Storage::Statistics
369         - removed Data::UUID from deps, made other optionals required
370         - modified SQLT parser to skip dupe table names
371         - added remove_column(s) to ResultSource/ResultSourceProxy
372         - added add_column alias to ResultSourceProxy
373         - added source_name to ResultSource
374         - load_classes now uses source_name and sets it if necessary
375         - add update_or_create_related to Relationship::Base
376         - add find_or_new to ResultSet/ResultSetProxy and find_or_new_related
377           to Relationship::Base
378         - add accessors for unique constraint names and coulums to
379           ResultSource/ResultSourceProxy
380         - rework ResultSet::find() to search unique constraints
381         - CDBICompat: modify retrieve to fix column casing when ColumnCase is
382           loaded
383         - CDBICompat: override find_or_create to fix column casing when
384           ColumnCase is loaded
385         - reorganized and simplified tests
386         - added Ordered
387         - added the ability to set on_connect_do and the various sql_maker
388           options as part of Storage::DBI's connect_info.
389
390 0.06003 2006-05-19 15:37:30
391         - make find_or_create_related check defined() instead of truth
392         - don't unnecessarily fetch rels for cascade_update
393         - don't set_columns explicitly in update_or_create; instead use
394           update($hashref) so InflateColumn works
395         - fix for has_many prefetch with 0 related rows
396         - make limit error if rows => 0
397         - added memory cycle tests and a long-needed weaken call
398
399 0.06002 2006-04-20 00:42:41
400         - fix set_from_related to accept undef
401         - fix to Dumper-induced hash iteration bug
402         - fix to copy() with non-composed resultsource
403         - fix to ->search without args to clone rs but maintain cache
404         - grab $self->dbh once per function in Storage::DBI
405         - nuke ResultSource caching of ->resultset for consistency reasons
406         - fix for -and conditions when updating or deleting on a ResultSet
407
408 0.06001
409         - Added fix for quoting with single table
410         - Substantial fixes and improvements to deploy
411         - slice now uses search directly
412         - fixes for update() on resultset
413         - bugfix to Cursor to avoid error during DESTROY
414         - transaction DBI operations now in debug trace output
415
416 0.06000 2006-03-25 18:03:46
417         - Lots of documentation improvements
418         - Minor tweak to related_resultset to prevent it storing a searched rs
419         - Fixup to columns_info_for when database returns type(size)
420         - Made do_txn respect void context (on the off-chance somebody cares)
421         - Fix exception text for nonexistent key in ResultSet::find()
422
423 0.05999_04 2006-03-18 19:20:49
424         - Fix for delete on full-table resultsets
425         - Removed caching on count() and added _count for pager()
426         - ->connection does nothing if ->storage defined and no args
427           (and hence ->connect acts like ->clone under the same conditions)
428         - Storage::DBI throws better exception if no connect info
429         - columns_info_for made more robust / informative
430         - ithreads compat added, fork compat improved
431         - weaken result_source in all resultsets
432         - Make pg seq extractor less sensitive.
433
434 0.05999_03 2006-03-14 01:58:10
435         - has_many prefetch fixes
436         - deploy now adds drop statements before creates
437         - deploy outputs debugging statements if DBIX_CLASS_STORAGE_DBI_DEBUG
438             is set
439
440 0.05999_02 2006-03-10 13:31:37
441         - remove test dep on YAML
442         - additional speed tweaks for C3
443         - allow scalarefs passed to order_by to go straight through to SQL
444         - renamed insert_or_update to update_or_insert (with compat alias)
445         - hidden lots of packages from the PAUSE Indexer
446
447 0.05999_01 2006-03-09 18:31:44
448         - renamed cols attribute to columns (cols still supported)
449         - added has_column_loaded to Row
450         - Storage::DBI connect_info supports coderef returning dbh as 1st arg
451         - load_components() doesn't prepend base when comp. prefixed with +
452         - $schema->deploy
453         - HAVING support
454         - prefetch for has_many
455         - cache attr for resultsets
456         - PK::Auto::* no longer required since Storage::DBI::* handle auto-inc
457         - minor tweak to tests for join edge case
458         - added cascade_copy relationship attribute
459           (sponsored by Airspace Software, http://www.airspace.co.uk/)
460         - clean up set_from_related
461         - made copy() automatically null out auto-inc columns
462         - added txn_do() method to Schema, which allows a coderef to be
463           executed atomically
464
465 0.05007 2006-02-24 00:59:00
466         - tweak to Componentised for Class::C3 0.11
467         - fixes for auto-inc under MSSQL
468
469 0.05006 2006-02-17 15:32:40
470         - storage fix for fork() and workaround for Apache::DBI
471         - made update(\%hash) work on row as well as rs
472         - another fix for count with scalar group_by
473         - remove dependency on Module::Find in 40resultsetmanager.t (RT #17598)
474
475 0.05005 2006-02-13 21:24:51
476         - remove build dependency on version.pm
477
478 0.05004 2006-02-13 20:59:00
479         - allow specification of related columns via cols attr when primary
480           keys of the related table are not fetched
481         - fix count for group_by as scalar
482         - add horrific fix to make Oracle's retarded limit syntax work
483         - remove Carp require
484         - changed UUIDColumns to use new UUIDMaker classes for uuid creation
485         using whatever module may be available
486
487 0.05003 2006-02-08 17:50:20
488         - add component_class accessors and use them for *_class
489         - small fixes to Serialize and ResultSetManager
490         - rollback on disconnect, and disconnect on DESTROY
491
492 0.05002 2006-02-06 12:12:03
493         - Added recommends for Class::Inspector
494         - Added skip_all to t/40resultsetmanager.t if no Class::Inspector
495         available
496
497 0.05001 2006-02-05 15:28:10
498         - debug output now prints NULL for undef params
499         - multi-step prefetch along the same rel (e.g. for trees) now works
500         - added multi-join (join => [ 'foo', 'foo' ]), aliases second to foo_2
501         - hack PK::Auto::Pg for "table" names referencing a schema
502         - find() with attributes works
503         - added experimental Serialize and ResultSetManager components
504         - added code attribute recording to DBIx::Class
505         - fix to find() for complex resultsets
506         - added of $storage->debugcb(sub { ... })
507         - added $source->resultset_attributes accessor
508         - added include_columns rs attr
509
510 0.05000 2006-02-01 16:48:30
511         - assorted doc fixes
512         - remove ObjectCache, not yet working in 0.05
513         - let many_to_many rels have attrs
514         - fix ID method in PK.pm to be saner for new internals
515         - fix t/30dbicplain.t to use ::Schema instead of
516           Catalyst::Model::DBIC::Plain
517
518 0.04999_06 2006-01-28 21:20:32
519         - fix Storage/DBI (tried to load deprecated ::Exception component)
520
521 0.04999_05 2006-01-28 20:13:52
522         - count will now work for grouped resultsets
523         - added accessor => option to column_info to specify accessor name
524         - added $schema->populate to load test data (similar to AR fixtures)
525         - removed cdbi-t dependencies, only run tests if installed
526         - Removed DBIx::Class::Exception
527         - unified throw_exception stuff, using Carp::Clan
528         - report query when sth generation fails.
529         - multi-step prefetch!
530         - inheritance fixes
531         - test tweaks
532
533 0.04999_04 2006-01-24 21:48:21
534         - more documentation improvements
535         - add columns_info_for for vendor-specific column info (Zbigniew
536         Lukasiak)
537         - add SQL::Translator::Producer for DBIx::Class table classes (Jess
538         Robinson)
539         - add unique constraint declaration (Daniel Westermann-Clark)
540         - add new update_or_create method (Daniel Westermann-Clark)
541         - rename ResultSetInstance class to ResultSetProxy, ResultSourceInstance
542           to ResultSourceProxy, and TableInstance to ResultSourceProxy::Table
543         - minor fixes to UUIDColumns
544         - add debugfh method and ENV magic for tracing SQL (Nigel Metheringham)
545
546 0.04999_03 2006-01-20 06:05:27
547         - imported Jess Robinson's SQL::Translator::Parser::DBIx::Class
548         - lots of internals cleanup to eliminate result_source_instance
549         requirement
550         - added register_column and register_relationship class APIs
551         - made Storage::DBI use prepare_cached safely (thanks to Tim Bunce)
552         - many documentation improvements (thanks guys!)
553         - added ->connection, ->connect, ->register_source and ->clone schema
554         methods
555         - Use croak instead of die for user errors.
556
557 0.04999_02 2006-01-14 07:17:35
558         - Schema is now self-contained; no requirement for co-operation
559         - add_relationship, relationships, relationship_info, has_relationship
560         - relationship handling on ResultSource
561         - all table handling now in Table.pm / ResultSource.pm
562         - added GROUP BY and DISTINCT support
563         - hacked around SQL::Abstract::Limit some more in DBIC::SQL::Abstract
564           (this may have fixed complex quoting)
565         - moved inflation to inflate_result in Row.pm
566         - added $rs->search_related
567         - split compose_namespace out of compose_connection in Schema
568         - ResultSet now handles find
569         - various *_related methods are now ->search_related->*
570         - added new_result to ResultSet
571
572 0.04999_01 2005-12-27 03:33:42
573         - search and related methods moved to ResultSet
574         - select and as added to ResultSet attrs
575         - added DBIx::Class::Table and TableInstance for table-per-class
576         - added DBIx::Class::ResultSetInstance which handles proxying
577           search etc. as a superclass of DBIx::Class::DB
578         - assorted test and code cleanup work
579
580 0.04001 2005-12-13 22:00:00
581         - Fix so set_inflated_column calls set_column
582         - Syntax errors in relationship classes are now reported
583         - Better error detection in set_primary_key and columns methods
584         - Documentation improvements
585         - Better transaction support with txn_* methods
586         - belongs_to now works when $cond is a string
587         - PK::Auto::Pg updated, only tries primary keys instead of all cols
588
589 0.04 2005-11-26
590         - Moved get_simple and set_simple into AccessorGroup
591         - Made 'new' die if given invalid columns
592         - Added has_column and column_info to Table.pm
593         - Refactored away from direct use of _columns and _primaries
594         - Switched from NEXT to Class::C3
595
596 0.03004
597         - Added an || '' to the CDBICompat stringify to avoid null warnings
598         - Updated name section for manual pods
599 0.03003 2005-11-03 17:00:00
600         - POD fixes.
601         - Changed use to require in Relationship/Base to avoid import.
602
603 0.03002 2005-10-20 22:35:00
604         - Minor bugfix to new (Row.pm)
605         - Schema doesn't die if it can't load a class (Schema.pm)
606         - New UUID columns plugin (UUIDColumns.pm)
607         - Documentation improvements.
608
609 0.03001 2005-09-23 14:00:00
610         - Fixes to relationship helpers
611         - IMPORTANT: prefetch/schema combination bug fix
612
613 0.03    2005-09-19 19:35:00
614         - Paging support
615         - Join support on search
616         - Prefetch support on search
617
618 0.02    2005-08-12 18:00:00
619         - Test fixes.
620         - Performance improvements.
621         - Oracle primary key support.
622         - MS-SQL primary key support.
623         - SQL::Abstract::Limit integration for database-agnostic limiting.
624
625 0.01    2005-08-08 17:10:00
626         - initial release
627