Revision history for Perl extension Data::Session.
1.11 Fri Jul 8 11:17:00 2011
- Replace DBIx::Admin::DSNManager with Config::Tiny, to make it easier to put Data::Session into Debian.
- In Build.PL, shift DBIx::Admin::CreateTable from requires to build_requires. Config::Tiny goes there too.
- In the test code, change both sleeps from 2 to 3 seconds, to see if that solves rare test failures.
- In the test code, use File::Basename's fileparse rather than a regexp to see if the SQLite directory exists.
This should fix some test failures under Windows.
1.10 Tue Jun 21 16:42:00 2011
- After some marvellous debugging by Jeff Lavallee, one of the CPAN testers, I've changed O_RDONLY to O_RDWR in
Data::Session::Driver::File, to deal with a flock problem. This code was copied from CGI::Session, which may
therefore still have the same problem.
- Also, $! is now included in error messages, both in Data::Session::Driver::File and Data::Session::ID::AutoIncrement.
Because this reveals directories in paths, $! is only displayed when new(debug => 1) is used in Data::Session.
1.09 Fri Jun 17 14:22:00 2011
- Revert change in 1.08, which produces errors during global destruction.
This means, to save a session, you must store something in it, to force the session to be modified.
- Duplicate, briefly, the explanation of sessions and flushing, as the new first point in the FAQ.
- Changes some debug messages (relating to session and parameter expiry) which were ambiguous.
1.08 Fri Jun 17 13:07:00 2011
- Ensure new sessions, and not just modified ones, are written during flush().
1.07 Mon May 16 9:23:00 2011
- Remove redundant declaration of id() in Data::Session::ID::Static, which was producing the message:
field "id" redefined or overridden at ... line 10.
1.06 Thu May 12 12:01:00 2011
- No code changes.
- Patch the tests to parse the DSN more closely, to skip tests if the SQLite directory /tmp does not exist.
This directory is present in t/basic.ini and t/bulk.ini.
1.05 Tue Apr 12 13:11:00 2011
- Eliminate references to /tmp by using File::Temp::newdir. This applies to docs and various scripts/*.pl.
- Patch t/Test.pm to use DBI.
- Patch t/basic.t to avoid a used once error on $BerkeleyDB::Error.
- Add configure_requires => { 'Module::Build' => 0.38 } to Build.PL.
- Reformat Build.PL and Makefile.PL now that we've reverted from Padre to Emacs (due to install issues).
- Add META.json to files tracked by git.
1.04 Wed Feb 16 11:55:00 2011
- Replace /usr/bin/perl with /usr/bin/env perl.
- Replace common::sense with use strict and use warnings, to get uninit var warnings.
1.03 Fri Dec 24 17:36:00 2010
- Add DBD::SQLite to the list of pre-reqs.
- Patch POD warning users to avoid Storable due to this bug:
http://rt.cpan.org/Public/Bug/Display.html?id=36087
1.02 Tue Dec 14 11:16:00 2010
- Change handling of parameters passed to cookie(), so that the caller may pass extra parameters to
the query object's cookie() method.
- Document the $atime parameter to the atime() method.
- Change the POD structure, so that all methods are assigned a level of head2 under a head1 of Methods.
- Various small corrections to the POD.
1.01 Wed Dec 1 16:35:00 2010
- In t/basic.t, use Module::Load to load BerkeleyDB and Cache::Memcache conditionally, and exit cleanly
if they are not installed.
1.00 Tue Nov 30 14:08:00 2010
- Original version.