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