Merge 'trunk' into 'pri_key_refactor'
[dbsrgits/DBIx-Class.git] / Changes
1 Revision history for DBIx::Class
2
3         - Make sure possibly overwritten deployment_statements methods in
4           schemas get called on $schema->deploy
5         - Fix count() with group_by aliased-function resultsets
6
7 0.08119 2010-02-15 09:36:00 (UTC)
8         - Add $rs->is_ordered to test for existing order_by on a resultset
9         - Add as_subselect_rs to DBIC::ResultSet from
10           DBIC::Helper::ResultSet::VirtualView::as_virtual_view
11         - Refactor dbicadmin adding DDL manipulation capabilities
12         - New optional dependency manager to aid extension writers
13         - Depend on newest bugfixed Moose
14         - Make resultset chaining consistent wrt selection specification
15         - Storage::DBI::Replicated cleanup
16         - Fix autoinc PKs without an autoinc flag on Sybase ASA
17
18 0.08118 2010-02-08 11:53:00 (UTC)
19         - Fix a bug causing UTF8 columns not to be decoded (RT#54395)
20         - Fix bug in One->Many->One prefetch-collapse handling (RT#54039)
21         - Cleanup handling of relationship accessor types
22
23 0.08117 2010-02-05 17:10:00 (UTC)
24         - Perl 5.8.1 is now the minimum supported version
25         - Massive optimization of the join resolution code - now joins
26           will be removed from the resulting SQL if DBIC can prove they
27           are not referenced by anything
28         - Subqueries no longer marked experimental
29         - Support for Informix RDBMS (limit/offset and auto-inc columns)
30         - Support for Sybase SQLAnywhere, both native and via ODBC
31         - might_have/has_one now warn if applied calling class's column
32           has is_nullable set to true.
33         - Fixed regression in deploy() with a {sources} table limit applied
34           (RT#52812)
35         - Views without a view_definition will throw an exception when
36           parsed by SQL::Translator::Parser::DBIx::Class
37         - Stop the SQLT parser from auto-adding indexes identical to the
38           Primary Key
39         - InflateColumn::DateTime refactoring to allow fine grained method
40           overloads
41         - Fix ResultSetColumn improperly selecting more than the requested
42           column when +columns/+select is present
43         - Fix failure when update/delete of resultsets with complex WHERE
44           SQLA structures
45         - Fix regression in context sensitiveness of deployment_statements
46         - Fix regression resulting in overcomplicated query on
47           search_related from prefetching resultsets
48         - Fix regression on all-null returning searches (properly switch
49           LEFT JOIN to JOIN in order to distinguish between both cases)
50         - Fix regression in groupedresultset count() used on strict-mode
51           MySQL connections
52         - Better isolation of RNO-limited queries from the rest of a
53           prefetching resultset
54         - New MSSQL specific resultset attribute to allow hacky ordered
55           subquery support
56         - Fix nasty schema/dbhandle leak due to SQL::Translator
57         - Initial implementation of a mechanism for Schema::Version to
58           apply multiple step upgrades
59         - Fix regression on externally supplied $dbh with AutoCommit=0
60         - FAQ "Custom methods in Result classes"
61         - Cookbook POD fix for add_drop_table instead of add_drop_tables
62         - Schema POD improvement for dclone
63
64 0.08115 2009-12-10 09:02:00 (CST)
65         - Real limit/offset support for MSSQL server (via Row_Number)
66         - Fix distinct => 1 with non-selecting order_by (the columns
67           in order_by also need to be aded to the resulting group_by)
68         - Do not attempt to deploy FK constraints pointing to a View
69         - Fix count/objects from search_related on limited resultset
70         - Stop propagating distinct => 1 over search_related chains
71         - Make sure populate() inherits the resultset conditions just
72           like create() does
73         - Make get_inflated_columns behave identically to get_columns
74           wrt +select/+as (RT#46953)
75         - Fix problems with scalarrefs under InflateColumn (RT#51559)
76         - Throw exception on delete/update of PK-less resultsets
77         - Refactored Sybase storage driver into a central ::DBI::Sybase
78           dispatcher, and a sybase-specific ::DBI::Sybase::ASE
79         - Fixed an atrocious DBD::ADO bind-value bug
80         - Cookbook/Intro POD improvements
81
82 0.08114 2009-11-14 17:45:00 (UTC)
83         - Preliminary support for MSSQL via DBD::ADO
84         - Fix botched 0.08113 release (invalid tarball)
85
86 0.08113 2009-11-13 23:13:00 (UTC)
87         - Fix populate with has_many bug
88           (RT #50828)
89         - Fix Oracle autoincrement broken for Resultsets with scalar refs
90           (RT #50874)
91         - Complete Sybase RDBMS support including:
92           - Support for TEXT/IMAGE columns
93           - Support for the 'money' datatype
94           - Transaction savepoints support
95           - DateTime inflation support
96           - Support for bind variables when connecting to a newer Sybase with
97              OpenClient libraries
98           - Support for connections via FreeTDS with CASTs for bind variables
99              when needed
100           - Support for interpolated variables with proper quoting when
101              connecting to an older Sybase and/or via FreeTDS
102           - bulk API support for populate()
103         - Transaction support for MSSQL via DBD::Sybase
104         - Add is_paged method to DBIx::Class::ResultSet so that we can
105           check that if we want a pager
106         - Skip versioning test on really old perls lacking Time::HiRes
107           (RT #50209)
108         - Fixed on_connect_do/call regression when used with a coderef
109           connector (RT #50003)
110         - A couple of fixes to Ordered to remedy subclassing issues
111         - Fixed another lingering problem with PostgreSQL
112           auto-increment support and its interaction with multiple
113           schemas
114         - Remove some IN workarounds, and require a recent version of
115           SQLA instead
116         - Improvements to populate's handling of mixed scalarref values
117         - Fixed regression losing result_class after $rs->find (introduced
118           in 0.08108)
119         - Fix in_storage() to return 1|0 as per existing documentation
120         - Centralize handling of _determine_driver calls prior to certain
121           ::Storage::DBI methods
122         - Fix update/delete arbitrary condition handling (RT#51409)
123         - POD improvements
124
125 0.08112 2009-09-21 10:57:00 (UTC)
126         - Remove the recommends from Makefile.PL, DBIx::Class is not
127           supposed to have optional dependencies. ever.
128         - Mangle the DBIx/Class.pm POD to be more clear about
129           copyright and license
130         - Put back PG's multiple autoinc per table support, accidentally
131           dropped during the serial-autodetection rewrite
132         - Make sure ResultSetColumn does not depend on the (undefined)
133           return value of ->cursor->reset()
134         - Add single() to ResultSetColumn (same semantics as ResultSet)
135         - Make sure to turn off IDENTITY_INSERT after insert() on MSSQL
136           tables that needed it
137         - More informative exception on failing _resolve_relationship
138         - Allow undef/NULL as the sole grouping value in Ordered
139         - Fix unreported rollback exceptions in TxnScopeGuard
140         - Fix overly-eager left-join chain enforcing code
141         - Warn about using distinct with an existing group_by
142         - Warn about attempting to $rs->get_column a non-unique column
143           when has_many joins are added to resultset
144         - Refactor of the exception handling system (now everything is a
145           DBIx::Class::Exception object)
146
147 0.08111 2009-09-06 21:58:00 (UTC)
148         - The hashref to connection_info now accepts a 'dbh_maker'
149           coderef, allowing better intergration with Catalyst
150         - Fixed a complex prefetch + regular join regression introduced
151           in 0.08108
152         - Fixed insert_bulk rebless handling
153         - Fixed Storable roundtrip regression, and general serialization
154           cleanup
155         - SQLT related fixes:
156           - sqlt_type is now called on the correct storage object
157           - hooks can now see the correct producer_type (RT#47891)
158           - optional SQLT requirements for e.g. deploy() bumped to 0.11002
159         - Really fixed (and greatly cleaned up) postgresql autoinc sequence
160           autodetection
161         - Automatically detect MySQL v3 and use INNER JOIN instead of JOIN
162         - POD improvements (including RT#48769)
163         - Test suite tweaks (including fixes for recent CPANTS fails)
164         - Better support for MSSQL IDENTITY_INSERT ON
165
166 0.08109 2009-08-18 08:35:00 (UTC)
167         - Replication updates:
168           - Improved the replication tests so that they are more reliable
169             and accurate, and hopefully solve some cross platform issues.
170           - Bugfixes related to naming particular replicants in a
171             'force_pool' attribute.
172           - Lots of documentation updates, including a new Introduction.pod
173             file.
174           - Fixed the way we detect transaction to make this more reliable
175             and forward looking.
176           - Fixed some trouble with the way Moose Types are used.
177           - Made discard_chages/get_from_storage replication aware (they
178             now read from the master storage by default)
179         - Refactor of MSSQL storage drivers, with some new features:
180           - Support for placeholders for MSSQL via DBD::Sybase with proper
181             autodetection
182           - 'uniqueidentifier' support with auto newid()
183           - Dynamic cursor support and other MARS options for ODBC
184           - savepoints with auto_savepoint => 1
185         - Support for MSSQL 'money' type
186         - Support for 'smalldatetime' type used in MSSQL and Sybase for
187           InflateColumn::DateTime
188         - Support for Postgres 'timestamp without timezone' type in
189           InflateColumn::DateTime (RT#48389)
190         - Added new MySQL specific on_connect_call macro 'set_strict_mode'
191           (also known as make_mysql_not_suck_as_much)
192         - Multiple prefetch-related fixes:
193           - Adjust overly agressive subquery join-chain pruning
194           - Always preserve the outer join-chain - fixes numerous
195             problems with search_related chaining
196           - Deal with the distinct => 1 attribute properly when using
197             prefetch
198         - An extension of the select-hashref syntax, allowing labeling
199           SQL-side aliasing: select => [ { max => 'foo', -as => 'bar' } ]
200         - Massive optimization of the DBI storage layer - reduce the
201           amount of connected() ping-calls
202         - Some fixes of multi-create corner cases
203         - Multiple POD improvements
204         - Added exception when resultset is called without an argument
205         - Improved support for non-schema-qualified tables under
206           Postgres (fixed last_insert_id sequence name auto-detection)
207
208 0.08108 2009-07-05 23:15:00 (UTC)
209         - Fixed the has_many prefetch with limit/group deficiency -
210           it is now possible to select "top 5 commenters" while
211           prefetching all their comments
212         - New resultsed method count_rs, returns a ::ResultSetColumn
213           which in turn returns a single count value
214         - Even better support of count with limit
215         - New on_connect_call/on_disconnect_call functionality (check
216           POD of Storage::DBI)
217         - Automatic datetime handling environment/session setup for
218           Oracle via connect_call_datetime_setup()
219         - count/all on related left-joined empty resultsets now correctly
220           returns 0/()
221         - Fixed regression when both page and offset are specified on
222           a resultset
223         - Fixed HRI returning too many empty results on multilevel
224           nonexisting prefetch
225         - make_column_dirty() now overwrites the deflated value with an
226           inflated one if such exists
227         - Fixed set_$rel with where restriction deleting rows outside
228           the restriction
229         - populate() returns the created objects or an arrayref of the
230           created objects depending on scalar vs. list context
231         - Fixed find_related on 'single' relationships - the former
232           implementation would overspecify the WHERE condition, reporting
233           no related objects when there in fact is one
234         - SQL::Translator::Parser::DBIx::Class now attaches tables to the
235           central schema object in relationship dependency order
236         - Fixed regression in set_column() preventing sourceless object
237           manipulations
238         - Fixed a bug in search_related doubling a join if the original
239           $rs already joins/prefetches the same relation
240         - Storage::DBI::connected() improvements for Oracle and Sybase
241         - Fixed prefetch+incomplete select regression introduced in
242           0.08100
243         - MSSQL limit (TOP emulation) fixes and improvements
244
245 0.08107 2009-06-14 08:21:00 (UTC)
246         - Fix serialization regression introduced in 0.08103 (affects
247           Cursor::Cached)
248         - POD fixes
249         - Fixed incomplete ::Replicated debug output
250
251 0.08106 2009-06-11 21:42:00 (UTC)
252         - Switched SQLite storage driver to DateTime::Format::SQLite
253           (proper timezone handling)
254         - Fix more test problems
255
256 0.08105 2009-06-11 19:04:00 (UTC)
257         - Update of numeric columns now properly uses != to determine
258           dirtyness instead of the usual eq
259         - Fixes to IC::DT tests
260         - Fixed exception when undef_if_invalid and timezone are both set
261           on an invalid datetime column
262
263 0.08104 2009-06-10 13:38:00 (UTC)
264         - order_by now can take \[$sql, @bind] as in
265           order_by => { -desc => \['colA LIKE ?', 'somestring'] }
266         - SQL::Abstract errors are now properly croak()ed with the
267           correct trace
268         - populate() now properly reports the dataset slice in case of
269           an exception
270         - Fixed corner case when populate() erroneously falls back to
271           create()
272         - Work around braindead mysql when doing subquery counts on
273           resultsets containing identically named columns from several
274           tables
275         - Fixed m2m add_to_$rel to invoke find_or_create on the far
276           side of the relation, to avoid duplicates
277         - DBIC now properly handles empty inserts (invoking all default
278           values from the DB, normally via INSERT INTO tbl DEFAULT VALUES
279         - Fix find_or_new/create to stop returning random rows when
280           default value insert is requested (RT#28875)
281         - Make IC::DT extra warning state the column name too
282         - It is now possible to transparrently search() on columns
283           requiring DBI bind (i.e. PostgreSQL BLOB)
284         - as_query is now a Storage::DBI method, so custom cursors can
285           be seamlessly used
286         - Fix search_related regression introduced in 0.08103
287
288 0.08103 2009-05-26 19:50:00 (UTC)
289         - Multiple $resultset -> count/update/delete fixes. Now any
290           of these operations will succeed, regardless of the complexity
291           of $resultset. distinct, group_by, join, prefetch are all
292           supported with expected results
293         - Return value of $rs->delete is now the storage return value
294           and not 1 as it used to be
295         - don't pass SQL functions into GROUP BY
296         - Remove MultiDistinctEmulation.pm, effectively deprecating
297           { select => { distinct => [ qw/col1 col2/ ] } }
298         - Change ->count code to work correctly with DISTINCT (distinct => 1)
299           via GROUP BY
300         - Removed interpolation of bind vars for as_query - placeholders
301           are preserved and nested query bind variables are properly
302           merged in the correct order
303         - Refactor DBIx::Class::Storage::DBI::Sybase to automatically
304           load a subclass, namely Microsoft_SQL_Server.pm
305           (similar to DBIx::Class::Storage::DBI::ODBC)
306         - Refactor InflateColumn::DateTime to allow components to
307           circumvent DateTime parsing
308         - Support inflation of timestamp datatype
309         - Support BLOB and CLOB datatypes on Oracle
310         - Storage::DBI::Replicated::Balancer::Random:
311           added master_read_weight
312         - Storage::DBI::Replicated: storage opts from connect_info,
313           connect_info merging to replicants, hashref connect_info support,
314           improved trace output, other bug fixes/cleanups
315         - distinct => 1 with prefetch now groups by all columns
316         - on_connect_do accepts a single string equivalent to a one
317           element arrayref (RT#45159)
318         - DB2 limit + offset now works correctly
319         - Sybase now supports autoinc PKs (RT#40265)
320         - Prefetch on joins over duplicate relations now works
321           correctly (RT#28451)
322         - "timestamp with time zone" columns (for Pg) now get inflated with a
323           time zone information preserved
324         - MSSQL Top limit-emulation improvements (GROUP BY and subquery support)
325         - ResultSetColumn will not lose the joins infered from a parent
326           resultset prefetch
327
328 0.08102 2009-04-30 08:29:00 (UTC)
329         - Fixed two subtle bugs when using columns or select/as
330           paired with a join (limited prefetch)
331         - Fixed breakage of cdbi tests (RT#45551)
332         - Some POD improvements
333
334 0.08101 2009-04-27 09:45:00 (UTC)
335         - Fix +select, +as, +columns and include_columns being stripped
336           by $rs->get_column
337         - move load_optional_class from DBIx::Class::Componentised to
338           Class::C3::Componentised, bump dependency
339         - register_extra_source() now *really* fixed wrt subclassing
340         - Added missing POD descriptions (RT#45195)
341         - Fix insert() to not store_column() every present object column
342         - Multiple Makefile.PL fixes
343
344 0.08100 2009-04-19 11:39:35 (UTC)
345         - Todo out the register_extra_source test until after shipping
346
347 0.08099_08 2009-03-30 00:00:00 (UTC)
348         - Fixed taint mode with load_namespaces
349         - Putting IC::DateTime locale, timezone or floating_tz_ok attributes into
350           extra => {} has been deprecated. The new way is to put these things
351           directly into the columns definition
352         - Switched MI code to MRO::Compat
353         - Document db-side default_value caveats
354         - Search_like() now warns to indicate deprecation in 0.09.
355         - TxnScopeGuard left experimental state
356
357 0.08099_07 2009-02-27 02:00:00 (UTC)
358         - multi-create using find_or_create rather than _related for post-insert
359         - fix get_inflated_columns to check has_column_loaded
360         - Add DBIC_MULTICREATE_DEBUG env var (undocumented, quasi-internal)
361         - Fix up multi-create to:
362           - correctly propagate columns loaded during multi-insert of rels
363           - not try and insert things tagged on via new_related unless required
364         - Possible to set locale in IC::DateTime extra => {} config
365         - Calling the accessor of a belongs_to when the foreign_key
366           was NULL and the row was not stored would unexpectedly fail
367         - Split sql statements for deploy only if SQLT::Producer returned a scalar
368           containing all statements to be executed
369         - Add as_query() for ResultSet and ResultSetColumn. This makes subqueries
370           possible. See the Cookbook for details.
371         - Massive rewrite of Ordered to properly handle position constraints and
372           to make it more matpath-friendly
373         - deploy_statements called ddl_filename with the $version and $dir arguments
374           in the wrong order.
375         - columns/+columns attributes now support { as => select } hahsrefs
376         - support for views both in DBIC and via deploy() in SQLT
377
378 0.08099_06 2009-01-23 07:30:00 (UTC)
379         - Allow a scalarref to be supplied to the 'from' resultset attribute
380         - Classes submitted as result_class for a resultsource are now
381           automatically loaded via ensure_loaded()
382         - 'result_class' resultset attribute, identical to result_class()
383         - add 'undef_on_null_fk' option for relationship accessors of type 'single'.
384           This will prevent DBIC from querying the database if one or more of
385           the key columns IS NULL
386         - for 'belongs_to' rels, 'undef_on_null_fk' defaults to true.
387         - fixed scope unaware last_insert_id fetching for MSSQL
388           (http://msdn.microsoft.com/en-us/library/ms190315.aspx)
389         - an sqlt_deploy_hook can now be shared between result sources using
390           a configurable callback trigger
391         - new order_by => { -desc => 'colname' } syntax supported
392         - PG array datatype supported
393         - insert should use store_column, not set_column to avoid marking
394           clean just-stored values as dirty. New test for this
395         - regression test for source_name
396
397 0.08099_05 2008-10-30 21:30:00 (UTC)
398         - Rewrite of Storage::DBI::connect_info(), extended with an
399           additional argument format type
400         - InflateColumn::DateTime: add warning about floating timezone
401         - InflateColumn::DateTime: possible to enforce/skip inflation
402         - delete throws exception if passed arguments to prevent drunken mishaps.
403         - Fix storage to copy scalar conds before regexping to avoid
404           trying to modify a constant in odd edge cases
405         - Related resultsets on uninserted objects are now empty
406         - Fixed up related resultsets and multi-create
407         - Fixed superfluous connection in ODBC::_rebless
408         - Fixed undef PK for first insert in ODBC::Microsoft_SQL_Server
409         - Added virtual method to Versioned so a user can create upgrade
410           path across multiple versions (jgoulah)
411         - Better (and marginally faster) implementation of the HashRefInflator
412           hash construction algorithm
413         - Allow explicit specification of ON DELETE/ON UPDATE constraints
414           when using the SQLT parser
415
416 0.08099_04 2008-07-24 01:00:00
417         - Functionality to storage to enable a sub to be run without FK checks
418         - Fixed $schema->clone bug which caused clone and source to share
419           internal hash refs
420         - Added register_extra_source methods for additional sources
421         - Added datetime_undef_if_invalid for InflateColumn::DateTime to
422           return undef on invalid date/time values
423         - Added search_related_rs method to ResultSet
424         - add a make_column_dirty method to Row to force updates
425         - throw a clear exception when user tries multi-has_many prefetch
426         - SQLT parser prefixes index names with ${table}_idx_ to avoid clashes
427         - mark ResultSetManager as deprecated and undocument it
428         - pod fix (RT #32988)
429         - add Test::Exception to test requirements (RT #34256)
430         - make ash's build_requires/META.yml fixes work better
431         - is_deferable support on relations used by the SQL::Translator
432           parser
433         - Refactored DBIx::Class::Schema::Versioned
434         - Syntax errors from resultset components are now reported correctly
435         - sqltargs respected correctly in deploy et al.
436         - Added support for savepoints, and using them automatically in
437           nested transactions if auto_savepoint is set in connect_info.
438         - Changed naming scheme for constraints and keys in the sqlt parser;
439           names should now be consistent and collision-free.
440         - Improve handling of explicit key attr in ResultSet::find
441         - Add warnings for non-unique ResultSet::find queries
442         - Changed Storage::DBI::Replication to Storage::DBI::Replicated and
443           refactored support.
444         - By default now deploy/diff et al. will ignore constraint and index
445           names
446         - Add ResultSet::_is_deterministic_value, make new_result filter the
447           values passed to new to drop values that would generate invalid SQL.
448         - Use Sub::Name to name closures before installing them. Fixes
449           incompatibility with Moose method modifiers on generated methods.
450
451 0.08010 2008-03-01 10:30
452         - Fix t/94versioning.t so it passes with latest SQL::Translator
453
454 0.08009 2008-01-20 13:30
455         - Made search_rs smarter about when to preserve the cache to fix
456           mm prefetch usage
457         - Added Storage::DBI subclass for MSSQL over ODBC.
458         - Added freeze, thaw and dclone methods to Schema so that thawed
459           objects will get re-attached to the schema.
460         - Moved dbicadmin to JSON::Any wrapped JSON.pm for a sane API
461           (also fixes RT #32393)
462         - introduced DBIx::Class::set_inflated_columns
463         - DBIx::Class::Row::copy uses set_inflated_columns
464
465 0.08008 2007-11-16 14:30:00
466         - Fixed join merging bug (test from Zby)
467         - When adding relationships, it will throw an exception if you get the
468           foreign and self parts the wrong way round in the condition
469         - ResultSetColumn::func() now returns all results if called in list
470           context; this makes things like func('DISTINCT') work as expected
471         - Many-to-many relationships now warn if the utility methods would
472           clash
473         - InflateColumn::DateTime now accepts an extra parameter of timezone
474           to set timezone on the DT object (thanks Sergio Salvi)
475         - Added sqlt_deploy_hook to result classes so that indexes can be
476           added.
477         - Added startup checks to warn loudly if we appear to be running on
478           RedHat systems from perl-5.8.8-10 and up that have the bless/overload
479           patch applied (badly) which causes 2x -> 100x performance penalty.
480           (Jon Schutz)
481         - ResultSource::reverse_relationship_info can distinguish between
482           sources using the same table
483         - Row::insert will now not fall over if passed duplicate related objects
484         - Row::copy will not fall over if you have two relationships to the
485           same source with a unique constraint on it
486
487 0.08007 2007-09-04 19:36:00
488         - patch for Oracle datetime inflation (abram@arin.net)
489         - added on_disconnect_do
490         - on_connect_do and on_disconnect_do take coderefs and arrayrefs
491
492 0.08006 2007-08-12 15:12:00
493         - Move to using Class::C3::Componentised
494         - Remove warn statement from DBIx::Class::Row
495
496 0.08005 2007-08-06
497         - add timestamp fix re rt.cpan 26978 - no test yet but change
498           clearly should cause no regressions
499         - provide alias for related_resultset via local() so it's set
500           correctly at resultset construction time (fixes RestrictWithObject)
501         - fixes bind params in debug statements
502           (original test from abraxxa)
503         - fixed storage->connected fork bug
504           (test and fix from Radu Greab)
505         - add 1; to AccessorGroup.pm for stuff that still uses it
506         - refactor Statistics to create debugging filehandle to fix bug with
507           closed STDERR, update docs and modify Versioned to use Statistics
508           (original fix from diz)
509
510 0.08004 2007-08-06 19:00:00
511         - fix storage connect code to not trigger bug via auto-viv
512           (test from aherzog)
513         - fixup cursor_class to be an 'inherited' attr for per-package defaults
514         - add default_resultset_attributes entry to Schema
515         - optimisation in DBI::Cursor to check software_limit before falling
516           back to base Cursor->all
517         - fix bug with create_multi not inserting non-storage objects
518           (test and fix from davinchi)
519         - DBIx::Class::AccessorGroup made empty subclass of
520           Class::Accessor::Grouped
521         - fixed an ugly bug regarding $dbh->{AutoCommit} and transactions
522         - ensure_class_loaded handles non-classnames better.
523         - non-destructive hashref handling for connect_info options
524         - count no longer returns negative values after slice
525           (report and test from JOHANL)
526         - rebless before building datetime_parser
527           (patch from mattlaw / Matt Lawrence)
528
529 0.08003 2007-07-14 18:01:00
530         - improved populate bulk_insert mode
531         - fixed up multi_create to be more intelligent about PK<->PK rels
532         - fix many-many rels to not use set_columns
533         - Unmarked deploy as experimental since it isn't anymore
534         - Removed Cwd dep since it's not required and causes problems
535           with debian packaging
536         - Patch to fix ? in data for NoBindVars (from Tom Hukins)
537         - Restored mk_classaccessor method for compatibility
538         - Fixed group_by problem with oracle limit syntax
539         - Fixed attr merging problem
540         - Fixed $rs->get_column w/prefetch  problem
541
542 0.08002 2007-06-20 06:10:00
543         - add scope guard to Row::insert to ensure rollback gets called
544         - more heuristics in Row::insert to try and get insert order right
545         - eliminate vestigial code in PK::Auto
546         - more expressive DBI errors
547         - soften errors during deploy
548         - ensure_connected before txn_begin to catch stomping on transaction
549           depth
550         - new method "rethrow" for our exception objects
551
552 0.08001 2007-06-17 21:21:02
553         - Cleaned up on_connect handling for versioned
554         - removed DateTime use line from multi_create test
555         - hid DBIx::ContextualFetch::st override in CDBICompat
556
557 0.08000 2007-06-17 18:06:12
558         - Fixed DBIC_TRACE debug filehandles to set ->autoflush(1)
559         - Fixed circular dbh<->storage in HandleError with weakref
560
561 0.07999_06 2007-06-13 04:45:00
562         - tweaked Row.pm to make last_insert_id take multiple column names
563         - Fixed DBIC::Storage::DBI::Cursor::DESTROY bug that was
564           messing up exception handling
565         - added exception objects to eliminate stacktrace/Carp::Clan
566           output redundancy
567         - setting $ENV{DBIC_TRACE} defaults stacktrace on.
568         - added stacktrace option to Schema, makes throw_exception
569           use "confess"
570         - make database handles use throw_exception by default
571         - make database handles supplied by a coderef use our
572           standard HandleError/RaiseError/PrintError
573         - add "unsafe" connect_info option to suppress our setting
574           of HandleError/RaiseError/PrintError
575         - removed several redundant evals whose sole purpose was to
576           provide extra debugging info
577         - fixed page-within-page bug (reported by nilsonsfj)
578         - fixed rare bug when database is disconnected inbetween
579           "$dbh->prepare_cached" and "$sth->execute"
580
581 0.07999_05 2007-06-07 23:00:00
582         - Made source_name rw in ResultSource
583         - Fixed up SQL::Translator test/runtime dependencies
584         - Fixed t/60core.t in the absence of DateTime::Format::MySQL
585         - Test cleanup and doc note (ribasushi)
586
587 0.07999_04 2007-06-01 14:04:00
588         - pulled in Replication storage from branch and marked EXPERIMENTAL
589         - fixup to ensure join always LEFT after first LEFT join depthwise
590         - converted the vendor tests to use schema objects intead of schema
591           classes, made cleaned more reliable with END blocks
592         - versioning support via DBIx::Class::Schema::Versioned
593         - find/next now return undef rather than () on fail from Bernhard Graf
594         - rewritten collapse_result to fix prefetch
595         - moved populate to resultset
596         - added support for creation of related rows via insert and populate
597         - transaction support more robust now in the face of varying AutoCommit
598           and manual txn_begin usage
599         - unbreak back-compat for Row/ResultSet->new_result
600         - Added Oracle/WhereJoins.pm for Oracle >= 8 to support
601           Oracle <= 9i, and provide Oracle with a better join method for
602           later versions.  (I use the term better loosely.)
603         - The SQL::T parser class now respects a relationship attribute of
604           is_foreign_key_constrain to allow explicit control over wether or
605           not a foreign constraint is needed
606         - resultset_class/result_class now (again) auto loads the specified
607           class; requires Class::Accessor::Grouped 0.05002+
608         - added get_inflated_columns to Row
609         - %colinfo accessor and inflate_column now work together
610         - More documentation updates
611         - Error messages from ->deploy made more informative
612         - connect_info will now always return the arguments it was
613           originally given
614         - A few small efficiency improvements for load_classes
615           and compose_namespace
616
617 0.07006 2007-04-17 23:18:00
618         - Lots of documentation updates
619         - deploy now takes an optional 'source_names' parameter (dec)
620         - Quoting for for columns_info_for
621         - RT#25683 fixed (multiple open sths on DBD::Sybase)
622         - CDBI compat infers has_many from has_a (Schwern)
623         - Fix ddl_filename transformation (Carl Vincent)
624
625 0.07999_02 2007-01-25 20:11:00
626         - add support for binding BYTEA and similar parameters (w/Pg impl)
627         - add support to Ordered for multiple ordering columns
628         - mark DB.pm and compose_connection as deprecated
629         - switch tests to compose_namespace
630         - ResultClass::HashRefInflator added
631         - Changed row and rs objects to not have direct handle to a source,
632           instead a (schema,source_name) tuple of type ResultSourceHandle
633
634 0.07005 2007-01-10 18:36:00
635         - fixup changes file
636         - remove erroneous .orig files - oops
637
638 0.07004 2007-01-09 21:52:00
639         - fix find_related-based queries to correctly grep the unique key
640         - fix InflateColumn to inflate/deflate all refs but scalar refs
641
642 0.07003 2006-11-16 11:52:00
643         - fix for rt.cpan.org #22740 (use $^X instead of hardcoded "perl")
644         - Tweaks to resultset to allow inflate_result to return an array
645         - Fix UTF8Columns to work under Perl <= 5.8.0
646         - Fix up new_result in ResultSet to avoid alias-related bugs
647         - Made new/update/find handle 'single' rel accessor correctly
648         - Fix NoBindVars to be safer and handle non-true bind values
649         - Don't blow up if columns_info_for returns useless results
650         - Documentation updates
651
652 0.07999_01 2006-10-05 21:00:00
653         - add connect_info option "disable_statement_caching"
654         - create insert_bulk using execute_array, populate uses it
655         - added DBIx::Class::Schema::load_namespaces, alternative to
656           load_classes
657         - added source_info method for source-level metadata (kinda like
658           column_info)
659         - Some of ::Storage::DBI's code/docs moved to ::Storage
660         - DBIx::Class::Schema::txn_do code moved to ::Storage
661         - Storage::DBI now uses exceptions instead of ->ping/->{Active} checks
662         - Storage exceptions are thrown via the schema class's throw_exception
663         - DBIx::Class::Schema::throw_exception's behavior can be modified via
664           ->exception_action
665         - columns_info_for is deprecated, and no longer runs automatically.
666           You can make it work like before via
667           __PACKAGE__->column_info_from_storage(1) for now
668         - Replaced DBIx::Class::AccessorGroup and Class::Data::Accessor with
669           Class::Accessor::Grouped. Only user noticible change is to
670           table_class on ResultSourceProxy::Table (i.e. table objects in
671           schemas) and, resultset_class and result_class in ResultSource.
672           These accessors no longer automatically require the classes when
673           set.
674
675 0.07002 2006-09-14 21:17:32
676         - fix quote tests for recent versions of SQLite
677         - added reference implementation of Manual::Example
678         - backported column_info_from_storage accessor from -current, but
679         - fixed inflate_datetime.t tests/stringify under older Test::More
680         - minor fixes for many-to-many relationship helpers
681         - cleared up Relationship docs, and fixed some typos
682         - use ref instead of eval to check limit syntax (to avoid issues with
683           Devel::StackTrace)
684         - update ResultSet::_cond_for_update_delete to handle more complicated
685           queries
686         - bugfix to Oracle columns_info_for
687         - remove_columns now deletes columns from _columns
688
689 0.07001 2006-08-18 19:55:00
690         - add directory argument to deploy()
691         - support default aliases in many_to_many accessors.
692         - support for relationship attributes in many_to_many accessors.
693         - stop search_rs being destructive to attrs
694         - better error reporting when loading components
695         - UTF8Columns changed to use "utf8" instead of "Encode"
696         - restore automatic aliasing in ResultSet::find() on nonunique queries
697         - allow aliases in ResultSet::find() queries (in cases of relationships
698           with prefetch)
699         - pass $attrs to find from update_or_create so a specific key can be
700           provided
701         - remove anonymous blesses to avoid major speed hit on Fedora Core 5's
702           Perl and possibly others; for more information see:
703           https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=196836
704         - fix a pathological prefetch case
705         - table case fix for Oracle in columns_info_for
706         - stopped search_rs deleting attributes from passed hash
707
708 0.07000 2006-07-23 02:30:00
709         - supress warnings for possibly non-unique queries, since
710           _is_unique_query doesn't infer properly in all cases
711         - skip empty queries to eliminate spurious warnings on ->deploy
712         - fixups to ORDER BY, tweaks to deepen some copies in ResultSet
713         - fixup for RowNum limit syntax with functions
714
715 0.06999_07 2006-07-12 20:58:05
716         - fix issue with from attr copying introduced in last release
717
718 0.06999_06 2006-07-12 17:16:55
719         - documentation for new storage options, fix S::A::L hanging on to $dbh
720         - substantial refactor of search_related code to fix alias numbering
721         - don't generate partial unique keys in ResultSet::find() when a table
722           has more than one unique constraint which share a column and only one
723           is satisfied
724         - cleanup UTF8Columns and make more efficient
725         - rename DBIX_CLASS_STORAGE_DBI_DEBUG to DBIC_TRACE (with compat)
726         - rename _parent_rs to _parent_source in ResultSet
727         - new FAQ.pod!
728
729 0.06999_05 2006-07-04 14:40:01
730         - fix issue with incorrect $rs->{attrs}{alias}
731         - fix subclassing issue with source_name
732         - tweak quotes test to output text on failure
733         - fix Schema->txn_do to not fail as a classmethod
734
735 0.06999_04 2006-06-29 20:18:47
736         - disable cdbi-t/02-Film.t warning tests under AS perl
737         - fixups to MySQL tests (aka "work round mysql being retarded")
738         - compat tweaks for Storage debug logging
739
740 0.06999_03 2006-06-26 21:04:44
741         - various documentation improvements
742         - fixes to pass test suite on Windows
743         - rewrote and cleaned up SQL::Translator tests
744         - changed relationship helpers to only call ensure_class_loaded when the
745           join condition is inferred
746         - rewrote many_to_many implementation, now provides helpers for adding
747           and deleting objects without dealing with the link table
748         - reworked InflateColumn implementation to lazily deflate where
749           possible; now handles passing an inflated object to new()
750         - changed join merging to not create a rel_2 alias when adding a join
751           that already exists in a parent resultset
752         - Storage::DBI::deployment_statements now calls ensure_connected
753           if it isn't passed a type
754         - fixed Componentized::ensure_class_loaded
755         - InflateColumn::DateTime supports date as well as datetime
756         - split Storage::DBI::MSSQL into MSSQL and Sybase::MSSQL
757         - fixed wrong debugging hook call in Storage::DBI
758         - set connect_info properly before setting any ->sql_maker things
759
760 0.06999_02 2006-06-09 23:58:33
761         - Fixed up POD::Coverage tests, filled in some POD holes
762         - Added a warning for incorrect component order in load_components
763         - Fixed resultset bugs to do with related searches
764         - added code and tests for Componentized::ensure_class_found and
765           load_optional_class
766         - NoBindVars + Sybase + MSSQL stuff
767         - only rebless S::DBI if it is still S::DBI and not a subclass
768         - Added `use' statement for DBD::Pg in Storage::DBI::Pg
769         - stopped test relying on order of unordered search
770         - bugfix for join-types in nested joins using the from attribute
771         - obscure prefetch problem fixed
772         - tightened up deep search_related
773         - Fixed 'DBIx/Class/DB.pm did not return a true value' error
774         - Revert change to test for deprecated find usage and swallow warnings
775         - Slight wording change to new_related() POD
776         - new specific test for connect_info coderefs
777         - POD clarification and content bugfixing + a few code formatting fixes
778         - POD::Coverage additions
779         - fixed debugfh
780         - Fix column_info stomping
781
782 0.06999_01 2006-05-28 17:19:30
783         - add automatic naming of unique constraints
784         - marked DB.pm as deprecated and noted it will be removed by 1.0
785         - add ResultSetColumn
786         - refactor ResultSet code to resolve attrs as late as possible
787         - merge prefetch attrs into join attrs
788         - add +select and +as attributes to ResultSet
789         - added InflateColumn::DateTime component
790         - refactor debugging to allow for profiling using Storage::Statistics
791         - removed Data::UUID from deps, made other optionals required
792         - modified SQLT parser to skip dupe table names
793         - added remove_column(s) to ResultSource/ResultSourceProxy
794         - added add_column alias to ResultSourceProxy
795         - added source_name to ResultSource
796         - load_classes now uses source_name and sets it if necessary
797         - add update_or_create_related to Relationship::Base
798         - add find_or_new to ResultSet/ResultSetProxy and find_or_new_related
799           to Relationship::Base
800         - add accessors for unique constraint names and coulums to
801           ResultSource/ResultSourceProxy
802         - rework ResultSet::find() to search unique constraints
803         - CDBICompat: modify retrieve to fix column casing when ColumnCase is
804           loaded
805         - CDBICompat: override find_or_create to fix column casing when
806           ColumnCase is loaded
807         - reorganized and simplified tests
808         - added Ordered
809         - added the ability to set on_connect_do and the various sql_maker
810           options as part of Storage::DBI's connect_info.
811
812 0.06003 2006-05-19 15:37:30
813         - make find_or_create_related check defined() instead of truth
814         - don't unnecessarily fetch rels for cascade_update
815         - don't set_columns explicitly in update_or_create; instead use
816           update($hashref) so InflateColumn works
817         - fix for has_many prefetch with 0 related rows
818         - make limit error if rows => 0
819         - added memory cycle tests and a long-needed weaken call
820
821 0.06002 2006-04-20 00:42:41
822         - fix set_from_related to accept undef
823         - fix to Dumper-induced hash iteration bug
824         - fix to copy() with non-composed resultsource
825         - fix to ->search without args to clone rs but maintain cache
826         - grab $self->dbh once per function in Storage::DBI
827         - nuke ResultSource caching of ->resultset for consistency reasons
828         - fix for -and conditions when updating or deleting on a ResultSet
829
830 0.06001
831         - Added fix for quoting with single table
832         - Substantial fixes and improvements to deploy
833         - slice now uses search directly
834         - fixes for update() on resultset
835         - bugfix to Cursor to avoid error during DESTROY
836         - transaction DBI operations now in debug trace output
837
838 0.06000 2006-03-25 18:03:46
839         - Lots of documentation improvements
840         - Minor tweak to related_resultset to prevent it storing a searched rs
841         - Fixup to columns_info_for when database returns type(size)
842         - Made do_txn respect void context (on the off-chance somebody cares)
843         - Fix exception text for nonexistent key in ResultSet::find()
844
845 0.05999_04 2006-03-18 19:20:49
846         - Fix for delete on full-table resultsets
847         - Removed caching on count() and added _count for pager()
848         - ->connection does nothing if ->storage defined and no args
849           (and hence ->connect acts like ->clone under the same conditions)
850         - Storage::DBI throws better exception if no connect info
851         - columns_info_for made more robust / informative
852         - ithreads compat added, fork compat improved
853         - weaken result_source in all resultsets
854         - Make pg seq extractor less sensitive.
855
856 0.05999_03 2006-03-14 01:58:10
857         - has_many prefetch fixes
858         - deploy now adds drop statements before creates
859         - deploy outputs debugging statements if DBIX_CLASS_STORAGE_DBI_DEBUG
860             is set
861
862 0.05999_02 2006-03-10 13:31:37
863         - remove test dep on YAML
864         - additional speed tweaks for C3
865         - allow scalarefs passed to order_by to go straight through to SQL
866         - renamed insert_or_update to update_or_insert (with compat alias)
867         - hidden lots of packages from the PAUSE Indexer
868
869 0.05999_01 2006-03-09 18:31:44
870         - renamed cols attribute to columns (cols still supported)
871         - added has_column_loaded to Row
872         - Storage::DBI connect_info supports coderef returning dbh as 1st arg
873         - load_components() doesn't prepend base when comp. prefixed with +
874         - $schema->deploy
875         - HAVING support
876         - prefetch for has_many
877         - cache attr for resultsets
878         - PK::Auto::* no longer required since Storage::DBI::* handle auto-inc
879         - minor tweak to tests for join edge case
880         - added cascade_copy relationship attribute
881           (sponsored by Airspace Software, http://www.airspace.co.uk/)
882         - clean up set_from_related
883         - made copy() automatically null out auto-inc columns
884         - added txn_do() method to Schema, which allows a coderef to be
885           executed atomically
886
887 0.05007 2006-02-24 00:59:00
888         - tweak to Componentised for Class::C3 0.11
889         - fixes for auto-inc under MSSQL
890
891 0.05006 2006-02-17 15:32:40
892         - storage fix for fork() and workaround for Apache::DBI
893         - made update(\%hash) work on row as well as rs
894         - another fix for count with scalar group_by
895         - remove dependency on Module::Find in 40resultsetmanager.t (RT #17598)
896
897 0.05005 2006-02-13 21:24:51
898         - remove build dependency on version.pm
899
900 0.05004 2006-02-13 20:59:00
901         - allow specification of related columns via cols attr when primary
902           keys of the related table are not fetched
903         - fix count for group_by as scalar
904         - add horrific fix to make Oracle's retarded limit syntax work
905         - remove Carp require
906         - changed UUIDColumns to use new UUIDMaker classes for uuid creation
907         using whatever module may be available
908
909 0.05003 2006-02-08 17:50:20
910         - add component_class accessors and use them for *_class
911         - small fixes to Serialize and ResultSetManager
912         - rollback on disconnect, and disconnect on DESTROY
913
914 0.05002 2006-02-06 12:12:03
915         - Added recommends for Class::Inspector
916         - Added skip_all to t/40resultsetmanager.t if no Class::Inspector
917         available
918
919 0.05001 2006-02-05 15:28:10
920         - debug output now prints NULL for undef params
921         - multi-step prefetch along the same rel (e.g. for trees) now works
922         - added multi-join (join => [ 'foo', 'foo' ]), aliases second to foo_2
923         - hack PK::Auto::Pg for "table" names referencing a schema
924         - find() with attributes works
925         - added experimental Serialize and ResultSetManager components
926         - added code attribute recording to DBIx::Class
927         - fix to find() for complex resultsets
928         - added of $storage->debugcb(sub { ... })
929         - added $source->resultset_attributes accessor
930         - added include_columns rs attr
931
932 0.05000 2006-02-01 16:48:30
933         - assorted doc fixes
934         - remove ObjectCache, not yet working in 0.05
935         - let many_to_many rels have attrs
936         - fix ID method in PK.pm to be saner for new internals
937         - fix t/30dbicplain.t to use ::Schema instead of
938           Catalyst::Model::DBIC::Plain
939
940 0.04999_06 2006-01-28 21:20:32
941         - fix Storage/DBI (tried to load deprecated ::Exception component)
942
943 0.04999_05 2006-01-28 20:13:52
944         - count will now work for grouped resultsets
945         - added accessor => option to column_info to specify accessor name
946         - added $schema->populate to load test data (similar to AR fixtures)
947         - removed cdbi-t dependencies, only run tests if installed
948         - Removed DBIx::Class::Exception
949         - unified throw_exception stuff, using Carp::Clan
950         - report query when sth generation fails.
951         - multi-step prefetch!
952         - inheritance fixes
953         - test tweaks
954
955 0.04999_04 2006-01-24 21:48:21
956         - more documentation improvements
957         - add columns_info_for for vendor-specific column info (Zbigniew
958         Lukasiak)
959         - add SQL::Translator::Producer for DBIx::Class table classes (Jess
960         Robinson)
961         - add unique constraint declaration (Daniel Westermann-Clark)
962         - add new update_or_create method (Daniel Westermann-Clark)
963         - rename ResultSetInstance class to ResultSetProxy, ResultSourceInstance
964           to ResultSourceProxy, and TableInstance to ResultSourceProxy::Table
965         - minor fixes to UUIDColumns
966         - add debugfh method and ENV magic for tracing SQL (Nigel Metheringham)
967
968 0.04999_03 2006-01-20 06:05:27
969         - imported Jess Robinson's SQL::Translator::Parser::DBIx::Class
970         - lots of internals cleanup to eliminate result_source_instance
971         requirement
972         - added register_column and register_relationship class APIs
973         - made Storage::DBI use prepare_cached safely (thanks to Tim Bunce)
974         - many documentation improvements (thanks guys!)
975         - added ->connection, ->connect, ->register_source and ->clone schema
976         methods
977         - Use croak instead of die for user errors.
978
979 0.04999_02 2006-01-14 07:17:35
980         - Schema is now self-contained; no requirement for co-operation
981         - add_relationship, relationships, relationship_info, has_relationship
982         - relationship handling on ResultSource
983         - all table handling now in Table.pm / ResultSource.pm
984         - added GROUP BY and DISTINCT support
985         - hacked around SQL::Abstract::Limit some more in DBIC::SQL::Abstract
986           (this may have fixed complex quoting)
987         - moved inflation to inflate_result in Row.pm
988         - added $rs->search_related
989         - split compose_namespace out of compose_connection in Schema
990         - ResultSet now handles find
991         - various *_related methods are now ->search_related->*
992         - added new_result to ResultSet
993
994 0.04999_01 2005-12-27 03:33:42
995         - search and related methods moved to ResultSet
996         - select and as added to ResultSet attrs
997         - added DBIx::Class::Table and TableInstance for table-per-class
998         - added DBIx::Class::ResultSetInstance which handles proxying
999           search etc. as a superclass of DBIx::Class::DB
1000         - assorted test and code cleanup work
1001
1002 0.04001 2005-12-13 22:00:00
1003         - Fix so set_inflated_column calls set_column
1004         - Syntax errors in relationship classes are now reported
1005         - Better error detection in set_primary_key and columns methods
1006         - Documentation improvements
1007         - Better transaction support with txn_* methods
1008         - belongs_to now works when $cond is a string
1009         - PK::Auto::Pg updated, only tries primary keys instead of all cols
1010
1011 0.04 2005-11-26
1012         - Moved get_simple and set_simple into AccessorGroup
1013         - Made 'new' die if given invalid columns
1014         - Added has_column and column_info to Table.pm
1015         - Refactored away from direct use of _columns and _primaries
1016         - Switched from NEXT to Class::C3
1017
1018 0.03004
1019         - Added an || '' to the CDBICompat stringify to avoid null warnings
1020         - Updated name section for manual pods
1021 0.03003 2005-11-03 17:00:00
1022         - POD fixes.
1023         - Changed use to require in Relationship/Base to avoid import.
1024
1025 0.03002 2005-10-20 22:35:00
1026         - Minor bugfix to new (Row.pm)
1027         - Schema doesn't die if it can't load a class (Schema.pm)
1028         - New UUID columns plugin (UUIDColumns.pm)
1029         - Documentation improvements.
1030
1031 0.03001 2005-09-23 14:00:00
1032         - Fixes to relationship helpers
1033         - IMPORTANT: prefetch/schema combination bug fix
1034
1035 0.03    2005-09-19 19:35:00
1036         - Paging support
1037         - Join support on search
1038         - Prefetch support on search
1039
1040 0.02    2005-08-12 18:00:00
1041         - Test fixes.
1042         - Performance improvements.
1043         - Oracle primary key support.
1044         - MS-SQL primary key support.
1045         - SQL::Abstract::Limit integration for database-agnostic limiting.
1046
1047 0.01    2005-08-08 17:10:00
1048         - initial release
1049