X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Changes;h=62a45d21e9fc864dd5418e8a6195acf7c9bf8068;hb=11eb1592e0b263ec2fb9b33cd54be30f87bef54e;hp=21b318ebb3052acd3efc2eb4b57106b2ef933d75;hpb=95967a5ee0a385bc0107632a13233a2be0f36613;p=dbsrgits%2FDBM-Deep.git diff --git a/Changes b/Changes index 21b318e..62a45d2 100644 --- a/Changes +++ b/Changes @@ -1,7 +1,45 @@ Revision history for DBM::Deep. -0.99_01 ??? ?? ??;??:?? 2006 Pacific +0.99_03 ??? ?? ??:??:?? 2006 Pacific + - Converted to use FileHandle::Fmode to handle filehandle status checks + - Fixed bug with deleting already-deleted items on Win32 (reported by Nigel Sandever) + +0.99_02 Apr 28 05:00:00 2006 Pacific + - Added missing file to the MANIFEST + +0.99_01 Apr 27 18:00:00 2006 Pacific + - Added explicit dependency on Perl 5.6.0 + - Digest::MD5 requires 5.6.0 + - Sub::Uplevel (dep of Test::Exception) requires 5.6.0 - Removed error()/clear_error() + - All error-handling is done with die() + - Broke out DBM::Deep's code into DBM::Deep::Engine + - Tied variables can no longer be assigned to a DBM::Deep object. + - This includes cross-file assignments. + - Autovivification now works + - This is a consequence of the fact that all assignments are tied. + - set_pack() and set_digest() have been removed. + - Instead, you will now pass the appropriate values into new() + - A pack_size parameter has been added to make 64-bit files easier + - Transactions now work + +0.983 Apr 10 20:00:00 2006 Pacific + - Added patch inspired by Jeff Janes (Thanks!) + - Autovivification now works correctly + - The following now works correctly + my %hash = ( a => 1 ); + $db->{hash} = \%hash; + $hash{b} = 2; + cmp_ok( $db->{hash}{b}, '==', 2 ); + - (RT#18530) - DBM::Deep now plays nicely with -l + +0.982 Mar 08 11:00:00 2006 Pacific + - Fixed smoketests that were failing on Win32 + - Added restriction for Perl 5.6.0 or higher. + - Digest::MD5 and Sub::Uplevel (dep of Test::Exception) require 5.6+ + +0.981 Mar 06 11:00:00 2006 Pacific + - (RT#17947) - Fixed test that was failing on older Perls 0.98 Feb 28 11:00:00 2006 Pacific - Added in patch by David Cantrell to allow use of DATA filehandle