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