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