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