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