Cleaned up a little
[dbsrgits/DBM-Deep.git] / Changes
CommitLineData
ffed8b01 1Revision history for DBM::Deep.
2
30.97 ??? ?? ??:??:?? 2006 Pacific
e096f245 4 - Reorganization of distribution to a more standard layout
ffed8b01 5 - Migration to Module::Build with EU::MM backwards compatibility
e096f245 6 - Migration of all tests to use Test::More and Test::Exception
7 - Added Devel::Cover report to DBM::Deep POD
8 - Test coverage improved to 89.6% (and climbing)
8b957036 9 - The following methods have been renamed to reflect their private nature:
10 - init() is now _init()
14a3acb6 11 - open() is now _open()
0207d648 12 - close() is now _close()
261d1296 13 - load_tag() is now _load_tag()
14 - index_lookup() is now _index_lookup()
15 - add_bucket() is now _add_bucket()
16 - get_bucket_value() is now _get_bucket_value()
17 - delete_bucket() is now _delete_bucket()
18 - bucket_exists() is now _bucket_exists()
19 - find_bucket_list() is now _find_bucket_list()
20 - traverse_index() is now _traverse_index()
21 - get_next_key() is now _get_next_key()
22 - copy_node() is now _copy_node()
23 - throw_error() is now _throw_error()
217fef02 24 - The various tied classes have been broken out. This means that testing
25 "ref( $obj ) eq 'DBM::Deep'" will now fail. The correct test is
26 "eval { $obj->isa( 'DBM::Deep' ) }".
27 - The various methods like push and delete now have the same return values as
28 the standard builtins.
9d085683 29 - TIEARRAY and TIEHASH now check their parameters more thoroughly
e096f245 30 - Negative indices for arrays works as expected, including throwing the appropriate
31 errors.
26138c00 32 - RT #16877 is fixed (DBM::Deep broken with Perl 5.9.3+).
33 - RT #14893 is fixed (tie() and new() use different parameter lists).
34 - A bug with optimize and threading is fixed.
35 - autobless has received some attention, resulting in a number of bugs fixed.
90f93b43 36 - Removed mode option as it just caused confusion.
ffed8b01 37
380.96 Oct 14 09:55:00 2005 Pacific
39 - Fixed build (OS X hidden files killed it)
40 - You can now pass in an optional filehandle to the constructor
41
420.95 Oct 12 13:58:00 2005 Pacific
43 - Added optional autobless flag to preserve and restore blessed hashes
44 - Fixed bug where 0 could not be fetched using get_next_key
45 - Fixed bug where tie() constructor didn't accept a hash ref for args
46 - optimize() now preserves user/group/permissions
47 - Errors are now FATAL (meaning it calls die()), unless you set debug flag
48
490.94 Apr 13 19:00:26 2004 Pacific
50 - Fixed bug reported by John Cardenas (corruption at key level when
51 replace of less data was done on bucket)
52
530.93 Feb 15 19:53:17 2004 Pacific
54 - Fixed optmize() on Win32 where orig file couldn't be overwritten unless
55 filehandle was closed first. This change introduces a potential race
56 condition when using locking and optmize() on Win32, but it can be
57 fixed in the future using a soft copy instead of Perl's rename().
58
590.92 Feb 12 19:10:22 2004 Pacific
60 - Fixed bug where passing a reference to a different DBM::Deep object
61 would still result in an internal reference.
62 - Added export() method for recursively extracting hashes/arrays into
63 standard in-memory Perl structures.
64 - Added import() method for recursively importing existing Perl hash/
65 array structures
66 - Fixed bug where optimize() wouldn't work if base level of DB was
67 an array instead of a hash.
68
690.91 Feb 12 02:30:22 2004 Pacific
70 - Fixed bug with splice() when length of removed section was 0
71 - Updated POD re: circular refs and optimize()
72 - Had to jump version numbers to 0.91 because in previous releases
73 I used only a single digit after the decimal which was confusing
74 the CPAN indexer.
75
760.10 Feb 11 08:58:35 2004 Pacific
77 - Fixed bug where default file mode was CLEARING files (Thanks Rich!)
78 - Added experimental support for circular references
79 - Fixed bugs in shift(), unshift() and splice() where nested objects
80 in array would be recursively re-stored as basic hashes/arrays
81 - Fixed typos in POD docs
82
830.9 Feb 10 03:25:48 2004 Pacific
84 - Added Filters for storing/fetching keys/values
85 - Added hook for supplying own hashing algorithm
86 - FIxed some typos in POD docs, added new sections
87
880.8 Feb 8 02:38:22 2004 Pacific
89 - Renamed to DBM::Deep for CPAN
90 - Added optimize() method for rekindling unused space
91 - Now returning hybrid tie()/OO object from new()
92 - Basic error handling introduced
93 - Added debug mode for printing errors to STDERR
94 - Added TYPE_HASH and TYPE_ARRAY constants for "type" param
95 - Added clone() method for safe copying of objects
96 - Wrote POD documentation
97 - Added set_pack() function for manipulating LONG_SIZE / LONG_PACK
98 - Added aliases for most tied functions for public use
99 - Now setting binmode() on FileHandle for Win32
100 - Added 45 unit tests
101
1020.7 Jan 4 11:31:50 2003 UTC
103 - Renamed to DeepDB
104 - Changed file signature to DPDB (not compatible with older versions)
105 - Converted array length to packed long instead of sprintf()ed string
106
1070.6 Dec 31 15:12:03 2002 UTC
108 - Some misc optimizations for speed
109
1100.5 Oct 18 08:55:29 2002 UTC
111 - support for force_return_next parameter in traverse_index() method for
112 ultra-fast combined key search/removal
113
1140.4 Oct 15 20:07:47 2002 UTC
115 - now making sure filehandle is open for all DB calls
116
1170.3 Oct 3 19:04:13 2002 UTC
118 - fixed bug that could cause corrupted data when using locking
119
1200.2 Aug 6 16:37:32 2002 UTC
121 - Removed base index caching, as it can cause problems when two processes
122 are populating the db at the same time (even with locking)
123
1240.1 Jun 3 08:06:26 2002 UTC
125 - initial release