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