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