to trigger/signal a rebuild for the transition 5.8.8 -> 5.10.0.
The list of packages is computed by finding all packages which end
up having either of PERL5_USE_PACKLIST, BUILDLINK_API_DEPENDS.perl,
or PERL5_PACKLIST defined in their make setup (tested via
"make show-vars VARNAMES=...").
0.744 (05.28.2008) - John Siracusa <siracusa@gmail.com>
* Added fixup() class method call to auto_load_fixups().
(Suggested by Justin Ellison)
* Skip the interactive part of the test suite when the
AUTOMATED_TESTING environment variable is set.
0.743 (04.02.2008) - John Siracusa <siracusa@gmail.com>
* Fixed some warnings and made nice with the CPAN version extractor.
0.742 (04.01.2008) - John Siracusa <siracusa@gmail.com>
* Added warning for ancient DBD::mysql versions.
* Support for Rose::DB::Object 0.769.
0.741 (02.25.2008) - John Siracusa <siracusa@gmail.com>
* Changed mailing list URLs.
0.740 (02.15.2008) - John Siracusa <siracusa@gmail.com>
* Added support for Rose::DB::Object 0.767's new hints features.
0.739 (02.08.2008) - John Siracusa <siracusa@gmail.com>
* Caching of db objects during mod_perl server start-up is now turned
off by default, with new API to turn it back on and do the necessary
pre-fork clean-up that this entails. This change solved a segmentation
fault problem triggered in DBD::Informix when database handles created
in the parent were not properly disconnected prior to the first fork of
the apache process.
0.738 (02.06.2008) - John Siracusa <siracusa@gmail.com>
* The Informix INT8 column type is now detected and mapped to "bigint"
on behalf of Rose::DB::Object.
* Fixed a bug that prevented format_array() and parse_array() from
correctly handling arrays containing undef or NULL, respectively.
(Reported by Derek Watson)
0.737 (12.13.2007) - John Siracusa <siracusa@gmail.com>
* Altered the behavior of connect() and disconnect() to account
for the possibility that dbi_connect() may return a DBI $dbh
that is already connected and has already been initialized.
* Added optional (on by default) coercion of column type metadata
from (big)int auto-increment to (big)serial for MySQL and SQLite.
* Added support for the current_timestamp keyword to SQLite.
* Added a dozen or so new MySQL connection attributes that must be
inlined into the DSN rather than passed as connect() options.
0.736 (11.13.2007) - John Siracusa <siracusa@gmail.com>
* Added new_or_cached() method and associated caching framework.
* Added dbi_connect() method. (Patch by Peter Karman)
* Removed mistakenly checked in breakpoint.
0.735 (07.21.2007) - John Siracusa <siracusa@gmail.com>
* Improved parsing of SET values.
* Fixed the test suite's detection of the broken DBD::SQLite 1.13.
Rose::DB is a wrapper and abstraction layer for DBI-related
functionality. A Rose::DB object "has a" DBI object; it is not a
subclass of DBI.
Tip: Are you looking for an object-relational mapper (ORM)? If so,
please see the Rose::DB::Object module. Rose::DB::Object is an ORM
that uses this module to manage its database connections. Rose::DB
alone is simply a data source abstraction layer; it is not an ORM.