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