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