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