Added failing test for large numbers of transactions
[dbsrgits/DBM-Deep.git] / Changes
1 Revision history for DBM::Deep.
2
3 1.0000 Jan ?? 22:30:00 2007 EDT
4     - THIS VERSION IS INCOMPATIBLE WITH FILES FROM ALL OTHER PRIOR VERSIONS.
5       - To aid in this form of upgrades, DBM::Deep now checks the file format
6         version to make sure that it knows how to read it.
7       - dpdb_upgrade_db.pl was added to scripts/.
8     - importing no longer takes place within a transaction
9     - The following parameters were added:
10       - data_sector_size - this determines the default size of a data sector.
11
12 0.99_04 Jan 24 22:30:00 2007 EDT
13     - Added the missing lib/DBM/Deep.pod file to the MANIFEST
14     - Fixed a poorly-designed test that was failing depending on what Clone::Any
15       was using.
16     - All "use 5.6.0;" lines are now "use 5.006_000;" to avoid warnings about
17       unsupported vstrings in 5.9.x
18
19 0.99_03 Jan 23 22:30:00 2007 EDT
20     - THIS VERSION IS INCOMPATIBLE WITH FILES FROM ALL OTHER PRIOR VERSIONS.
21       - The fileformat changed completely. I will be writing a converter, but
22         it's not there right now. Do NOT expect that this module will
23         correctly detect older versions and handle them sanely. Sanity will be
24         there for 1.00, but we're not there yet, are we?
25     - Converted to use FileHandle::Fmode to handle filehandle status checks
26     - Fixed bug with deleting already-deleted items on Win32 (reported by Nigel Sandever)
27     - The guts of how transactions work has been rewritten to better handle
28       some edgecases. This required a complete rewrite of the engine.
29     - Freespace management is now in place. It's not perfect, but it's there.
30     - The rewrite of the engine required a rewrite of how first_key/next_key
31       was implemented. This should result in significant speed improvements.
32     - Self-reference has been removed. This means you cannot do:
33           $db->{foo} = { x => 'y' };
34           $db->{bar} = $db->{foo};
35       I hope to be able to return this functionality by 1.00, but I cannot
36       promise anything. To do this properly, it requires refcounting in order
37       to correctly handle deletions and transactions. Once you move away from
38       a simple tree, everything becomes really hard.
39
40 0.99_02 Apr 28 05:00:00 2006 Pacific
41     - Added missing file to the MANIFEST
42
43 0.99_01 Apr 27 18:00:00 2006 Pacific
44     - Added explicit dependency on Perl 5.6.0
45       - Digest::MD5 requires 5.6.0
46       - Sub::Uplevel (dep of Test::Exception) requires 5.6.0
47     - Removed error()/clear_error()
48       - All error-handling is done with die()
49     - Broke out DBM::Deep's code into DBM::Deep::Engine
50     - Tied variables can no longer be assigned to a DBM::Deep object.
51       - This includes cross-file assignments.
52     - Autovivification now works
53       - This is a consequence of the fact that all assignments are tied.
54     - set_pack() and set_digest() have been removed.
55       - Instead, you will now pass the appropriate values into new()
56       - A pack_size parameter has been added to make 64-bit files easier
57     - Transactions now work
58
59 0.983 Apr 10 20:00:00 2006 Pacific
60     - Added patch inspired by Jeff Janes (Thanks!)
61       - Autovivification now works correctly
62       - The following now works correctly
63         my %hash = ( a => 1 );
64         $db->{hash} = \%hash;
65         $hash{b} = 2;
66         cmp_ok( $db->{hash}{b}, '==', 2 );
67     - (RT#18530) - DBM::Deep now plays nicely with -l
68
69 0.982 Mar 08 11:00:00 2006 Pacific
70     - Fixed smoketests that were failing on Win32
71     - Added restriction for Perl 5.6.0 or higher.
72       - Digest::MD5 and Sub::Uplevel (dep of Test::Exception) require 5.6+
73
74 0.981 Mar 06 11:00:00 2006 Pacific
75     - (RT#17947) - Fixed test that was failing on older Perls
76
77 0.98  Feb 28 11:00:00 2006 Pacific
78     - Added in patch by David Cantrell to allow use of DATA filehandle
79     - Fixed bug where attempting to export() a structure that used autobless would die
80     - Fixed arraytest slowness by localizing $SIG{__DIE__} to prevent Test::Builder's
81       $SIG{__DIE__} from being called. (q.v. http://perldoc.perl.org/functions/eval.html)
82     - More methods have been made private:
83         - root() is now _root()
84         - base_offset() is now _base_offset()
85         - fh() is now _fh()
86         - type() is now _type()
87         - precalc_sizes() is now _precalc_sizes()
88
89 0.97  Feb 24 10:00:00 2006 Pacific
90     - Reorganization of distribution to a more standard layout
91     - Migration to Module::Build with EU::MM backwards compatibility
92     - Migration of all tests to use Test::More and Test::Exception
93     - Added Devel::Cover report to DBM::Deep POD
94       - Test coverage improved to 89.6% (and climbing)
95     - The following methods have been renamed to reflect their private nature:
96         - init() is now _init()
97         - open() is now _open()
98         - close() is now _close()
99         - load_tag() is now _load_tag()
100         - index_lookup() is now _index_lookup()
101         - add_bucket() is now _add_bucket()
102         - get_bucket_value() is now _get_bucket_value()
103         - delete_bucket() is now _delete_bucket()
104         - bucket_exists() is now _bucket_exists()
105         - find_bucket_list() is now _find_bucket_list()
106         - traverse_index() is now _traverse_index()
107         - get_next_key() is now _get_next_key()
108         - copy_node() is now _copy_node()
109         - throw_error() is now _throw_error()
110     - The various tied classes have been broken out. This means that testing
111         "ref( $obj ) eq 'DBM::Deep'" will now fail. The correct test is
112         "eval { $obj->isa( 'DBM::Deep' ) }".
113     - The various methods like push and delete now have the same return values as
114       the standard builtins.
115     - TIEARRAY and TIEHASH now check their parameters more thoroughly
116     - Negative indices for arrays works as expected, including throwing the appropriate
117       errors.
118     - RT #16877 is fixed (DBM::Deep broken with Perl 5.9.3+).
119     - RT #14893 is fixed (tie() and new() use different parameter lists).
120     - A bug with optimize and threading is fixed.
121     - autobless has received some attention, resulting in a number of bugs fixed.
122     - Removed mode option as it just caused confusion.
123     - Removed volatile option as it is pretty useless (use locking instead)
124     - Locking now implicitly enables autoflush
125
126 0.96  Oct 14 09:55:00 2005 Pacific
127     - Fixed build (OS X hidden files killed it)
128     - You can now pass in an optional filehandle to the constructor
129
130 0.95  Oct 12 13:58:00 2005 Pacific
131     - Added optional autobless flag to preserve and restore blessed hashes
132     - Fixed bug where 0 could not be fetched using get_next_key
133     - Fixed bug where tie() constructor didn't accept a hash ref for args
134     - optimize() now preserves user/group/permissions
135     - Errors are now FATAL (meaning it calls die()), unless you set debug flag
136
137 0.94  Apr 13 19:00:26 2004 Pacific
138     - Fixed bug reported by John Cardenas (corruption at key level when
139          replace of less data was done on bucket)
140
141 0.93  Feb 15 19:53:17 2004 Pacific
142     - Fixed optmize() on Win32 where orig file couldn't be overwritten unless
143          filehandle was closed first.  This change introduces a potential race
144          condition when using locking and optmize() on Win32, but it can be 
145          fixed in the future using a soft copy instead of Perl's rename().
146
147 0.92  Feb 12 19:10:22 2004 Pacific
148     - Fixed bug where passing a reference to a different DBM::Deep object
149          would still result in an internal reference.
150     - Added export() method for recursively extracting hashes/arrays into
151          standard in-memory Perl structures.
152     - Added import() method for recursively importing existing Perl hash/
153          array structures
154     - Fixed bug where optimize() wouldn't work if base level of DB was
155          an array instead of a hash.
156
157 0.91  Feb 12 02:30:22 2004 Pacific
158     - Fixed bug with splice() when length of removed section was 0
159     - Updated POD re: circular refs and optimize()
160     - Had to jump version numbers to 0.91 because in previous releases
161          I used only a single digit after the decimal which was confusing
162          the CPAN indexer.
163
164 0.10  Feb 11 08:58:35 2004 Pacific
165     - Fixed bug where default file mode was CLEARING files (Thanks Rich!)
166     - Added experimental support for circular references
167     - Fixed bugs in shift(), unshift() and splice() where nested objects
168         in array would be recursively re-stored as basic hashes/arrays
169     - Fixed typos in POD docs
170
171 0.9   Feb 10 03:25:48 2004 Pacific
172     - Added Filters for storing/fetching keys/values
173     - Added hook for supplying own hashing algorithm
174     - FIxed some typos in POD docs, added new sections
175
176 0.8   Feb 8 02:38:22 2004 Pacific
177     - Renamed to DBM::Deep for CPAN
178     - Added optimize() method for rekindling unused space
179     - Now returning hybrid tie()/OO object from new()
180     - Basic error handling introduced
181     - Added debug mode for printing errors to STDERR
182     - Added TYPE_HASH and TYPE_ARRAY constants for "type" param
183     - Added clone() method for safe copying of objects
184     - Wrote POD documentation
185     - Added set_pack() function for manipulating LONG_SIZE / LONG_PACK
186     - Added aliases for most tied functions for public use
187     - Now setting binmode() on FileHandle for Win32
188     - Added 45 unit tests
189
190 0.7   Jan 4 11:31:50 2003 UTC
191     - Renamed to DeepDB
192     - Changed file signature to DPDB (not compatible with older versions)
193     - Converted array length to packed long instead of sprintf()ed string
194
195 0.6   Dec 31 15:12:03 2002 UTC
196     - Some misc optimizations for speed
197
198 0.5   Oct 18 08:55:29 2002 UTC
199     - support for force_return_next parameter in traverse_index() method for 
200       ultra-fast combined key search/removal
201
202 0.4   Oct 15 20:07:47 2002 UTC
203     - now making sure filehandle is open for all DB calls
204
205 0.3   Oct 3 19:04:13 2002 UTC
206     - fixed bug that could cause corrupted data when using locking
207
208 0.2   Aug 6 16:37:32 2002 UTC
209     - Removed base index caching, as it can cause problems when two processes 
210       are populating the db at the same time (even with locking)
211
212 0.1   Jun 3 08:06:26 2002 UTC
213     - initial release