Bring out the big-paranoia-harness - make describe_env infallible
[dbsrgits/DBIx-Class.git] / Changes
1 Current Known Issues / Regressions
2   - Breaks DBIx::Class::ResultSet::WithMetaData (fix pending in RT#104602)
3   - Breaks DBIx::Class::Tree::NestedSet (fix pending in RT#114440)
4
5 Revision history for DBIx::Class
6
7     * Notable Changes and Deprecations
8         - The entire class hierarchy now explicitly sets the 'c3' mro, even
9           in cases where load_components was not used. Extensive testing led
10           the maintainer believe this is safe, but this is a very complex
11           area and reality may turn out to be different. If **ANYHTING** at
12           all seems out of place, please file a report at once
13         - Neither exception_action() nor $SIG{__DIE__} handlers are invoked
14           on recoverable errors. This ensures that the retry logic is fully
15           insulated from changes in control flow, as the handlers are only
16           invoked when an error is leaving the DBIC internals to be handled by
17           the caller (n.b. https://github.com/PerlDancer/Dancer2/issues/1125)
18           (also fixes the previously rejected RT#63874)
19         - $result->related_resultset() no longer passes extra arguments to
20           an underlying search_rs(), as by design these arguments would be
21           used only on the first call to ->related_resultset(), and ignored
22           afterwards. Instead an exception (detailing the fix) is thrown.
23         - Increased checking for the correctness of the is_nullable attribute
24           within the prefetch result parser may highlight previously unknown
25           mismatches between your codebase and data source
26         - Calling the set_* many-to-many helper with a list (instead of an
27           arrayref) now emits a deprecation warning
28         - Calling the getter $rsrc->from("argument") now throws an exception
29           instead of silently discarding the argument
30
31     * New Features
32         - InflateColumn::DateTime now accepts the ecosystem-standard option
33           'time_zone', in addition to the DBIC-only 'timezone' (GH#28)
34         - Massively optimised literal SQL snippet scanner - fixes all known
35           slowdowns ( in some cases 50x ) of very complex prefetch/selects
36         - DBIx::Class::Optional::Dependencies now properly understands
37           combinations of requirements and does the right thing with e.g.
38           ->req_list_for([qw( rdbms_oracle ic_dt )]) bringing in the Oracle
39           specific DateTime::Format dependencies
40
41     * Fixes
42         - Fix incorrect SQL generated with invalid {rows} on complex resultset
43           operations, generally more robust handling of rows/offset attrs
44         - Fix incorrect $storage state on unexpected RDBMS disconnects and
45           other failure events, preventing clean reconnection (RT#110429)
46         - Make sure exception objects stringifying to '' are properly handled
47           and warned about (GH#15)
48         - Fix incorrect data returned in a corner case of partial-select HRI
49           invocation (no known manifestations of this bug in the field, see
50           commit message for description of exact failure scenario)
51         - Fix corner case of stringify-only overloaded objects being used in
52           create()/populate()
53         - Fix spurious warning on MSSQL cursor invalidation retries (RT#102166)
54         - Fix several corner cases with Many2Many over custom relationships
55
56     * Misc
57         - Add explicit test for pathological example of asymmetric IC::DT setup
58           working with copy() in t/icdt/engine_specific/sybase.t (GH#84)
59         - Fix t/54taint.t failing on local::lib's with upgraded Carp on 5.8.*
60         - Fix invalid variable names in ResultSource::View examples
61         - Skip tests in a way more intelligent and speedy manner when optional
62           dependencies are missing
63         - Make the Optional::Dependencies error messages cpanm-friendly
64         - Incompatibly change values (not keys) of the hash returned by
65           Optional::Dependencies::req_group_list (no known users in the wild)
66         - Stop using bare $] throughout - protects the codebase from issues
67           similar (but likely not limited to) P5#72210
68         - Config::Any is no longer a core dep, but instead is migrated to a new
69           optdep group 'config_file_reader'
70
71 0.082840 2016-06-20 07:02 (UTC)
72     * New Features
73         - When using non-scalars (e.g. arrays) as literal bind values it is no
74           longer necessary to explicitly specify a bindtype (this turned out
75           to be a mostly useless overprotection)
76
77     * Fixes
78         - Ensure leaving an exception stack via Return::MultiLevel or something
79           similar produces a large warning
80         - Another relatively invasive set of ::FilterColumn changes, covering
81           potential data loss (RT#111567). Please run your regression tests!
82         - Ensure failing on_connect* / on_disconnect* are dealt with properly,
83           notably on_connect* failures now properly abort the entire connect
84         - Fix use of ::Schema::Versioned combined with a user-supplied
85           $dbh->{HandleError} (GH#101)
86         - Fix parsing of DSNs containing driver arguments (GH#99)
87         - Fix silencing of exceptions thrown by custom inflate_result() methods
88         - Fix complex prefetch when ordering over foreign boolean columns
89           ( Pg can't MAX(boolcol) despite being able to ORDER BY boolcol )
90         - Fix infinite loop on ->svp_release("nonexistent_savepoint") (GH#97)
91         - Fix spurious ROLLBACK statements when a TxnScopeGuard fails a commit
92           of a transaction with deferred FK checks: a guard is now inactivated
93           immediately before the commit is attempted (RT#107159)
94         - Fix the Sybase ASE storage incorrectly attempting to retrieve an
95           autoinc value when inserting rows containing blobs (GH#82)
96         - Remove spurious exception warping in ::Replicated::execute_reliably
97           (RT#113339)
98         - Work around unreliable $sth->finish() on INSERT ... RETURNING within
99           DBD::Firebird on some compiler/driver combinations (RT#110979)
100         - Fix leaktest failures with upcoming version of Sub::Quote
101         - Really fix savepoint rollbacks on older DBD::SQLite (fix in 0.082800
102           was not sufficient to cover up RT#67843)
103
104     * Misc
105         - Test suite is now officially certified to work under very high random
106           parallelism: META x_parallel_test_certified set to true accordingly
107         - Typo fixes from downstream debian packagers (RT#112007)
108
109 0.082821 2016-02-11 17:58 (UTC)
110     * Fixes
111         - Fix t/52leaks.t failures on compilerless systems (RT#104429)
112         - Fix t/storage/quote_names.t failures on systems with specified Oracle
113           test credentials while missing the optional Math::Base36
114         - Fix test failures when DBICTEST_SYBASE_DSN is set (unnoticed change
115           in error message wording during 0.082800 and a bogus test)
116         - Remove largely obsolete test of SQLite view deployment (RT#111916)
117
118     * Misc
119         - Work around rare test deadlock under heavy parallelism (RT#108390)
120
121 0.082820 2015-03-20 20:35 (UTC)
122     * Fixes
123         - Protect destructors from rare but possible double execution, and
124           loudly warn the user whenever the problem is encountered (GH#63)
125         - Relax the 'self_result_object' argument check in the relationship
126           resolution codepath, restoring exotic uses of inflate_result
127           http://lists.scsys.co.uk/pipermail/dbix-class/2015-January/011876.html
128         - Fix updating multiple CLOB/BLOB columns on Oracle
129         - Fix exception on complex update/delete under a replicated setup
130           http://lists.scsys.co.uk/pipermail/dbix-class/2015-January/011903.html
131         - Fix uninitialized warnings on empty hashes passed to join/prefetch
132           https://github.com/vanstyn/RapidApp/commit/6f41f6e48 and
133           http://lists.scsys.co.uk/pipermail/dbix-class/2015-February/011921.html
134         - Fix hang in t/72pg.t when run against DBD::Pg 3.5.0. The ping()
135           implementation changes due to RT#100648 made an alarm() based
136           timeout lock-prone.
137
138     * Misc
139         - Remove warning about potential side effects of RT#79576 (scheduled)
140         - Various doc improvements (GH#35, GH#62, GH#66, GH#70, GH#71, GH#72)
141         - Depend on newer Moo, to benefit from a safer runtime (RT#93004)
142         - Fix intermittent failures in the LeakTracer on 5.18+
143         - Fix failures of t/54taint.t on Windows with spaces in the $^X
144           executable path (RT#101615)
145
146 0.082810 2014-10-25 13:58 (UTC)
147     * Fixes
148         - Fix incorrect collapsing-parser source being generated in the
149           presence of unicode data among the collapse-points
150         - Fix endless loop on BareSourcelessResultClass->throw_exception(...)
151
152     * Misc
153         - Depend on newer SQL::Abstract (fixing overly-aggressive parenthesis
154           opener: RT#99503)
155         - Depend on newer Moo, fixing some interoperability issues:
156           http://lists.scsys.co.uk/pipermail/dbix-class/2014-October/011787.html
157
158 0.082801 2014-10-05 23:55 (UTC)
159     * Known Issues
160         - Passing large amounts of objects with stringification overload
161           directly to DBIx::Class may result in strange action at a distance
162           exceptions. More info (and a workaround description) can be found
163           under "Note" at https://metacpan.org/pod/SQL::Abstract#is_plain_value
164         - The relationship condition resolution fixes come with the side effect
165           of returning more complete data, tripping up *some* users of an
166           undocumented but widely used internal function. In particular
167           https://rt.cpan.org/Ticket/Display.html?id=91375#txn-1407239
168
169     * Notable Changes and Deprecations
170         - DBIC::FilterColumn now properly bypasses \'' and \[] literals, just
171           like the rest of DBIC
172         - DBIC::FilterColumn "from_storage" handler is now invoked on NULLs
173           returned from storage
174         - find() now throws an exception if some of the supplied values are
175           managed by DBIC::FilterColumn (RT#95054)
176         - Custom condition relationships are now invoked with a slightly
177           different signature (existing coderefs will continue to work)
178         - Add extra custom condition coderef attribute 'foreign_values'
179           to allow for proper reverse-relationship-like behavior
180           (i.e. $result->set_from_related($custom_rel, $foreign_result_object)
181         - When in a transaction, DBIC::Ordered now seamlesly handles result
182           objects that went out of sync with the storage (RT#96499)
183         - CDBICompat::columns() now supports adding columns through supplied
184           Class::DBI::Column instances (GH#52)
185         - Deprecate { col1 => col2 } expressions in manual {from} structures
186           (at some point of time manual {from} will be deprecated entirely)
187
188     * Fixes
189         - Fix Resultset delete/update affecting *THE ENTIRE TABLE* in cases
190           of empty (due to conditions) resultsets with multi-column keys
191         - Fix on_connect_* not always firing in some cases - a race condition
192           existed between storage accessor setters and the determine_driver
193           routines, triggering a connection before the set-cycle is finished
194         - Fix collapse being ignored on single-origin selection (RT#95658)
195         - Fix incorrect behavior on custom result_class inflators altering
196           the amount of returned results
197         - Fix failure to detect stable order criteria when in iterator
198           mode of a has_many prefetch off a search_related chain
199         - Prevent erroneous database hit when accessing prefetched related
200           resultsets with no rows
201         - Proper exceptions on malformed relationship conditions (RT#92234)
202         - Fix incorrect handling of custom relationship conditions returning
203           SQLA literal expressions
204         - Fix long standing bug with populate() missing data from hashrefs with
205           different keysets: http://is.gd/2011_dbic_populate_gotcha (RT#92723)
206         - Fix multi-value literal populate not working with simplified bind
207           specifications
208         - Massively improve the implied resultset condition parsing - now all
209           applicable conditions within a resultset should be properly picked
210           up by create() and populate()
211         - Ensure definitive condition extractor handles bizarre corner cases
212           without bombing out (RT#93244)
213         - Fix set_column on non-native (+columns) selections (RT#86685)
214         - Fix set_inflated_column incorrectly handling \[] literals (GH#44)
215         - Ensure that setting a column to a literal invariably marks it dirty
216         - Fix copy() not working correctly with extra selections present
217         - Work around exception objects with broken string overloading in one
218           additional codepath (missed in 0.08260)
219         - Fix more inconsistencies of the quote_names attribute propagating
220           to SQL::Translator (partially RT#87731)
221         - Fix SQLT constraint naming when DBIC table names are fully qualified
222           (PR#48)
223         - Ensure ::Schema::Versioned connects only once by reusing the main
224           connection (GH#57)
225         - Fix inability to handle multiple consecutive transactions with
226           savepoints on DBD::SQLite < 1.39
227         - Fix CDBICompat to match Class::DBI behavior handling non-result
228           blessed has_a (implicit deflate via stringification and inflate via
229           blind new) (GH#51)
230
231     * Misc
232         - Ensure source metadata calls always take place on the result source
233           instance registered with the caller
234         - IFF DBIC_TRACE output defaults to STDERR we now silence the possible
235           wide-char warnings if the trace happens to contain unicode
236
237 0.08270 2014-01-30 21:54 (PST)
238     * Fixes
239         - Fix 0.08260 regression in DBD::SQLite bound int handling. Inserted
240           data was not affected, but any function <=> integer comparison would
241           have failed (originally fixed way back in 0e773352)
242         - Fix failure to load DateTime formatter when connecting to Firebird
243           over ODBC
244
245     * Misc
246         - All drivers based on ::Storage::DBI::Firebird::Common now return the
247           same sqlt_type value (affects ::DBI::Interbase, ::DBI::Firebird and
248           ::DBI::ODBC::Firebird)
249
250 0.08260 2014-01-28 18:52 (UTC)
251     * New Features
252         - A new zero-to-DBIC style manual: DBIx::Class::Manual::QuickStart
253
254     * Notable Changes and Deprecations
255         - Explicitly deprecate combination of distinct and selecting a
256           non-column via $rs->get_column()
257
258     * Fixes
259         - More robust handling of circular relationship declarations by loading
260           foreign classes less frequently (should resolve issues like
261           http://lists.scsys.co.uk/pipermail/dbix-class/2013-June/011374.html)
262           Note that none of this is a manifestations of a DBIC bug, but rather
263           unexpected (but correct) behavior of load-order-dependent (hence
264           logically broken) Resultclass hierarchies. In order to deal with this
265           DBIC is scaling back a large number of sanity checks, which are to be
266           reintroduce pending a better framework for source registration
267         - Fix multiple edge cases of complex prefetch combining incorrectly
268           with correlated subquery selections
269         - Fix multiple edge cases stemming from interaction of a non-selecting
270           order_by specification and distinct and/or complex prefetch
271         - Fix unbound growth of a resultset during repeated execute/exhaust
272           cycles (GH#29)
273         - Work around (and be very vocal about the fact) when DBIC encounters
274           an exception object with broken string overloading
275         - Clarify ambiguous behavior of distinct when used with ResultSetColumn
276           i.e. $rs->search({}, { distinct => 1 })->get_column (...)
277         - Setting quote_names propagates to SQL::Translator when producing
278           SQLite DDL (it is one of the few producers *NOT* quoting by default)
279         - Fix incorrect binding of large integers on old versions of
280           DBD::SQLite (now DBIC simply always binds SQLite ints as BIGINT)
281         - Silence (harmless) warnings on recent DBD::SQLite versions, when
282           inserting/updating large integers on 32bit ivsize systems (RT#76395)
283         - Back out self-cleaning from DBIx::Class::Carp for the time being
284           (as a side effect fixes RT#86267)
285         - Fix incorrect internal use of implicit list context in copy()
286         - Fix 0.08250 regression in driver determination when DBI_DSN is used
287         - Tests no longer fail if $ENV{DBI_DSN} is set
288         - Throw clearer exception on ->new_related() with a non-existent
289           relationship
290         - Fix incorrect parethesis unroll with multicolumn in, (never noticed
291           before fixing false positive in SQLA::Test 1.77)
292         - Fix t/storage/replicated.t class loading problem
293         - Stop using the deprecated Class::MOP::load_class()
294         - Fix warning in t/54taint.t with explicitly unset PERL5LIB (RT#91972)
295         - Fix t/54taint.t failing under a local::lib with installed earlier
296           DBIC version (RT#92486)
297
298     * Misc
299         - Massive incompatible change of ::BlockRunner internals (was never
300           documented as usable externally, this last set of changes settles
301           the design for proper documentation and opening up)
302         - Adjust exceptions in tests to accommodate changes in the upcoming
303           DBD::SQLite based on libsqlite 3.8.2
304         - More robust lock file naming scheme - allow tests to work on exotic
305           MSWin32 filesystems (habitual offender being http://is.gd/iy5XVP)
306         - Better diagnostics when File::Spec->tmpdir gives us crap in testing
307         - Replace $row with $result in all docs to be consistent and to
308           clarify various return values
309
310 0.08250 2013-04-29 22:00 (UTC)
311     * New Features / Changes
312         - Rewrite from scratch the result constructor codepath - many bugfixes
313           and performance improvements (the current codebase is now capable of
314           outperforming both DBIx::DataModel and Rose::DB::Object on some
315           workloads). Some notable benefits:
316           - Multiple has_many prefetch
317           - Partial prefetch - you now can select only columns you are
318             interested in, while preserving the collapse functionality
319             (collapse is now exposed as a first-class API attribute)
320           - Prefetch of resultsets with arbitrary order
321             (RT#54949, RT#74024, RT#74584)
322           - Prefetch no longer inserts right-side table order_by clauses
323             (massively helps the deficient MySQL optimizer)
324           - Prefetch with limit on right-side ordered resultsets now works
325             correctly (via aggregated grouping)
326           - No longer order the insides of a complex prefetch subquery,
327             unless required to satisfy a limit
328           - Stop erroneously considering order_by criteria from a join under
329             distinct => 1 (the distinct should apply to the main source only)
330         - Massively optimize codepath around ->cursor(), over 10x speedup
331           on some iterating workloads.
332         - Support standalone \[ $sql, $value ] in literal SQL with bind
333           specifications: \[ '? + ?', 42, 69 ] is now equivalent to
334           \[ '? + ?', [ {} => 42 ], [ {} => 69 ] ]
335         - Changing the result_class of a ResultSet in progress is now
336           explicitly forbidden. The behavior was undefined before, and
337           would result in wildly differing outcomes depending on $rs
338           attributes.
339         - Deprecate returning of prefetched 'filter' rels as part of
340           get_columns() and get_inflated_columns() data
341         - Invoking get_inflated_columns() no longer fires get_columns() but
342           instead retrieves data from individual non-inflatable columns via
343           get_column()
344         - Emit a warning on incorrect use of nullable columns within a
345           primary key
346         - Limited checks are performed on whether columns without declared
347           is_nullable => 1 metadata do in fact sometimes fetch NULLs from
348           the database (the check is currently very limited and is performed
349           only on resultset collapse when the alternative is rather worse)
350
351     * Fixes
352         - Fix _dbi_attrs_for_bind() being called befor DBI has been loaded
353           (regression in 0.08210)
354         - Fix update/delete operations on resultsets *joining* the updated
355           table failing on MySQL. Resolves oversights in the fixes for
356           RT#81378 and RT#81897
357         - Fix open cursors silently resetting when inherited across a fork
358           or a thread
359         - Properly support "MySQL-style" left-side group_by with prefetch
360         - Fix $grouped_rs->get_column($col)->func($func) producing incorrect
361           SQL (RT#81127)
362         - Stop Sybase ASE storage from generating invalid SQL in subselects
363           when a limit without offset is encountered
364         - Even more robust behavior of GenericSubQuery limit dialect
365         - Make sure deployment_statements() and cursor_class() are called on
366           a resolved storage subclass
367
368     * Misc
369         - Fix tests failing due to unspecified resultset retrieval order
370           (test suite now will pass with newest SQLite libs)
371
372 0.08210 2013-04-04 15:30 (UTC)
373     * New Features / Changes
374         - Officially deprecate the 'cols' and 'include_columns' resultset
375           attributes
376         - Remove ::Storage::DBI::sth() deprecated in 0.08191
377
378     * Fixes
379         - Work around a *critical* bug with potential for data loss in
380           DBD::SQLite - RT#79576
381         - Audit and correct potential bugs associated with braindead reuse
382           of $1 on unsuccessful matches
383         - Fix incorrect warning/exception originator reported by carp*() and
384           throw_exception()
385
386 0.08209 2013-03-01 12:56 (UTC)
387     * New Features / Changes
388         - Debugging aid - warn on invalid result objects created by what
389           seems like an invalid inheritance hierarchy
390
391     * Fixes
392         - Fix another embarrassing regression preventing correct refining of
393           the search criteria on a prefetched relation (broken in 0.08205)
394         - Fix incorrect callsite reporting by DBIC::Carp
395
396 0.08208 2013-02-20 09:56 (UTC)
397     * New Features / Changes
398         - A bunch of nonsensically named arguments to the SQL::Translator
399           parser have been marked as deprecated (while still fully
400           supported)
401
402     * Fixes
403         - Fix duplicated selected columns when calling 'count' when a same
404           aggregate function is used more than once in a 'having' clause
405           (RT#83305)
406         - Prevent SQL::Translator::Producer::YAML from seeing the $dbh
407           in a potentially connected $schema instance (RT#75394)
408
409     * Misc
410         - Fixup our distbuilding process to stop creating world-writable
411           tarball contents (implicitly fixes RT#83084)
412         - Added strict and warnings tests for all lib and test files
413
414 0.08206 2013-02-08
415     * Fixes
416         - Fix dbh_do() failing to properly reconnect (regression in 0.08205)
417         - Extra sanity check of a fresh DBI handle ($dbh). Fixes
418           connection coderefs returning garbage (seen in the wild)
419
420     * Misc
421         - Only allow known globals in SQL::Translator leak allowance
422         - General cleanup of error message texts - quote names/identifiers
423           for easier reading
424         - Stop t/52leaks.t from failing when AUTOMATED_TESTING=1
425
426 0.08205 2013-01-22
427     * New Features / Changes
428         - The emulate_limit() arbitrary limit dialect emulation mechanism is
429           now deprecated, and will be removed when DBIx::Class migrates to
430           Data::Query
431         - Support for the source_bind_attributes() storage method has been
432           removed after a lengthy deprecation cycle
433     * Fixes
434         - When performing resultset update/delete only strip condition
435           qualifiers - leave the source name alone (RT#80015, RT#78844)
436         - Fix incorrect behavior on resultset update/delete invoked on
437           composite resultsets (e.g. as_subselect_rs)
438         - Fix update/delete operations referencing the updated table failing
439           on MySQL, due to its refusal to modify a table being directly
440           queried. As a workaround induce in-memory temp-table creation
441           (RT#81378, RT#81897)
442         - More robust behavior under heavily threaded environments - make
443           sure we do not have refaddr reuse in the global storage registry
444         - Fix failing test on 5.8 under Win32 (RT#81114)
445         - Fix hash-randomization test issues (RT#81638)
446         - Disallow erroneous calling of connect_info on a replicated storage
447           (RT#78436)
448     * Misc
449         - Improve the populate docs in ::Schema and ::ResultSet
450         - ::Storage::DBI::source_bind_attributes() removed as announced
451           on Jan 2011 in 0e773352a
452
453 0.08204 2012-11-08
454     * New Features / Changes
455         - SQLMaker now accepts \'literal' with the 'for' rs attribute as an
456           override to the builtin FOR options
457     * Fixes
458         - Fix unique constraint violations in Ordered.pm blanket movement
459           (RT#79773, rolls back short-sighted 5e6fde33e)
460         - Fix API mismatch between new_result() and new_related() (originally
461           broken by fea3d045)
462         - Fix test failure on perl 5.8
463     * Misc
464         - Much more extensive diagnostics when a new RDBMS/DSN combination is
465           encountered (RT#80431)
466
467 0.08203 2012-10-18
468     * Fixes
469         - Really fix inadequate $dbh->ping SQLite implementation (what shipped
470           in 0.08201 tickled other deficiencies in DBD::SQLite itself)
471
472 0.08202 2012-10-06
473     * Fixes
474         - Replace inadequate $dbh->ping SQLite implementation with our own,
475           fixes RT#78420
476
477 0.08200 2012-08-24 (UTC)
478     * Fixes
479         - Change one of the new tests for the previous release to not require
480           SQL::Translator
481
482 0.08199 2012-08-22 (UTC)
483     * Fixes
484         - Roll back incomplete (and broken) internal changes - restore prefetch functionality
485
486 0.08198 2012-07-11 03:43 (UTC)
487     * Fixes
488         - Fix a number of Win32 Test issues
489         - Fix silent Oracle connection failures
490
491 0.08197 2012-07-10 10:32 (UTC)
492     * New Features / Changes
493         - Issue a warning when DateTime objects are passed to ->search
494         - Fast populate() in void context is now even more efficient by
495           going directly through execute_for_fetch bypassing execute_array
496         - Fix update()/delete() on complex resultsets to no longer fall back
497           to silly row-by-row deletion, construct a massive OR statement
498           instead
499         - Allow complex update/delete operations on sources without a
500           primary key, as long as they have at least one non-nullable
501           unique constraint
502         - dbicadmin now better supports catalyst-style config files, by
503           unrolling 'config_info' hashkeys
504         - Multiple Improvements MSSQL over DBD::ADO
505           - Transaction support
506           - Support for VARCHAR(MAX)/VARBINARY(MAX)/NVARCHAR(MAX) datatypes
507           - Nomalization of retrieved GUID values
508
509     * Fixes
510         - Fix complex has_many prefetch with resultsets not selecting identity
511           columns from the root result source
512         - Fix SkipFirst and FirstSkip limit dialects (Informix and Firebird)
513         - Fix "Skimming limit" dialects (Top, FetchFirst) to properly check
514           the order_by criteria for stability
515         - Fix "Skimming limit" dialects (Top, FetchFirst) to propagate
516           non-selected order criteria when part of a larger subquery
517         - Fix RowNumberOver and all "skimming limits" to correctly assemble
518           bind values when supplied for both select and order_by
519         - Fix all subquery-based dialects to not lose a subquery fragment
520           when we both select and order by the result of the same subquery
521         - Fix the Sybase hubrid limit dialect (RowCountOrGenericSubQ) losing
522           Group/Having/Order clauses when called without an offset (RT#73244)
523         - No longer generate incorrect SQL on ->as_query called on resultsets
524           with software_limit enabled
525         - A number of corner case fixes of void context populate() with \[]
526         - Fix corner case of forked children disconnecting the parents DBI
527           handle
528         - Improve identity/autoinc retrieval code in MSSQL and Sybase -
529           should reduce weird side-effects especially with populate()
530         - Explicitly disable DBD::ODBC batch operations (as of DBD::ODBC 1.35)
531           for the following drivers too buggy to handle the optimized path:
532           - FreeTDS ODBC driver (when used with MSSQL)
533           - The Firebird ODBC driver
534           - The MSAccess ODBC driver
535         - Explicitly disable DBD::ODBC dynamic_cursors when using freetds 0.83
536           or later - they made enough ODBC incompatible changes making it
537           impossible to support sanely
538         - Explicitly disable SCOPE_IDENTITY queries and statement caching for
539           MSSQL on DBD::Sybase compiled against freetds 0.83 or later - way too
540           buggy
541         - Disable statement caching when using Sybase ASE and DBD::Sybase
542           compiled against freetds 0.83 or later
543         - Fix leakage of $schema on in-memory new_related() calls
544         - Fix more cases of $schema leakage in SQLT::Parser::DBIC
545         - Fix leakage of $storage in ::Storage::DBI::Oracle
546         - Fix pessimization of Oracle RowNum limit dialect query when no
547           offset has been specified
548         - Remove useless vestigial pessimization in Ordered.pm for cases
549           when the position column is part of a unique constraint
550         - Fix dbicadmin to no longer ignore the documented 'config' option
551         - The schema-resultsource entanglement is now much more robust
552           under threads
553         - Fix ::Schema::ddl_filename() failing miserably on paths containing
554           certain numeric sequences
555         - t/53lean_startup.t adjusted for new 5.15.x base.pm behavior
556
557     * Misc
558         - Centralized leak-checks for all instances of DBICTest::Schema
559           from within any test
560         - Now passes all tests with Test::Builder 1.005
561         - Codebase is now trailing-whitespace-free
562         - Cleanup of complex resultset update/delete oprations - storage
563           specific code moved back to ResultSet and replaced by checks
564           of storage capabilities
565         - Fixed carp_once only emitting one single warning per package
566           regardless of warning content
567         - Test suite now can be safely executed in parallel (prove -jN
568           or HARNESS_OPTIONS=jN)
569
570 0.08196 2011-11-29 05:35 (UTC)
571     * Fixes
572         - Fix tests for DBD::SQLite >= 1.34.
573         - Fix test failures with DBICTEST_SQLITE_USE_FILE set
574         - Fix the find() condition heuristics being invoked even when the
575           call defaults to 'primary' (i.e. when invoked with bare values)
576         - Throw much clearer error on incorrect inflation spec
577         - Fix incorrect storage behavior when first call on a fresh schema
578           is with_deferred_fk_checks
579         - Fix incorrect dependency on Test::Simple/Builder (RT#72282)
580         - Fix uninitialized warning in ::Storage::Sybase::ASE
581         - Improve/cache  DBD-specific datatype bind checks (also solves a
582           nasty memleak with version.pm on multiple ->VERSION invocations)
583         - The internal carp module now correctly skips CAG frames when
584           reporting a callsite
585         - Fix test failures on perl < 5.8.7 and new Package::Stash::XS
586         - Fix TxnScopeGuard not behaving correctly when $@ is set at the
587           time of $guard instantiation
588         - Fix the join/prefetch resolver when dealing with ''/undef/()
589           relation specifications
590
591     * Misc
592         - No longer depend on Variable::Magic now that a pure-perl
593           namespace::clean is available
594         - Drop Oracle's Math::BigInt req down to 1.80 - no fixes concerning
595           us were made since
596
597 0.08195 2011-07-27 16:20 (UTC)
598     * Fixes
599         - Fix horrible oversight in the Oracle sqlmaker when dealing with
600           queries updating blobs (RT#69829)
601
602 0.08194 2011-07-20 16:10 (UTC)
603     * Fixes
604         - Fix $rs->populate([]) to be a no-op rather than an exception
605         - Overhaul t/53lean_startup.t to better dodge false positives
606         - Stop Data::Compare from loading random plugins
607         - Oracle: Recalculate LOB bind indices for UPDATE with LOBs in WHERE
608           (RT#69548)
609
610 0.08193 2011-07-14 17:00 (UTC)
611     * New Features / Changes
612         - Allow schema cloning to mutate attributes
613         - DBIC now attempts more aggressive de-duplication of where
614           conditions on resultset chaining
615         - The Ordered component is now smarter wrt reordering of dirty
616           objects, and does its job with less storage queries
617         - Logging via DBIC_TRACE=1=<filename> no longer overwrites the
618           logfile on every program startup, appending loglines instead
619
620     * Fixes
621         - Fix issue where the query was becoming overly mangled when trying
622           to use pagination with a query that has a sub-select in the WHERE
623           clause
624         - Fix possible incorrect pagination on Oracle, when a resultset
625           is not ordered by a unique column
626         - Revert "Fix incorrect signature of the default sqlt_deploy_hook"
627           from 0.08191 - documentation was in fact incorrect, not the code
628         - Fix Sybase ASE IC::DateTime support (::Storage going out of sync
629           with new default format expected by DateTime::Format::Sybase)
630         - Fix a bug in update_all() resulting in the first row receiving a
631           different dataset than the subsequent ones
632         - Accomodate MSAccess supporting only 'INNER JOIN' (not plain 'JOIN')
633         - InflateColumn::DateTime option datetime_undef_if_invalid no longer
634           masks missing dependency exceptions (RT#66823)
635         - Fix bug in Schema::Versioned failing to insert a schema version row
636           during upgrades at the turn of the second
637         - Fix incorrect bind of integers >= 2^^32 (bigint columns) to
638           SQL_INTEGER, resulting in silent conversion to '-1'
639         - Fix pre 5.10 failures of t/55namespaces_cleaned.t due to buggy
640           require() (RT#68814)
641         - Oracle autoinc inserts no longer leave open cursors behind
642
643 0.08192 2011-05-10 04:20 (UTC)
644     * Fixes
645         - Fix serious regression on SQLite, corrupting data when an alphanum
646           value does not correspond to a stale numeric datatype in colinfo
647
648 0.08191 2011-05-02 00:45 (UTC) (deleted from CPAN)
649     * New Features / Changes
650         - Add quote_names connection option. When set to true automatically
651           sets quote_char and name_sep appropriate for your RDBMS
652         - Add retrieve_on_insert column info flag, allowing to retrieve any
653           column value instead of just autoinc primary keys
654         - Bring back strict ordering of selectors in complex search chains
655           (an ill-fated attempt was made in 0.08127 to order intelligently)
656         - All limit dialects (except for the older Top and FetchFirst) are
657           now using bind parameters for the limits/offsets, making DBI's
658           prepare_cached useful across paged resutsets
659         - Support for savepoints for SQLite
660         - Support for MS Access databases via DBD::ODBC and DBD::ADO (only
661           Win32 support currently tested)
662         - Support for the Firebird RDBMS over the new DBD::Firebird driver
663         - IC::DateTime support for MSSQL over DBD::ADO
664         - Both the ::ODBC and ::ADO dispatchers now warn if a rdbms-specific
665           driver is not found for this connection before falling back to
666           plain ::Storage::DBI
667         - ::Storage::DBI::sth was mistakenly marked/documented as public,
668           privatize and warn on deprecated use
669         - Massive overhaul of bind values/attributes handling - slightly
670           changes the output of as_query (should not cause compat issues)
671         - Support ancient DB2 versions (5.4 and older), with proper limit
672           dialect
673         - Support sub-second precision for TIMESTAMPs for Firebird over ODBC
674         - Support BLOBs and CLOBs in WHERE clauses for Oracle, including LIKE
675           queries for CLOBs.
676
677     * Fixes
678         - Fix ::Storage::DBI::* MRO problems on 5.8.x perls
679         - Disable mysql_auto_reconnect for MySQL - depending on the ENV
680           it sometimes defaults to on and causes major borkage on older
681           DBD::mysql versions
682         - Fix dropped bind values in select/group_by on Oracle (omission
683           from 0542ec57 and 4c2b30d6)
684         - Fix remaining errors with Oracle and identifiers longer than the
685           Oracle-imposed maximum of 30 characters (RT#66390)
686         - Fix older oracle-specific "WhereJoins" to work properly with
687           name quoting
688         - Fix problems with M.A.D. under CGI::SpeedyCGI (RT#65131)
689         - Reenable paging of cached resultsets - breakage erroneously added
690           in 0.08127
691         - Better error handling when prepare() fails silently
692         - Fixes skipped lines when a comment is followed by a statement
693           when deploying a schema via sql file
694         - Fix reverse_relationship_info on prototypical result sources
695           (sources not yet registered with a schema)
696         - Warn and skip relationships missing from a partial schema during
697           dbic cascade_delete
698         - Automatically require the requested cursor class before use
699           (RT#64795)
700         - Work around a Firebird ODBC driver bug exposed by DBD::ODBC 1.29
701         - Fix (to the extent allowed by the driver) transaction support in
702           DBD::Sybase compiled against FreeTDS
703         - Fix exiting via next warnings in ResultSource::sequence()
704         - Fix stripping of table qualifiers in update/delete in arrayref
705           condition elements
706         - Change SQLMaker carp-monkeypatch to be compatible with versions
707           of SQL::Abstract >= 1.73
708         - Fix using \[] literals in the from resultset attribute
709         - Fix populate() with \[], arrays (datatype) and other exotic values
710         - Fix handling of rollbacks in nested transactions
711         - Fix complex limits (RNO/RowNum/FetchFirst/Top/GenSubq) with
712           sub-selects in the selectors list (correlated subqueries)
713         - Fix inconsistency between $rs->next with and without HRI when all
714           the "root" columns are in fact injected from the right rs side
715         - Fix the join optimizer to correctly preserve the non-multi path to
716           a multi relationship ( x -> might_have y -> has_many z )
717         - Fix object-derived custom-relationship resultsets to resultsources
718           with multilevel monikers (e.g. $schema->source('Foo::Bar') )
719         - Fix incorrect signature of the default sqlt_deploy_hook - it now
720           matches the documentation of passing in the result source object
721         - Fix inadequate handling of internal storage methods within
722           ::Storage::Replicated (RT#66295)
723
724     * Misc
725         - Rewire all warnings to a new Carp-like implementation internal
726           to DBIx::Class, and remove the Carp::Clan dependency
727         - Only load Class::C3 and friends if necessary ($] < 5.010)
728         - Greatly reduced loading of non-essential modules to aid startup
729           time (mainly benefiting CGI users)
730         - Make sure all namespaces are clean of rogue imports
731         - Dropped DBI req 2 years back - everything works with 1.57, no
732           point requiring something newer
733
734 0.08190-TRIAL 2011-01-24 15:35 (UTC)
735
736     * New Features / Changes
737         - Support for completely arbitrary SQL::Abstract-based conditions
738           in all types of relationships
739
740 0.08127 2011-01-19 16:40 (UTC)
741     * New Features / Changes
742         - Schema/resultsource instances are now crossreferenced via a new
743           system guaranteeing leak-free mutually assured destruction
744         - DBIx::Class now warns when the user erroneously supplies
745           AutoCommit => 0 to connect()
746         - A warning is also issued before forcing the RaiseError
747           setting of externally supplied DBI handles
748         - Switch to a warning when find() is invoked with both a 'key'
749           argument and a NULL-containing condition to satisfy the named
750           constraint. Previously (starting with 0.08124) an exception was
751           thrown
752         - Switch to a warning when a commit is attempted with an out-of-sync
753           transaction_depth (someone issued a begin externally to DBIC).
754           Previously (starting with 0.08124) an exception was thrown
755
756     * Fixes
757         - A number of improvements/diagnostics of multiple active resultset
758           handling on MSSQL over DBD::ODBC
759         - Revert default selection to being lazy again (eagerness introduced
760           in 0.08125) - fixes DBIx::Class::Helper::ResultSet::RemoveColumns
761         - Fix losing order of columns provided in select/as (regression from
762           0.08125)
763         - Unaliased "dark" selectors no longer throw off prefetch
764         - Fix proper composition of bind values across all possible
765           SQL areas ( group_by => \[ ... ] now works properly )
766         - Allow populate to skip empty has_many relationships which makes
767           it easier to pass HashRefInflator data directly to ->populate
768         - Improve freeze/thaw semantics and error messages (RT#62546)
769         - Fix inconsistency in Manual::Features (RT#64500)
770         - Fix incorrect SQL when using for => 'shared' with MySQL (RT#64590)
771         - Throw comprehensible exception on erroneous $schema->source()
772           invocation
773         - Fix sloppy refactor of ResultSource::sequence back from 89170201
774           (RT#64839)
775         - Fix incorrect error detection during populate() on Oracle
776         - Better handling of result_source-less row objects by
777           auto-calling result_source_instance when necessary
778         - Fix reverse_relationship_info and sqlt deploy on partially
779           loaded schemas (relationships point to non-existent sources)
780
781     * Misc
782         - Fix test warning on win32 - at this point the test suite is
783           warning-free on all known OSes
784         - Require newest namespace::clean which in turn depends on new
785           installable Package::Stash
786
787 0.08126 2010-12-28 18:10 (UTC)
788     * Fixes
789         - Bump forgotten Class::Accessor::Grouped core dependency
790         - Promote forgotten Hash::Merge optdep to a hard requirement
791         - Skip t/storage/error.t on smokers with leaking perls
792         - Fix t/storage/txn.t deadlocks on slower machines
793         - Do not run on smokers if a trial Package::Stash is found
794
795 0.08125 2010-12-27 04:30 (UTC)
796     * New Features / Changes
797         - New method ResultSource columns_info method, returning multiple
798           pairs of column name/info at once
799         - $rs->search now throws when called in void context, as it makes
800           no sense (and is nearly always a sign of a bug/misdesign)
801         - Restore long-lost ability to supply unbalanced select/as pairs
802           e.g. +select => \'DISTINCT(foo, bar)', +as => ['foo', 'bar']
803         - +columns now behaves just like columns by not stripping a
804           fully-qualified 'as' spec (i.e. foo.bar results in $obj->foo->bar)
805         - Deprecate legacy $rs->search( %condition ) syntax (warn once per
806           callsite)
807         - NULL is now supplied unquoted to all debug-objects, in order to
808           differentiate between a real NULL and the string 'NULL'
809         - New search() condition operator -value used to pass complex bind
810           values to DBI: search({ array_col => { -value => [1,2,3] }})
811         - Add full INSERT...RETURNING support for Oracle
812         - Deprecate use of -nest in search conditions (warn once per
813           callsite)
814         - Deprecate the completely useless DBIx::Class::Serialize::Storable
815           result component
816
817     * Fixes
818         - Fixed read-only attribute set attempt in ::Storage::Replicated
819           (RT#62642)
820         - Fix incomplete logic while detecting correct Oracle sequence
821           on insert
822         - Fix detection of Oracle sequences for tables without an explicitly
823           specified schema (RT#63493)
824         - Major overhaul of Storage::Oracle to handle enabled quoting
825         - Fixed incorrect composition of select/as/columns attributes during
826           chaining (RT#61235)
827         - Proper serialization of resultsets with open cursors
828         - Refactor handling of RDBMS-side values during insert() - fix
829           regression of inserts into a Postgres / ::Replicated combination
830         - Missing dependency check in t/60core.t (RT#62635)
831         - Fix regressions in IC::DT registration logic
832         - Fix regression in select-associated bind value handling (RT#61025)
833         - Simplify SQL generated by some LIMITed prefetching queries
834         - Throw an exception when a required group_by on a complex prefetch
835           can not be auto-constructed, instead of continuing to eventually
836           produce invalid SQL
837         - Fix infinite loops on old perls with a recent Try::Tiny
838         - Improve "fork()" on Win32 by reimplementing a more robust DBIC
839           thread support (still problematic, pending a DBI fix)
840         - Properly quote table name on INSERT with no values
841         - Work around possible Storage destruction warnings
842         - Fix count of grouped resultsets using HAVING with aliases
843         - Setting belongs_to columns/relationships no longer leaves the
844           FK value and related object out of sync
845         - Stop stripping newlines from SQL statements in the limit emulators
846           as it is possible that custom sql with comments was provided
847         - Add forgotten attributes to Admin.pm
848         - Fix incorrect 'having' attribute documentation (RT#64129)
849         - Improve fallback-to-master/return-to-slave reporting in
850           ::Replicated::Balancer
851         - Adjust txn_scope_guard code/tests to changes in $@ handling on
852           recent blead (RT#64251)
853
854     * Misc
855         - Add extra option groups to DBIC::Optional::Depencencies, to aid
856           users in requesting the prerequisites for a particular RDBMS
857         - Switch all serialization to use Storable::nfreeze for portable
858           architecture independent ice
859         - Fix the bogus META.yml dependency injection issue for good
860         - Refactor DBIx::Class::Storage::Statistics::debugfh() to be lazy
861
862 0.08124 2010-10-28 14:23 (UTC)
863     * New Features / Changes
864         - Add new -ident "function" indicating rhs is a column name
865           { col => { -ident => 'othercol' } } vs { col => \'othercol' }
866         - Extend 'proxy' relationship attribute
867         - Use DBIx::Class::Storage::Debug::PrettyPrint when the
868           environment variable DBIC_TRACE_PROFILE is set, see
869           DBIx::Class::Storage for more information
870         - Implemented add_unique_constraints() which delegates to
871           add_unique_constraint() as appropriate
872         - add_unique_constraint() now poparly throws if called with
873           multiple constraint definitions
874         - No longer depend on SQL::Abstract::Limit - DBIC has been doing
875           most of the heavy lifting for a while anyway
876         - FilterColumn now passes data through when transformations
877           are not specified rather than throwing an exception.
878         - Optimized RowNum based Oracle limit-dialect (RT#61277)
879         - Requesting a pager on a resultset with cached entries now
880           throws an exception, instead of returning a 1-page object
881           since the amount of rows is always equal to the "pagesize"
882         - $rs->pager now uses a lazy count to determine the amount of
883           total entries only when really needed, instead of doing it
884           at instantiation time
885         - New documentation map organized by features
886           (DBIx::Class::Manual::Features)
887         - find( { ... }, { key => $constraint } ) now throws an exception
888           when the supplied data does not fully specify $constraint
889         - find( col1 => $val1, col2 => $val2, ... ) is no longer supported
890           (it has been in deprecated state for more than 4 years)
891         - Make sure exception_action does not allow exception-hiding
892           due to badly-written handlers (the mechanism was never meant
893           to be able to suppress exceptions)
894
895     * Fixes
896         - Fix memory leak during populate() on 5.8.x perls
897         - Temporarily fixed 5.13.x failures (RT#58225)
898           (perl-core fix still pending)
899         - Fix result_soutrce_instance leaks on compose_namespace
900         - Fix $_ volatility on load_namespaces (a class changing $_
901           at compile time no longer causes a massive fail)
902         - Fix find() without a key attr. choosing constraints even if
903           some of the supplied values are NULL (RT#59219)
904         - Fixed rels ending with me breaking subqueried limit realiasing
905         - Fixed $rs->update/delete on resutsets constrained by an
906           -or condition
907         - Remove rogue GROUP BY on non-multiplying prefetch-induced
908           subqueries
909         - Fix incorrect order_by handling with prefetch on
910           $ordered_rs->search_related ('has_many_rel') resultsets
911         - Oracle sequence detection now *really* works across schemas
912           (fixed some ommissions from 0.08123)
913         - dbicadmin now uses a /usr/bin/env shebang to work better with
914           perlbrew and other local perl builds
915         - bulk-inserts via $dbh->bind_array (void $rs->populate) now
916           display properly in DBIC_TRACE
917         - Incomplete exception thrown on relationship auto-fk-inference
918           failures
919         - Fixed distinct with order_by to not double-specify the same
920           column in the GROUP BY clause
921         - Properly support column names with symbols (e.g. single quote)
922           via custom accessors
923         - Fixed ::Schema::Versioned to work properly with quoting on
924           (RT#59619)
925         - Fixed t/54taint fails under local-lib
926         - Fixed SELECT ... FOR UPDATE with LIMIT regression (RT#58554)
927         - Fixed CDBICompat to preserve order of column-group additions,
928           so that test relying on the order of %{} will no longer fail
929         - Fixed mysterious ::Storage::DBI goto-shim failures on older
930           perl versions
931         - Non-blessed reference exceptions are now correctly preserved
932           when thrown from udner DBIC (e.g. from txn_do)
933         - No longer disconnecting database handles supplied to connect
934           via a coderef
935         - Fixed t/inflate/datetime_pg.t failures due to a low dependency
936           on DateTime::Format::Pg (RT#61503)
937         - Fix dirtyness detection on source-less objects
938         - Fix incorrect limit_dialect assignment on Replicated pool members
939         - Fix invalid sql on relationship attr order_by with prefetch
940         - Fix primary key sequence detection for Oracle
941           (first trigger instead of trigger for column)
942         - Add various missing things to Optional::Dependencies
943         - Skip a test that breaks due to serious bugs in current DBD::SQLite
944         - Fix tests related to leaks and leaky perls (5.13.5, 5.13.6)
945
946     * Misc
947         - Entire test suite now passes under DBIC_TRACE=1
948         - Makefile.PL no longer imports GetOptions() to interoperate
949           better with Catalyst installers
950         - Bumped minimum Module::Install for developers
951         - Bumped DBD::SQLite dependency and removed some TODO markers
952           from tests (RT#59565)
953         - Do not execute t/zzzzzzz_sqlite_deadlock.t for regular module
954           installs - test is prone to spontaneous blow up
955         - DT-related tests now require a DateTime >= 0.55 (RT#60324)
956         - Makefile.PL now provides a pre-parsed DBIC version to the
957           Opt::Dep pod generator
958         - t/52leaks.t now performs very aggressive leak detection in
959           author/smoker mode
960
961 0.08123 2010-06-12 14:46 (UTC)
962     * Fixes
963         - Make sure Oracle identifier shortener applies to auto-generated
964           column names, so we stay within the 30-char limit (RT#58271)
965         - Oracle sequence detection now works across schemas
966         - Fix a Storage/$dbh leak introduced by the migration to
967           Try::Tiny (this is *not* a Try::Tiny bug)
968         - Fix corner case of count with group-by over a 1:1 join column
969           where the selector ends up with column name clashes
970         - POD fixes (RT#58247)
971
972     * Misc
973         - Test suite default on-disk database now checks for Win32
974           fail-conditions even when running on other OSes
975
976 0.08122 2010-06-03 17:41 (UTC)
977     * New Features
978         - Add DBIx::Class::FilterColumn for non-ref filtering
979         - ::Storage::DBI now correctly preserves a parent $dbh from
980           terminating children, even during interpreter-global
981           out-of-order destruction
982         - dbicadmin supports an -I option with the same semantics as
983           perl itself
984         - InflateColumn::DateTime support for MSSQL via DBD::Sybase
985         - Millisecond precision support for MSSQL datetimes for
986           InflateColumn::DateTime
987         - Oracle-specific hierarchical query syntax support:
988           CONNECT BY (NOCYCLE) / START WITH / ORDER SIBLINGS BY
989         - Support connecting using $ENV{DBI_DSN} and $ENV{DBI_DRIVER}
990         - current_source_alias method on ResultSet objects to
991           determine the alias to use in programatically assembled
992           search()es (originally added in 0.08100 but unmentioned)
993         - Rewrite/unification of all subselecting limit emulations
994           (RNO, Top, RowNum) to be much more robust wrt complex joined
995           resultsets
996         - MSSQL limits now don't require nearly as many applications of
997           the unsafe_subselect_ok attribute, due to optimized queries
998         - Support for Generic Subquery limit "emulation" - awfully slow
999           and inefficient but works on almost any db, and is preferred
1000           to software limit emulation
1001         - Sybase ASE driver now uses SET ROWCOUNT where possible, and
1002           Generic Subquery otherwise for limit support instead of always
1003           using software limit emulation
1004         - create_ddl_dir (and derivatives) now attempt to create the given
1005           $ddl_dir if it does not already exist
1006         - deployment_statements now automatically supplies the current RDBMS
1007           version to SQLT producer_args for MySQL, Pg, SQLite and Oracle
1008
1009     * Fixes
1010         - Fix nasty potentially data-eating bug when deleting/updating
1011           a limited resultset
1012         - Fix find() to use result_class set on object
1013         - Fix result_class setter behaviour to not mistakenly stuff attrs.
1014         - Don't try and ensure_class_loaded an object. This doesn't work.
1015         - Fix as_subselect_rs to not inject resultset class-wide where
1016           conditions outside of the resulting subquery
1017         - Fix count() failing with {for} resultset attribute (RT#56257)
1018         - Fixed incorrect detection of Limit dialect on unconnected $schema
1019         - update() on row not in_storage no longer throws an exception
1020           if there are no dirty columns to update (fixes cascaded update
1021           annoyances)
1022         - update()/delete() on prefetching resultsets no longer results
1023           in malformed SQL (some $rs attributes were erroneously left in)
1024         - Fix dbicadmin to allow deploy() on non-versioned schema
1025         - Fix dbicadmin to respect sql_dir on upgrade() (RT#57732)
1026         - Update Schema::Versioned to respect hashref style of
1027           connection_info
1028         - Do not recreate the same related object twice during MultiCreate
1029           (solves the problem of orphaned IC::FS files)
1030         - Fully qualify xp_msver selector when using DBD::Sybase with
1031           MSSQL (RT#57467)
1032         - Fix ::DBI::Storage to always be able to present a full set of
1033           connect() attributes to e.g. Schema::Versioned
1034         - Fix Oracle auto-inc trigger detection of "INSERT OR UPDATE"-type
1035           triggers
1036
1037     * Misc
1038         - Reformatted Changelog \o/
1039         - DBIC goes git://git.shadowcat.co.uk/dbsrgits/DBIx-Class.git
1040         - Allow developers to skip optional dependency forcing when working
1041           from a checkout
1042         - Add a warning to load_namespaces if a class in ResultSet/ is not
1043           a subclass of DBIx::Class::ResultSet
1044         - All DBIC exception-handling switched to Try::Tiny
1045         - All DBIC modules are now free of imports via namespace::clean
1046         - Depend on optimized SQL::Abstract (faster SQL generation)
1047         - Depend on new Class::Accessor::Grouped reintroducing optional use
1048           of Class::XSAccessor (just install C::XSA and get lightning fast
1049           column accessors)
1050
1051 0.08121 2010-04-11 18:43:00 (UTC)
1052         - Support for Firebird RDBMS with DBD::InterBase and ODBC
1053         - Add core support for INSERT RETURNING (for storages that
1054           supports this syntax, currently PostgreSQL and Firebird)
1055         - Fix spurious warnings on multiple UTF8Columns component loads
1056         - DBIx::Class::UTF8Columns entered deprecated state
1057         - DBIx::Class::InflateColumn::File entered deprecated state
1058         - DBIx::Class::Optional::Dependencies left experimental state
1059         - Add req_group_list to Opt::Deps (RT#55211)
1060         - Add support for mysql-specific STRAIGHT_JOIN (RT#55579)
1061         - Cascading delete/update are now wrapped in a transaction
1062           for atomicity
1063         - Fix accidental autovivification of ENV vars
1064         - Fix update_all and delete_all to be wrapped in a transaction
1065         - Fix multiple deficiencies when using MultiCreate with
1066           data-encoder components (e.g. ::EncodedColumn)
1067         - Fix regression where SQL files with comments were not
1068           handled properly by ::Schema::Versioned.
1069         - Fix regression on not properly throwing when $obj->relationship
1070           is unresolvable
1071         - Fix the join-optimiser to consider unqualified column names
1072           whenever possible
1073         - Fix an issue with multiple same-table joins confusing the join
1074           optimizier
1075         - Add has_relationship method to row objects
1076         - Fix regression in set_column on PK-less objects
1077         - Better error text on malformed/missing relationships
1078         - Add POD about the significance of PK columns
1079         - Fix for SQLite to ignore the (unsupported) { for => ... }
1080           attribute
1081         - Fix ambiguity in default directory handling of create_ddl_dir
1082           (RT#54063)
1083         - Support add_columns('+colname' => { ... }) to augment column
1084           definitions.
1085
1086 0.08120 2010-02-24 08:58:00 (UTC)
1087         - Make sure possibly overwritten deployment_statements methods in
1088           schemas get called on $schema->deploy
1089         - Fix count() with group_by aliased-function resultsets
1090         - with_deferred_fk_checks() Oracle support
1091         - Massive refactor and cleanup of primary key handling
1092         - Fixed regression losing custom result_class (really this time)
1093           (RT#54697)
1094         - Fixed regression in DBIC SQLT::Parser failing with a classname
1095           (as opposed to a schema object)
1096         - Changes to Storage::DBI::Oracle to accomodate changes in latest
1097           SQL::Translator (quote handling)
1098         - Make sure deployment_statements is per-storage overridable
1099         - Fix dbicadmin's (lack of) POD
1100
1101 0.08119 2010-02-15 09:36:00 (UTC)
1102         - Add $rs->is_ordered to test for existing order_by on a resultset
1103         - Add as_subselect_rs to DBIC::ResultSet from
1104           DBIC::Helper::ResultSet::VirtualView::as_virtual_view
1105         - Refactor dbicadmin adding DDL manipulation capabilities
1106         - New optional dependency manager to aid extension writers
1107         - Depend on newest bugfixed Moose
1108         - Make resultset chaining consistent wrt selection specification
1109         - Storage::DBI::Replicated cleanup
1110         - Fix autoinc PKs without an autoinc flag on Sybase ASA
1111
1112 0.08118 2010-02-08 11:53:00 (UTC)
1113         - Fix a bug causing UTF8 columns not to be decoded (RT#54395)
1114         - Fix bug in One->Many->One prefetch-collapse handling (RT#54039)
1115         - Cleanup handling of relationship accessor types
1116
1117 0.08117 2010-02-05 17:10:00 (UTC)
1118         - Perl 5.8.1 is now the minimum supported version
1119         - Massive optimization of the join resolution code - now joins
1120           will be removed from the resulting SQL if DBIC can prove they
1121           are not referenced by anything
1122         - Subqueries no longer marked experimental
1123         - Support for Informix RDBMS (limit/offset and auto-inc columns)
1124         - Support for Sybase SQLAnywhere, both native and via ODBC
1125         - might_have/has_one now warn if applied calling class's column
1126           has is_nullable set to true.
1127         - Fixed regression in deploy() with a {sources} table limit applied
1128           (RT#52812)
1129         - Views without a view_definition will throw an exception when
1130           parsed by SQL::Translator::Parser::DBIx::Class
1131         - Stop the SQLT parser from auto-adding indexes identical to the
1132           Primary Key
1133         - InflateColumn::DateTime refactoring to allow fine grained method
1134           overloads
1135         - Fix ResultSetColumn improperly selecting more than the requested
1136           column when +columns/+select is present
1137         - Fix failure when update/delete of resultsets with complex WHERE
1138           SQLA structures
1139         - Fix regression in context sensitiveness of deployment_statements
1140         - Fix regression resulting in overcomplicated query on
1141           search_related from prefetching resultsets
1142         - Fix regression on all-null returning searches (properly switch
1143           LEFT JOIN to JOIN in order to distinguish between both cases)
1144         - Fix regression in groupedresultset count() used on strict-mode
1145           MySQL connections
1146         - Better isolation of RNO-limited queries from the rest of a
1147           prefetching resultset
1148         - New MSSQL specific resultset attribute to allow hacky ordered
1149           subquery support
1150         - Fix nasty schema/dbhandle leak due to SQL::Translator
1151         - Initial implementation of a mechanism for Schema::Version to
1152           apply multiple step upgrades
1153         - Fix regression on externally supplied $dbh with AutoCommit=0
1154         - FAQ "Custom methods in Result classes"
1155         - Cookbook POD fix for add_drop_table instead of add_drop_tables
1156         - Schema POD improvement for dclone
1157
1158 0.08115 2009-12-10 09:02:00 (CST)
1159         - Real limit/offset support for MSSQL server (via Row_Number)
1160         - Fix distinct => 1 with non-selecting order_by (the columns
1161           in order_by also need to be aded to the resulting group_by)
1162         - Do not attempt to deploy FK constraints pointing to a View
1163         - Fix count/objects from search_related on limited resultset
1164         - Stop propagating distinct => 1 over search_related chains
1165         - Make sure populate() inherits the resultset conditions just
1166           like create() does
1167         - Make get_inflated_columns behave identically to get_columns
1168           wrt +select/+as (RT#46953)
1169         - Fix problems with scalarrefs under InflateColumn (RT#51559)
1170         - Throw exception on delete/update of PK-less resultsets
1171         - Refactored Sybase storage driver into a central ::DBI::Sybase
1172           dispatcher, and a sybase-specific ::DBI::Sybase::ASE
1173         - Fixed an atrocious DBD::ADO bind-value bug
1174         - Cookbook/Intro POD improvements
1175
1176 0.08114 2009-11-14 17:45:00 (UTC)
1177         - Preliminary support for MSSQL via DBD::ADO
1178         - Fix botched 0.08113 release (invalid tarball)
1179
1180 0.08113 2009-11-13 23:13:00 (UTC)
1181         - Fix populate with has_many bug
1182           (RT #50828)
1183         - Fix Oracle autoincrement broken for Resultsets with scalar refs
1184           (RT #50874)
1185         - Complete Sybase RDBMS support including:
1186           - Support for TEXT/IMAGE columns
1187           - Support for the 'money' datatype
1188           - Transaction savepoints support
1189           - DateTime inflation support
1190           - Support for bind variables when connecting to a newer Sybase with
1191              OpenClient libraries
1192           - Support for connections via FreeTDS with CASTs for bind variables
1193              when needed
1194           - Support for interpolated variables with proper quoting when
1195              connecting to an older Sybase and/or via FreeTDS
1196           - bulk API support for populate()
1197         - Transaction support for MSSQL via DBD::Sybase
1198         - Add is_paged method to DBIx::Class::ResultSet so that we can
1199           check that if we want a pager
1200         - Skip versioning test on really old perls lacking Time::HiRes
1201           (RT #50209)
1202         - Fixed on_connect_do/call regression when used with a coderef
1203           connector (RT #50003)
1204         - A couple of fixes to Ordered to remedy subclassing issues
1205         - Fixed another lingering problem with PostgreSQL
1206           auto-increment support and its interaction with multiple
1207           schemas
1208         - Remove some IN workarounds, and require a recent version of
1209           SQLA instead
1210         - Improvements to populate's handling of mixed scalarref values
1211         - Fixed regression losing result_class after $rs->find (introduced
1212           in 0.08108)
1213         - Fix in_storage() to return 1|0 as per existing documentation
1214         - Centralize handling of _determine_driver calls prior to certain
1215           ::Storage::DBI methods
1216         - Fix update/delete arbitrary condition handling (RT#51409)
1217         - POD improvements
1218
1219 0.08112 2009-09-21 10:57:00 (UTC)
1220         - Remove the recommends from Makefile.PL, DBIx::Class is not
1221           supposed to have optional dependencies. ever.
1222         - Mangle the DBIx/Class.pm POD to be more clear about
1223           copyright and license
1224         - Put back PG's multiple autoinc per table support, accidentally
1225           dropped during the serial-autodetection rewrite
1226         - Make sure ResultSetColumn does not depend on the (undefined)
1227           return value of ->cursor->reset()
1228         - Add single() to ResultSetColumn (same semantics as ResultSet)
1229         - Make sure to turn off IDENTITY_INSERT after insert() on MSSQL
1230           tables that needed it
1231         - More informative exception on failing _resolve_relationship
1232         - Allow undef/NULL as the sole grouping value in Ordered
1233         - Fix unreported rollback exceptions in TxnScopeGuard
1234         - Fix overly-eager left-join chain enforcing code
1235         - Warn about using distinct with an existing group_by
1236         - Warn about attempting to $rs->get_column a non-unique column
1237           when has_many joins are added to resultset
1238         - Refactor of the exception handling system (now everything is a
1239           DBIx::Class::Exception object)
1240
1241 0.08111 2009-09-06 21:58:00 (UTC)
1242         - The hashref to connection_info now accepts a 'dbh_maker'
1243           coderef, allowing better intergration with Catalyst
1244         - Fixed a complex prefetch + regular join regression introduced
1245           in 0.08108
1246         - Fixed insert_bulk rebless handling
1247         - Fixed Storable roundtrip regression, and general serialization
1248           cleanup
1249         - SQLT related fixes:
1250           - sqlt_type is now called on the correct storage object
1251           - hooks can now see the correct producer_type (RT#47891)
1252           - optional SQLT requirements for e.g. deploy() bumped to 0.11002
1253         - Really fixed (and greatly cleaned up) postgresql autoinc sequence
1254           autodetection
1255         - Automatically detect MySQL v3 and use INNER JOIN instead of JOIN
1256         - POD improvements (including RT#48769)
1257         - Test suite tweaks (including fixes for recent CPANTS fails)
1258         - Better support for MSSQL IDENTITY_INSERT ON
1259
1260 0.08109 2009-08-18 08:35:00 (UTC)
1261         - Replication updates:
1262           - Improved the replication tests so that they are more reliable
1263             and accurate, and hopefully solve some cross platform issues.
1264           - Bugfixes related to naming particular replicants in a
1265             'force_pool' attribute.
1266           - Lots of documentation updates, including a new Introduction.pod
1267             file.
1268           - Fixed the way we detect transaction to make this more reliable
1269             and forward looking.
1270           - Fixed some trouble with the way Moose Types are used.
1271           - Made discard_chages/get_from_storage replication aware (they
1272             now read from the master storage by default)
1273         - Refactor of MSSQL storage drivers, with some new features:
1274           - Support for placeholders for MSSQL via DBD::Sybase with proper
1275             autodetection
1276           - 'uniqueidentifier' support with auto newid()
1277           - Dynamic cursor support and other MARS options for ODBC
1278           - savepoints with auto_savepoint => 1
1279         - Support for MSSQL 'money' type
1280         - Support for 'smalldatetime' type used in MSSQL and Sybase for
1281           InflateColumn::DateTime
1282         - Support for Postgres 'timestamp without timezone' type in
1283           InflateColumn::DateTime (RT#48389)
1284         - Added new MySQL specific on_connect_call macro 'set_strict_mode'
1285           (also known as make_mysql_not_suck_as_much)
1286         - Multiple prefetch-related fixes:
1287           - Adjust overly agressive subquery join-chain pruning
1288           - Always preserve the outer join-chain - fixes numerous
1289             problems with search_related chaining
1290           - Deal with the distinct => 1 attribute properly when using
1291             prefetch
1292         - An extension of the select-hashref syntax, allowing labeling
1293           SQL-side aliasing: select => [ { max => 'foo', -as => 'bar' } ]
1294         - Massive optimization of the DBI storage layer - reduce the
1295           amount of connected() ping-calls
1296         - Some fixes of multi-create corner cases
1297         - Multiple POD improvements
1298         - Added exception when resultset is called without an argument
1299         - Improved support for non-schema-qualified tables under
1300           Postgres (fixed last_insert_id sequence name auto-detection)
1301
1302 0.08108 2009-07-05 23:15:00 (UTC)
1303         - Fixed the has_many prefetch with limit/group deficiency -
1304           it is now possible to select "top 5 commenters" while
1305           prefetching all their comments
1306         - New resultsed method count_rs, returns a ::ResultSetColumn
1307           which in turn returns a single count value
1308         - Even better support of count with limit
1309         - New on_connect_call/on_disconnect_call functionality (check
1310           POD of Storage::DBI)
1311         - Automatic datetime handling environment/session setup for
1312           Oracle via connect_call_datetime_setup()
1313         - count/all on related left-joined empty resultsets now correctly
1314           returns 0/()
1315         - Fixed regression when both page and offset are specified on
1316           a resultset
1317         - Fixed HRI returning too many empty results on multilevel
1318           nonexisting prefetch
1319         - make_column_dirty() now overwrites the deflated value with an
1320           inflated one if such exists
1321         - Fixed set_$rel with where restriction deleting rows outside
1322           the restriction
1323         - populate() returns the created objects or an arrayref of the
1324           created objects depending on scalar vs. list context
1325         - Fixed find_related on 'single' relationships - the former
1326           implementation would overspecify the WHERE condition, reporting
1327           no related objects when there in fact is one
1328         - SQL::Translator::Parser::DBIx::Class now attaches tables to the
1329           central schema object in relationship dependency order
1330         - Fixed regression in set_column() preventing sourceless object
1331           manipulations
1332         - Fixed a bug in search_related doubling a join if the original
1333           $rs already joins/prefetches the same relation
1334         - Storage::DBI::connected() improvements for Oracle and Sybase
1335         - Fixed prefetch+incomplete select regression introduced in
1336           0.08100
1337         - MSSQL limit (TOP emulation) fixes and improvements
1338
1339 0.08107 2009-06-14 08:21:00 (UTC)
1340         - Fix serialization regression introduced in 0.08103 (affects
1341           Cursor::Cached)
1342         - POD fixes
1343         - Fixed incomplete ::Replicated debug output
1344
1345 0.08106 2009-06-11 21:42:00 (UTC)
1346         - Switched SQLite storage driver to DateTime::Format::SQLite
1347           (proper timezone handling)
1348         - Fix more test problems
1349
1350 0.08105 2009-06-11 19:04:00 (UTC)
1351         - Update of numeric columns now properly uses != to determine
1352           dirtyness instead of the usual eq
1353         - Fixes to IC::DT tests
1354         - Fixed exception when undef_if_invalid and timezone are both set
1355           on an invalid datetime column
1356
1357 0.08104 2009-06-10 13:38:00 (UTC)
1358         - order_by now can take \[$sql, @bind] as in
1359           order_by => { -desc => \['colA LIKE ?', 'somestring'] }
1360         - SQL::Abstract errors are now properly croak()ed with the
1361           correct trace
1362         - populate() now properly reports the dataset slice in case of
1363           an exception
1364         - Fixed corner case when populate() erroneously falls back to
1365           create()
1366         - Work around braindead mysql when doing subquery counts on
1367           resultsets containing identically named columns from several
1368           tables
1369         - Fixed m2m add_to_$rel to invoke find_or_create on the far
1370           side of the relation, to avoid duplicates
1371         - DBIC now properly handles empty inserts (invoking all default
1372           values from the DB, normally via INSERT INTO tbl DEFAULT VALUES
1373         - Fix find_or_new/create to stop returning random rows when
1374           default value insert is requested (RT#28875)
1375         - Make IC::DT extra warning state the column name too
1376         - It is now possible to transparrently search() on columns
1377           requiring DBI bind (i.e. PostgreSQL BLOB)
1378         - as_query is now a Storage::DBI method, so custom cursors can
1379           be seamlessly used
1380         - Fix search_related regression introduced in 0.08103
1381
1382 0.08103 2009-05-26 19:50:00 (UTC)
1383         - Multiple $resultset -> count/update/delete fixes. Now any
1384           of these operations will succeed, regardless of the complexity
1385           of $resultset. distinct, group_by, join, prefetch are all
1386           supported with expected results
1387         - Return value of $rs->delete is now the storage return value
1388           and not 1 as it used to be
1389         - don't pass SQL functions into GROUP BY
1390         - Remove MultiDistinctEmulation.pm, effectively deprecating
1391           { select => { distinct => [ qw/col1 col2/ ] } }
1392         - Change ->count code to work correctly with DISTINCT (distinct => 1)
1393           via GROUP BY
1394         - Removed interpolation of bind vars for as_query - placeholders
1395           are preserved and nested query bind variables are properly
1396           merged in the correct order
1397         - Refactor DBIx::Class::Storage::DBI::Sybase to automatically
1398           load a subclass, namely Microsoft_SQL_Server.pm
1399           (similar to DBIx::Class::Storage::DBI::ODBC)
1400         - Refactor InflateColumn::DateTime to allow components to
1401           circumvent DateTime parsing
1402         - Support inflation of timestamp datatype
1403         - Support BLOB and CLOB datatypes on Oracle
1404         - Storage::DBI::Replicated::Balancer::Random:
1405           added master_read_weight
1406         - Storage::DBI::Replicated: storage opts from connect_info,
1407           connect_info merging to replicants, hashref connect_info support,
1408           improved trace output, other bug fixes/cleanups
1409         - distinct => 1 with prefetch now groups by all columns
1410         - on_connect_do accepts a single string equivalent to a one
1411           element arrayref (RT#45159)
1412         - DB2 limit + offset now works correctly
1413         - Sybase now supports autoinc PKs (RT#40265)
1414         - Prefetch on joins over duplicate relations now works
1415           correctly (RT#28451)
1416         - "timestamp with time zone" columns (for Pg) now get inflated with a
1417           time zone information preserved
1418         - MSSQL Top limit-emulation improvements (GROUP BY and subquery support)
1419         - ResultSetColumn will not lose the joins infered from a parent
1420           resultset prefetch
1421
1422 0.08102 2009-04-30 08:29:00 (UTC)
1423         - Fixed two subtle bugs when using columns or select/as
1424           paired with a join (limited prefetch)
1425         - Fixed breakage of cdbi tests (RT#45551)
1426         - Some POD improvements
1427
1428 0.08101 2009-04-27 09:45:00 (UTC)
1429         - Fix +select, +as, +columns and include_columns being stripped
1430           by $rs->get_column
1431         - move load_optional_class from DBIx::Class::Componentised to
1432           Class::C3::Componentised, bump dependency
1433         - register_extra_source() now *really* fixed wrt subclassing
1434         - Added missing POD descriptions (RT#45195)
1435         - Fix insert() to not store_column() every present object column
1436         - Multiple Makefile.PL fixes
1437
1438 0.08100 2009-04-19 11:39:35 (UTC)
1439         - Todo out the register_extra_source test until after shipping
1440
1441 0.08099_08 2009-03-30 00:00:00 (UTC)
1442         - Fixed taint mode with load_namespaces
1443         - Putting IC::DateTime locale, timezone or floating_tz_ok attributes into
1444           extra => {} has been deprecated. The new way is to put these things
1445           directly into the columns definition
1446         - Switched MI code to MRO::Compat
1447         - Document db-side default_value caveats
1448         - Search_like() now warns to indicate deprecation in 0.09.
1449         - TxnScopeGuard left experimental state
1450
1451 0.08099_07 2009-02-27 02:00:00 (UTC)
1452         - multi-create using find_or_create rather than _related for post-insert
1453         - fix get_inflated_columns to check has_column_loaded
1454         - Add DBIC_MULTICREATE_DEBUG env var (undocumented, quasi-internal)
1455         - Fix up multi-create to:
1456           - correctly propagate columns loaded during multi-insert of rels
1457           - not try and insert things tagged on via new_related unless required
1458         - Possible to set locale in IC::DateTime extra => {} config
1459         - Calling the accessor of a belongs_to when the foreign_key
1460           was NULL and the row was not stored would unexpectedly fail
1461         - Split sql statements for deploy only if SQLT::Producer returned a scalar
1462           containing all statements to be executed
1463         - Add as_query() for ResultSet and ResultSetColumn. This makes subqueries
1464           possible. See the Cookbook for details.
1465         - Massive rewrite of Ordered to properly handle position constraints and
1466           to make it more matpath-friendly
1467         - deploy_statements called ddl_filename with the $version and $dir arguments
1468           in the wrong order.
1469         - columns/+columns attributes now support { as => select } hahsrefs
1470         - support for views both in DBIC and via deploy() in SQLT
1471
1472 0.08099_06 2009-01-23 07:30:00 (UTC)
1473         - Allow a scalarref to be supplied to the 'from' resultset attribute
1474         - Classes submitted as result_class for a resultsource are now
1475           automatically loaded via ensure_loaded()
1476         - 'result_class' resultset attribute, identical to result_class()
1477         - add 'undef_on_null_fk' option for relationship accessors of type 'single'.
1478           This will prevent DBIC from querying the database if one or more of
1479           the key columns IS NULL
1480         - for 'belongs_to' rels, 'undef_on_null_fk' defaults to true.
1481         - fixed scope unaware last_insert_id fetching for MSSQL
1482           (http://msdn.microsoft.com/en-us/library/ms190315.aspx)
1483         - an sqlt_deploy_hook can now be shared between result sources using
1484           a configurable callback trigger
1485         - new order_by => { -desc => 'colname' } syntax supported
1486         - PG array datatype supported
1487         - insert should use store_column, not set_column to avoid marking
1488           clean just-stored values as dirty. New test for this
1489         - regression test for source_name
1490
1491 0.08099_05 2008-10-30 21:30:00 (UTC)
1492         - Rewrite of Storage::DBI::connect_info(), extended with an
1493           additional argument format type
1494         - InflateColumn::DateTime: add warning about floating timezone
1495         - InflateColumn::DateTime: possible to enforce/skip inflation
1496         - delete throws exception if passed arguments to prevent drunken mishaps.
1497         - Fix storage to copy scalar conds before regexping to avoid
1498           trying to modify a constant in odd edge cases
1499         - Related resultsets on uninserted objects are now empty
1500         - Fixed up related resultsets and multi-create
1501         - Fixed superfluous connection in ODBC::_rebless
1502         - Fixed undef PK for first insert in ODBC::Microsoft_SQL_Server
1503         - Added virtual method to Versioned so a user can create upgrade
1504           path across multiple versions (jgoulah)
1505         - Better (and marginally faster) implementation of the HashRefInflator
1506           hash construction algorithm
1507         - Allow explicit specification of ON DELETE/ON UPDATE constraints
1508           when using the SQLT parser
1509
1510 0.08099_04 2008-07-24 01:00:00
1511         - Functionality to storage to enable a sub to be run without FK checks
1512         - Fixed $schema->clone bug which caused clone and source to share
1513           internal hash refs
1514         - Added register_extra_source methods for additional sources
1515         - Added datetime_undef_if_invalid for InflateColumn::DateTime to
1516           return undef on invalid date/time values
1517         - Added search_related_rs method to ResultSet
1518         - add a make_column_dirty method to Row to force updates
1519         - throw a clear exception when user tries multi-has_many prefetch
1520         - SQLT parser prefixes index names with ${table}_idx_ to avoid clashes
1521         - mark ResultSetManager as deprecated and undocument it
1522         - pod fix (RT #32988)
1523         - add Test::Exception to test requirements (RT #34256)
1524         - make ash's build_requires/META.yml fixes work better
1525         - is_deferable support on relations used by the SQL::Translator
1526           parser
1527         - Refactored DBIx::Class::Schema::Versioned
1528         - Syntax errors from resultset components are now reported correctly
1529         - sqltargs respected correctly in deploy et al.
1530         - Added support for savepoints, and using them automatically in
1531           nested transactions if auto_savepoint is set in connect_info.
1532         - Changed naming scheme for constraints and keys in the sqlt parser;
1533           names should now be consistent and collision-free.
1534         - Improve handling of explicit key attr in ResultSet::find
1535         - Add warnings for non-unique ResultSet::find queries
1536         - Changed Storage::DBI::Replication to Storage::DBI::Replicated and
1537           refactored support.
1538         - By default now deploy/diff et al. will ignore constraint and index
1539           names
1540         - Add ResultSet::_is_deterministic_value, make new_result filter the
1541           values passed to new to drop values that would generate invalid SQL.
1542         - Use Sub::Name to name closures before installing them. Fixes
1543           incompatibility with Moose method modifiers on generated methods.
1544
1545 0.08010 2008-03-01 10:30
1546         - Fix t/94versioning.t so it passes with latest SQL::Translator
1547
1548 0.08009 2008-01-20 13:30
1549         - Made search_rs smarter about when to preserve the cache to fix
1550           mm prefetch usage
1551         - Added Storage::DBI subclass for MSSQL over ODBC.
1552         - Added freeze, thaw and dclone methods to Schema so that thawed
1553           objects will get re-attached to the schema.
1554         - Moved dbicadmin to JSON::Any wrapped JSON.pm for a sane API
1555           (also fixes RT #32393)
1556         - introduced DBIx::Class::set_inflated_columns
1557         - DBIx::Class::Row::copy uses set_inflated_columns
1558
1559 0.08008 2007-11-16 14:30:00
1560         - Fixed join merging bug (test from Zby)
1561         - When adding relationships, it will throw an exception if you get the
1562           foreign and self parts the wrong way round in the condition
1563         - ResultSetColumn::func() now returns all results if called in list
1564           context; this makes things like func('DISTINCT') work as expected
1565         - Many-to-many relationships now warn if the utility methods would
1566           clash
1567         - InflateColumn::DateTime now accepts an extra parameter of timezone
1568           to set timezone on the DT object (thanks Sergio Salvi)
1569         - Added sqlt_deploy_hook to result classes so that indexes can be
1570           added.
1571         - Added startup checks to warn loudly if we appear to be running on
1572           RedHat systems from perl-5.8.8-10 and up that have the bless/overload
1573           patch applied (badly) which causes 2x -> 100x performance penalty.
1574           (Jon Schutz)
1575         - ResultSource::reverse_relationship_info can distinguish between
1576           sources using the same table
1577         - Row::insert will now not fall over if passed duplicate related objects
1578         - Row::copy will not fall over if you have two relationships to the
1579           same source with a unique constraint on it
1580
1581 0.08007 2007-09-04 19:36:00
1582         - patch for Oracle datetime inflation (abram@arin.net)
1583         - added on_disconnect_do
1584         - on_connect_do and on_disconnect_do take coderefs and arrayrefs
1585
1586 0.08006 2007-08-12 15:12:00
1587         - Move to using Class::C3::Componentised
1588         - Remove warn statement from DBIx::Class::Row
1589
1590 0.08005 2007-08-06
1591         - add timestamp fix re rt.cpan 26978 - no test yet but change
1592           clearly should cause no regressions
1593         - provide alias for related_resultset via local() so it's set
1594           correctly at resultset construction time (fixes RestrictWithObject)
1595         - fixes bind params in debug statements
1596           (original test from abraxxa)
1597         - fixed storage->connected fork bug
1598           (test and fix from Radu Greab)
1599         - add 1; to AccessorGroup.pm for stuff that still uses it
1600         - refactor Statistics to create debugging filehandle to fix bug with
1601           closed STDERR, update docs and modify Versioned to use Statistics
1602           (original fix from diz)
1603
1604 0.08004 2007-08-06 19:00:00
1605         - fix storage connect code to not trigger bug via auto-viv
1606           (test from aherzog)
1607         - fixup cursor_class to be an 'inherited' attr for per-package defaults
1608         - add default_resultset_attributes entry to Schema
1609         - optimisation in DBI::Cursor to check software_limit before falling
1610           back to base Cursor->all
1611         - fix bug with create_multi not inserting non-storage objects
1612           (test and fix from davinchi)
1613         - DBIx::Class::AccessorGroup made empty subclass of
1614           Class::Accessor::Grouped
1615         - fixed an ugly bug regarding $dbh->{AutoCommit} and transactions
1616         - ensure_class_loaded handles non-classnames better.
1617         - non-destructive hashref handling for connect_info options
1618         - count no longer returns negative values after slice
1619           (report and test from JOHANL)
1620         - rebless before building datetime_parser
1621           (patch from mattlaw / Matt Lawrence)
1622
1623 0.08003 2007-07-14 18:01:00
1624         - improved populate bulk_insert mode
1625         - fixed up multi_create to be more intelligent about PK<->PK rels
1626         - fix many-many rels to not use set_columns
1627         - Unmarked deploy as experimental since it isn't anymore
1628         - Removed Cwd dep since it's not required and causes problems
1629           with debian packaging
1630         - Patch to fix ? in data for NoBindVars (from Tom Hukins)
1631         - Restored mk_classaccessor method for compatibility
1632         - Fixed group_by problem with oracle limit syntax
1633         - Fixed attr merging problem
1634         - Fixed $rs->get_column w/prefetch  problem
1635
1636 0.08002 2007-06-20 06:10:00
1637         - add scope guard to Row::insert to ensure rollback gets called
1638         - more heuristics in Row::insert to try and get insert order right
1639         - eliminate vestigial code in PK::Auto
1640         - more expressive DBI errors
1641         - soften errors during deploy
1642         - ensure_connected before txn_begin to catch stomping on transaction
1643           depth
1644         - new method "rethrow" for our exception objects
1645
1646 0.08001 2007-06-17 21:21:02
1647         - Cleaned up on_connect handling for versioned
1648         - removed DateTime use line from multi_create test
1649         - hid DBIx::ContextualFetch::st override in CDBICompat
1650
1651 0.08000 2007-06-17 18:06:12
1652         - Fixed DBIC_TRACE debug filehandles to set ->autoflush(1)
1653         - Fixed circular dbh<->storage in HandleError with weakref
1654
1655 0.07999_06 2007-06-13 04:45:00
1656         - tweaked Row.pm to make last_insert_id take multiple column names
1657         - Fixed DBIC::Storage::DBI::Cursor::DESTROY bug that was
1658           messing up exception handling
1659         - added exception objects to eliminate stacktrace/Carp::Clan
1660           output redundancy
1661         - setting $ENV{DBIC_TRACE} defaults stacktrace on.
1662         - added stacktrace option to Schema, makes throw_exception
1663           use "confess"
1664         - make database handles use throw_exception by default
1665         - make database handles supplied by a coderef use our
1666           standard HandleError/RaiseError/PrintError
1667         - add "unsafe" connect_info option to suppress our setting
1668           of HandleError/RaiseError/PrintError
1669         - removed several redundant evals whose sole purpose was to
1670           provide extra debugging info
1671         - fixed page-within-page bug (reported by nilsonsfj)
1672         - fixed rare bug when database is disconnected inbetween
1673           "$dbh->prepare_cached" and "$sth->execute"
1674
1675 0.07999_05 2007-06-07 23:00:00
1676         - Made source_name rw in ResultSource
1677         - Fixed up SQL::Translator test/runtime dependencies
1678         - Fixed t/60core.t in the absence of DateTime::Format::MySQL
1679         - Test cleanup and doc note (ribasushi)
1680
1681 0.07999_04 2007-06-01 14:04:00
1682         - pulled in Replication storage from branch and marked EXPERIMENTAL
1683         - fixup to ensure join always LEFT after first LEFT join depthwise
1684         - converted the vendor tests to use schema objects intead of schema
1685           classes, made cleaned more reliable with END blocks
1686         - versioning support via DBIx::Class::Schema::Versioned
1687         - find/next now return undef rather than () on fail from Bernhard Graf
1688         - rewritten collapse_result to fix prefetch
1689         - moved populate to resultset
1690         - added support for creation of related rows via insert and populate
1691         - transaction support more robust now in the face of varying AutoCommit
1692           and manual txn_begin usage
1693         - unbreak back-compat for Row/ResultSet->new_result
1694         - Added Oracle/WhereJoins.pm for Oracle >= 8 to support
1695           Oracle <= 9i, and provide Oracle with a better join method for
1696           later versions.  (I use the term better loosely.)
1697         - The SQL::T parser class now respects a relationship attribute of
1698           is_foreign_key_constrain to allow explicit control over wether or
1699           not a foreign constraint is needed
1700         - resultset_class/result_class now (again) auto loads the specified
1701           class; requires Class::Accessor::Grouped 0.05002+
1702         - added get_inflated_columns to Row
1703         - %colinfo accessor and inflate_column now work together
1704         - More documentation updates
1705         - Error messages from ->deploy made more informative
1706         - connect_info will now always return the arguments it was
1707           originally given
1708         - A few small efficiency improvements for load_classes
1709           and compose_namespace
1710
1711 0.07006 2007-04-17 23:18:00
1712         - Lots of documentation updates
1713         - deploy now takes an optional 'source_names' parameter (dec)
1714         - Quoting for for columns_info_for
1715         - RT#25683 fixed (multiple open sths on DBD::Sybase)
1716         - CDBI compat infers has_many from has_a (Schwern)
1717         - Fix ddl_filename transformation (Carl Vincent)
1718
1719 0.07999_02 2007-01-25 20:11:00
1720         - add support for binding BYTEA and similar parameters (w/Pg impl)
1721         - add support to Ordered for multiple ordering columns
1722         - mark DB.pm and compose_connection as deprecated
1723         - switch tests to compose_namespace
1724         - ResultClass::HashRefInflator added
1725         - Changed row and rs objects to not have direct handle to a source,
1726           instead a (schema,source_name) tuple of type ResultSourceHandle
1727
1728 0.07005 2007-01-10 18:36:00
1729         - fixup changes file
1730         - remove erroneous .orig files - oops
1731
1732 0.07004 2007-01-09 21:52:00
1733         - fix find_related-based queries to correctly grep the unique key
1734         - fix InflateColumn to inflate/deflate all refs but scalar refs
1735
1736 0.07003 2006-11-16 11:52:00
1737         - fix for rt.cpan.org #22740 (use $^X instead of hardcoded "perl")
1738         - Tweaks to resultset to allow inflate_result to return an array
1739         - Fix UTF8Columns to work under Perl <= 5.8.0
1740         - Fix up new_result in ResultSet to avoid alias-related bugs
1741         - Made new/update/find handle 'single' rel accessor correctly
1742         - Fix NoBindVars to be safer and handle non-true bind values
1743         - Don't blow up if columns_info_for returns useless results
1744         - Documentation updates
1745
1746 0.07999_01 2006-10-05 21:00:00
1747         - add connect_info option "disable_statement_caching"
1748         - create insert_bulk using execute_array, populate uses it
1749         - added DBIx::Class::Schema::load_namespaces, alternative to
1750           load_classes
1751         - added source_info method for source-level metadata (kinda like
1752           column_info)
1753         - Some of ::Storage::DBI's code/docs moved to ::Storage
1754         - DBIx::Class::Schema::txn_do code moved to ::Storage
1755         - Storage::DBI now uses exceptions instead of ->ping/->{Active} checks
1756         - Storage exceptions are thrown via the schema class's throw_exception
1757         - DBIx::Class::Schema::throw_exception's behavior can be modified via
1758           ->exception_action
1759         - columns_info_for is deprecated, and no longer runs automatically.
1760           You can make it work like before via
1761           __PACKAGE__->column_info_from_storage(1) for now
1762         - Replaced DBIx::Class::AccessorGroup and Class::Data::Accessor with
1763           Class::Accessor::Grouped. Only user noticible change is to
1764           table_class on ResultSourceProxy::Table (i.e. table objects in
1765           schemas) and, resultset_class and result_class in ResultSource.
1766           These accessors no longer automatically require the classes when
1767           set.
1768
1769 0.07002 2006-09-14 21:17:32
1770         - fix quote tests for recent versions of SQLite
1771         - added reference implementation of Manual::Example
1772         - backported column_info_from_storage accessor from -current, but
1773         - fixed inflate_datetime.t tests/stringify under older Test::More
1774         - minor fixes for many-to-many relationship helpers
1775         - cleared up Relationship docs, and fixed some typos
1776         - use ref instead of eval to check limit syntax (to avoid issues with
1777           Devel::StackTrace)
1778         - update ResultSet::_cond_for_update_delete to handle more complicated
1779           queries
1780         - bugfix to Oracle columns_info_for
1781         - remove_columns now deletes columns from _columns
1782
1783 0.07001 2006-08-18 19:55:00
1784         - add directory argument to deploy()
1785         - support default aliases in many_to_many accessors.
1786         - support for relationship attributes in many_to_many accessors.
1787         - stop search_rs being destructive to attrs
1788         - better error reporting when loading components
1789         - UTF8Columns changed to use "utf8" instead of "Encode"
1790         - restore automatic aliasing in ResultSet::find() on nonunique queries
1791         - allow aliases in ResultSet::find() queries (in cases of relationships
1792           with prefetch)
1793         - pass $attrs to find from update_or_create so a specific key can be
1794           provided
1795         - remove anonymous blesses to avoid major speed hit on Fedora Core 5's
1796           Perl and possibly others; for more information see:
1797           https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=196836
1798         - fix a pathological prefetch case
1799         - table case fix for Oracle in columns_info_for
1800         - stopped search_rs deleting attributes from passed hash
1801
1802 0.07000 2006-07-23 02:30:00
1803         - supress warnings for possibly non-unique queries, since
1804           _is_unique_query doesn't infer properly in all cases
1805         - skip empty queries to eliminate spurious warnings on ->deploy
1806         - fixups to ORDER BY, tweaks to deepen some copies in ResultSet
1807         - fixup for RowNum limit syntax with functions
1808
1809 0.06999_07 2006-07-12 20:58:05
1810         - fix issue with from attr copying introduced in last release
1811
1812 0.06999_06 2006-07-12 17:16:55
1813         - documentation for new storage options, fix S::A::L hanging on to $dbh
1814         - substantial refactor of search_related code to fix alias numbering
1815         - don't generate partial unique keys in ResultSet::find() when a table
1816           has more than one unique constraint which share a column and only one
1817           is satisfied
1818         - cleanup UTF8Columns and make more efficient
1819         - rename DBIX_CLASS_STORAGE_DBI_DEBUG to DBIC_TRACE (with compat)
1820         - rename _parent_rs to _parent_source in ResultSet
1821         - new FAQ.pod!
1822
1823 0.06999_05 2006-07-04 14:40:01
1824         - fix issue with incorrect $rs->{attrs}{alias}
1825         - fix subclassing issue with source_name
1826         - tweak quotes test to output text on failure
1827         - fix Schema->txn_do to not fail as a classmethod
1828
1829 0.06999_04 2006-06-29 20:18:47
1830         - disable cdbi-t/02-Film.t warning tests under AS perl
1831         - fixups to MySQL tests (aka "work round mysql being retarded")
1832         - compat tweaks for Storage debug logging
1833
1834 0.06999_03 2006-06-26 21:04:44
1835         - various documentation improvements
1836         - fixes to pass test suite on Windows
1837         - rewrote and cleaned up SQL::Translator tests
1838         - changed relationship helpers to only call ensure_class_loaded when the
1839           join condition is inferred
1840         - rewrote many_to_many implementation, now provides helpers for adding
1841           and deleting objects without dealing with the link table
1842         - reworked InflateColumn implementation to lazily deflate where
1843           possible; now handles passing an inflated object to new()
1844         - changed join merging to not create a rel_2 alias when adding a join
1845           that already exists in a parent resultset
1846         - Storage::DBI::deployment_statements now calls ensure_connected
1847           if it isn't passed a type
1848         - fixed Componentized::ensure_class_loaded
1849         - InflateColumn::DateTime supports date as well as datetime
1850         - split Storage::DBI::MSSQL into MSSQL and Sybase::MSSQL
1851         - fixed wrong debugging hook call in Storage::DBI
1852         - set connect_info properly before setting any ->sql_maker things
1853
1854 0.06999_02 2006-06-09 23:58:33
1855         - Fixed up POD::Coverage tests, filled in some POD holes
1856         - Added a warning for incorrect component order in load_components
1857         - Fixed resultset bugs to do with related searches
1858         - added code and tests for Componentized::ensure_class_found and
1859           load_optional_class
1860         - NoBindVars + Sybase + MSSQL stuff
1861         - only rebless S::DBI if it is still S::DBI and not a subclass
1862         - Added `use' statement for DBD::Pg in Storage::DBI::Pg
1863         - stopped test relying on order of unordered search
1864         - bugfix for join-types in nested joins using the from attribute
1865         - obscure prefetch problem fixed
1866         - tightened up deep search_related
1867         - Fixed 'DBIx/Class/DB.pm did not return a true value' error
1868         - Revert change to test for deprecated find usage and swallow warnings
1869         - Slight wording change to new_related() POD
1870         - new specific test for connect_info coderefs
1871         - POD clarification and content bugfixing + a few code formatting fixes
1872         - POD::Coverage additions
1873         - fixed debugfh
1874         - Fix column_info stomping
1875
1876 0.06999_01 2006-05-28 17:19:30
1877         - add automatic naming of unique constraints
1878         - marked DB.pm as deprecated and noted it will be removed by 1.0
1879         - add ResultSetColumn
1880         - refactor ResultSet code to resolve attrs as late as possible
1881         - merge prefetch attrs into join attrs
1882         - add +select and +as attributes to ResultSet
1883         - added InflateColumn::DateTime component
1884         - refactor debugging to allow for profiling using Storage::Statistics
1885         - removed Data::UUID from deps, made other optionals required
1886         - modified SQLT parser to skip dupe table names
1887         - added remove_column(s) to ResultSource/ResultSourceProxy
1888         - added add_column alias to ResultSourceProxy
1889         - added source_name to ResultSource
1890         - load_classes now uses source_name and sets it if necessary
1891         - add update_or_create_related to Relationship::Base
1892         - add find_or_new to ResultSet/ResultSetProxy and find_or_new_related
1893           to Relationship::Base
1894         - add accessors for unique constraint names and coulums to
1895           ResultSource/ResultSourceProxy
1896         - rework ResultSet::find() to search unique constraints
1897         - CDBICompat: modify retrieve to fix column casing when ColumnCase is
1898           loaded
1899         - CDBICompat: override find_or_create to fix column casing when
1900           ColumnCase is loaded
1901         - reorganized and simplified tests
1902         - added Ordered
1903         - added the ability to set on_connect_do and the various sql_maker
1904           options as part of Storage::DBI's connect_info.
1905
1906 0.06003 2006-05-19 15:37:30
1907         - make find_or_create_related check defined() instead of truth
1908         - don't unnecessarily fetch rels for cascade_update
1909         - don't set_columns explicitly in update_or_create; instead use
1910           update($hashref) so InflateColumn works
1911         - fix for has_many prefetch with 0 related rows
1912         - make limit error if rows => 0
1913         - added memory cycle tests and a long-needed weaken call
1914
1915 0.06002 2006-04-20 00:42:41
1916         - fix set_from_related to accept undef
1917         - fix to Dumper-induced hash iteration bug
1918         - fix to copy() with non-composed resultsource
1919         - fix to ->search without args to clone rs but maintain cache
1920         - grab $self->dbh once per function in Storage::DBI
1921         - nuke ResultSource caching of ->resultset for consistency reasons
1922         - fix for -and conditions when updating or deleting on a ResultSet
1923
1924 0.06001
1925         - Added fix for quoting with single table
1926         - Substantial fixes and improvements to deploy
1927         - slice now uses search directly
1928         - fixes for update() on resultset
1929         - bugfix to Cursor to avoid error during DESTROY
1930         - transaction DBI operations now in debug trace output
1931
1932 0.06000 2006-03-25 18:03:46
1933         - Lots of documentation improvements
1934         - Minor tweak to related_resultset to prevent it storing a searched rs
1935         - Fixup to columns_info_for when database returns type(size)
1936         - Made do_txn respect void context (on the off-chance somebody cares)
1937         - Fix exception text for nonexistent key in ResultSet::find()
1938
1939 0.05999_04 2006-03-18 19:20:49
1940         - Fix for delete on full-table resultsets
1941         - Removed caching on count() and added _count for pager()
1942         - ->connection does nothing if ->storage defined and no args
1943           (and hence ->connect acts like ->clone under the same conditions)
1944         - Storage::DBI throws better exception if no connect info
1945         - columns_info_for made more robust / informative
1946         - ithreads compat added, fork compat improved
1947         - weaken result_source in all resultsets
1948         - Make pg seq extractor less sensitive.
1949
1950 0.05999_03 2006-03-14 01:58:10
1951         - has_many prefetch fixes
1952         - deploy now adds drop statements before creates
1953         - deploy outputs debugging statements if DBIX_CLASS_STORAGE_DBI_DEBUG
1954             is set
1955
1956 0.05999_02 2006-03-10 13:31:37
1957         - remove test dep on YAML
1958         - additional speed tweaks for C3
1959         - allow scalarefs passed to order_by to go straight through to SQL
1960         - renamed insert_or_update to update_or_insert (with compat alias)
1961         - hidden lots of packages from the PAUSE Indexer
1962
1963 0.05999_01 2006-03-09 18:31:44
1964         - renamed cols attribute to columns (cols still supported)
1965         - added has_column_loaded to Row
1966         - Storage::DBI connect_info supports coderef returning dbh as 1st arg
1967         - load_components() doesn't prepend base when comp. prefixed with +
1968         - $schema->deploy
1969         - HAVING support
1970         - prefetch for has_many
1971         - cache attr for resultsets
1972         - PK::Auto::* no longer required since Storage::DBI::* handle auto-inc
1973         - minor tweak to tests for join edge case
1974         - added cascade_copy relationship attribute
1975           (sponsored by Airspace Software, http://www.airspace.co.uk/)
1976         - clean up set_from_related
1977         - made copy() automatically null out auto-inc columns
1978         - added txn_do() method to Schema, which allows a coderef to be
1979           executed atomically
1980
1981 0.05007 2006-02-24 00:59:00
1982         - tweak to Componentised for Class::C3 0.11
1983         - fixes for auto-inc under MSSQL
1984
1985 0.05006 2006-02-17 15:32:40
1986         - storage fix for fork() and workaround for Apache::DBI
1987         - made update(\%hash) work on row as well as rs
1988         - another fix for count with scalar group_by
1989         - remove dependency on Module::Find in 40resultsetmanager.t (RT #17598)
1990
1991 0.05005 2006-02-13 21:24:51
1992         - remove build dependency on version.pm
1993
1994 0.05004 2006-02-13 20:59:00
1995         - allow specification of related columns via cols attr when primary
1996           keys of the related table are not fetched
1997         - fix count for group_by as scalar
1998         - add horrific fix to make Oracle's retarded limit syntax work
1999         - remove Carp require
2000         - changed UUIDColumns to use new UUIDMaker classes for uuid creation
2001         using whatever module may be available
2002
2003 0.05003 2006-02-08 17:50:20
2004         - add component_class accessors and use them for *_class
2005         - small fixes to Serialize and ResultSetManager
2006         - rollback on disconnect, and disconnect on DESTROY
2007
2008 0.05002 2006-02-06 12:12:03
2009         - Added recommends for Class::Inspector
2010         - Added skip_all to t/40resultsetmanager.t if no Class::Inspector
2011         available
2012
2013 0.05001 2006-02-05 15:28:10
2014         - debug output now prints NULL for undef params
2015         - multi-step prefetch along the same rel (e.g. for trees) now works
2016         - added multi-join (join => [ 'foo', 'foo' ]), aliases second to foo_2
2017         - hack PK::Auto::Pg for "table" names referencing a schema
2018         - find() with attributes works
2019         - added experimental Serialize and ResultSetManager components
2020         - added code attribute recording to DBIx::Class
2021         - fix to find() for complex resultsets
2022         - added of $storage->debugcb(sub { ... })
2023         - added $source->resultset_attributes accessor
2024         - added include_columns rs attr
2025
2026 0.05000 2006-02-01 16:48:30
2027         - assorted doc fixes
2028         - remove ObjectCache, not yet working in 0.05
2029         - let many_to_many rels have attrs
2030         - fix ID method in PK.pm to be saner for new internals
2031         - fix t/30dbicplain.t to use ::Schema instead of
2032           Catalyst::Model::DBIC::Plain
2033
2034 0.04999_06 2006-01-28 21:20:32
2035         - fix Storage/DBI (tried to load deprecated ::Exception component)
2036
2037 0.04999_05 2006-01-28 20:13:52
2038         - count will now work for grouped resultsets
2039         - added accessor => option to column_info to specify accessor name
2040         - added $schema->populate to load test data (similar to AR fixtures)
2041         - removed cdbi-t dependencies, only run tests if installed
2042         - Removed DBIx::Class::Exception
2043         - unified throw_exception stuff, using Carp::Clan
2044         - report query when sth generation fails.
2045         - multi-step prefetch!
2046         - inheritance fixes
2047         - test tweaks
2048
2049 0.04999_04 2006-01-24 21:48:21
2050         - more documentation improvements
2051         - add columns_info_for for vendor-specific column info (Zbigniew
2052         Lukasiak)
2053         - add SQL::Translator::Producer for DBIx::Class table classes (Jess
2054         Robinson)
2055         - add unique constraint declaration (Daniel Westermann-Clark)
2056         - add new update_or_create method (Daniel Westermann-Clark)
2057         - rename ResultSetInstance class to ResultSetProxy, ResultSourceInstance
2058           to ResultSourceProxy, and TableInstance to ResultSourceProxy::Table
2059         - minor fixes to UUIDColumns
2060         - add debugfh method and ENV magic for tracing SQL (Nigel Metheringham)
2061
2062 0.04999_03 2006-01-20 06:05:27
2063         - imported Jess Robinson's SQL::Translator::Parser::DBIx::Class
2064         - lots of internals cleanup to eliminate result_source_instance
2065         requirement
2066         - added register_column and register_relationship class APIs
2067         - made Storage::DBI use prepare_cached safely (thanks to Tim Bunce)
2068         - many documentation improvements (thanks guys!)
2069         - added ->connection, ->connect, ->register_source and ->clone schema
2070         methods
2071         - Use croak instead of die for user errors.
2072
2073 0.04999_02 2006-01-14 07:17:35
2074         - Schema is now self-contained; no requirement for co-operation
2075         - add_relationship, relationships, relationship_info, has_relationship
2076         - relationship handling on ResultSource
2077         - all table handling now in Table.pm / ResultSource.pm
2078         - added GROUP BY and DISTINCT support
2079         - hacked around SQL::Abstract::Limit some more in DBIC::SQL::Abstract
2080           (this may have fixed complex quoting)
2081         - moved inflation to inflate_result in Row.pm
2082         - added $rs->search_related
2083         - split compose_namespace out of compose_connection in Schema
2084         - ResultSet now handles find
2085         - various *_related methods are now ->search_related->*
2086         - added new_result to ResultSet
2087
2088 0.04999_01 2005-12-27 03:33:42
2089         - search and related methods moved to ResultSet
2090         - select and as added to ResultSet attrs
2091         - added DBIx::Class::Table and TableInstance for table-per-class
2092         - added DBIx::Class::ResultSetInstance which handles proxying
2093           search etc. as a superclass of DBIx::Class::DB
2094         - assorted test and code cleanup work
2095
2096 0.04001 2005-12-13 22:00:00
2097         - Fix so set_inflated_column calls set_column
2098         - Syntax errors in relationship classes are now reported
2099         - Better error detection in set_primary_key and columns methods
2100         - Documentation improvements
2101         - Better transaction support with txn_* methods
2102         - belongs_to now works when $cond is a string
2103         - PK::Auto::Pg updated, only tries primary keys instead of all cols
2104
2105 0.04 2005-11-26
2106         - Moved get_simple and set_simple into AccessorGroup
2107         - Made 'new' die if given invalid columns
2108         - Added has_column and column_info to Table.pm
2109         - Refactored away from direct use of _columns and _primaries
2110         - Switched from NEXT to Class::C3
2111
2112 0.03004
2113         - Added an || '' to the CDBICompat stringify to avoid null warnings
2114         - Updated name section for manual pods
2115 0.03003 2005-11-03 17:00:00
2116         - POD fixes.
2117         - Changed use to require in Relationship/Base to avoid import.
2118
2119 0.03002 2005-10-20 22:35:00
2120         - Minor bugfix to new (Row.pm)
2121         - Schema doesn't die if it can't load a class (Schema.pm)
2122         - New UUID columns plugin (UUIDColumns.pm)
2123         - Documentation improvements.
2124
2125 0.03001 2005-09-23 14:00:00
2126         - Fixes to relationship helpers
2127         - IMPORTANT: prefetch/schema combination bug fix
2128
2129 0.03    2005-09-19 19:35:00
2130         - Paging support
2131         - Join support on search
2132         - Prefetch support on search
2133
2134 0.02    2005-08-12 18:00:00
2135         - Test fixes.
2136         - Performance improvements.
2137         - Oracle primary key support.
2138         - MS-SQL primary key support.
2139         - SQL::Abstract::Limit integration for database-agnostic limiting.
2140
2141 0.01    2005-08-08 17:10:00
2142         - initial release
2143