PATCH: *DB*_File
[p5sagit/p5-mst-13.2.git] / ext / DB_File / Changes
1
2 1.808 22nd December 2003
3
4    * Added extra DBM Filter tests.
5
6    * Fixed a memory leak in ParseOpenInfo, which whould occur if the
7      opening of the database failed. Leak spotted by Adrian Enache.
8
9 1.807 1st November 2003
10
11    * Fixed minor typos on pod documetation - reported by Jeremy Mates &
12      Mark Jason Dominus.
13
14    * dbinfo updated to report when a database is encrypted.
15
16 1.806 22nd October 2002
17
18    * Fixed problem when trying to build with a multi-threaded perl.
19
20    * Tidied up the recursion detetion code.
21
22    * merged core patch 17844 - missing dTHX declarations.
23
24    * merged core patch 17838 
25
26 1.805 1st September 2002
27
28    * Added support to allow DB_File to build with Berkeley DB 4.1.X
29
30    * Tightened up the test harness to test that calls to untie don't generate
31      the "untie attempted while %d inner references still exist" warning.
32
33    * added code to guard against calling the callbacks (compare,hash & prefix) 
34      recursively.
35
36    * pasing undef for the flags and/or mode when opening a database could cause
37      a "Use of uninitialized value in subroutine entry" warning. Now silenced.
38
39    * DBM filter code beefed up to cope with read-only $_.
40
41 1.804 2nd June 2002
42
43    * Perl core patch 14939 added a new warning to "splice". This broke the
44      db-recno test harness. Fixed.
45
46    * merged core patches 16502 & 16540.
47
48 1.803 1st March 2002
49
50    * Fixed a problem with db-btree.t where it complained about an "our"
51      variable redeclaation.
52
53    * FETCH, STORE & DELETE don't map the flags parameter into the
54      equivalent Berkeley DB function anymore.
55
56 1.802 6th January 2002
57
58    * The message about some test failing in db-recno.t had the wrong test
59      numbers. Fixed.
60
61    * merged core patch 13942.
62
63 1.801 26th November 2001
64
65    * Fixed typo in Makefile.PL
66
67    * Added "clean" attribute to Makefile.PL
68  
69 1.800 23rd November 2001
70
71    * use pport.h for perl backward compatability code.
72
73    * use new  ExtUtils::Constant module to generate XS constants.
74
75    * upgrade Makefile.PL upgrade/downgrade code to toggle "our" with
76      "use vars"
77
78 1.79 22nd October 2001
79
80    * Added a "local $SIG{__DIE__}" inside the eval that checks for
81      the presence of XSLoader s suggested by Andrew Hryckowin.
82
83    * merged core patch 12277.
84
85    * Changed NEXTKEY to not initialise the input key. It isn't used anyway.
86
87 1.79 22nd October 2001
88
89    * Fixed test harness for cygwin
90
91 1.78 30th July 2001
92
93    * the test in Makefile.PL for AIX used -plthreads. Should have been
94      -lpthreads
95
96    * merged Core patches 
97         10372, 10335, 10372, 10534, 10549, 10643, 11051, 11194, 11432
98
99    * added documentation patch regarding duplicate keys from Andrew Johnson
100
101
102 1.77 26th April 2001
103
104    * AIX is reported to need -lpthreads, so Makefile.PL now checks for
105      AIX and adds it to the link options.
106
107    * Minor documentation updates.
108
109    * Merged Core patch 9176
110
111    * Added a patch from Edward Avis that adds support for splice with
112      recno databases.
113
114    * Modified Makefile.PL to only enable the warnings pragma if using perl
115      5.6.1 or better.    
116
117 1.76 15th January 2001
118
119    * Added instructions for using LD_PRELOAD to get Berkeley DB 2.x to work
120      with DB_File on Linux. Thanks to Norbert Bollow for sending details of
121      this approach.
122
123
124 1.75 17th December 2000
125
126    * Fixed perl core patch 7703
127
128    * Added suppport to allow DB_File to be built with Berkeley DB 3.2 --
129      btree_compare, btree_prefix and hash_cb needed to be changed.
130
131    * Updated dbinfo to support Berkeley DB 3.2 file format changes.
132
133
134 1.74 10th December 2000
135
136    * A "close" call in DB_File.xs needed parenthesised to stop win32 from
137      thinking it was one of its macros.
138
139    * Updated dbinfo to support Berkeley DB 3.1 file format changes.
140
141    * DB_File.pm & the test hasness now use the warnings pragma (when
142      available).
143
144    * Included Perl core patch 7703 -- size argument for hash_cb is different
145      for Berkeley DB 3.x
146
147    * Included Perl core patch 7801 -- Give __getBerkeleyDBInfo the ANSI C
148      treatment.
149
150    * @a = () produced the warning 'Argument "" isn't numeric in entersub'
151      This has been fixed. Thanks to Edward Avis for spotting this bug.
152
153    * Added note about building under Linux. Included patches.
154
155    * Included Perl core patch 8068 -- fix for bug 20001013.009 
156      When run with warnings enabled "$hash{XX} = undef " produced an
157      "Uninitialized value" warning. This has been fixed.
158
159 1.73 31st May 2000
160
161    * Added support in version.c for building with threaded Perl.
162
163    * Berkeley DB 3.1 has reenabled support for null keys. The test
164      harness has been updated to reflect this.
165
166 1.72 16th January 2000
167
168    * Added hints/sco.pl
169
170    * The module will now use XSLoader when it is available. When it
171      isn't it will use DynaLoader.
172
173    * The locking section in DB_File.pm has been discredited. Many thanks
174      to David Harris for spotting the underlying problem, contributing
175      the updates to the documentation and writing DB_File::Lock (available
176      on CPAN).
177
178 1.71 7th September 1999
179
180    * Fixed a bug that prevented 1.70 from compiling under win32
181
182    * Updated to support Berkeley DB 3.x
183
184    * Updated dbinfo for Berkeley DB 3.x file formats.
185
186 1.70 4th August 1999
187
188    * Initialise $DB_File::db_ver and $DB_File::db_version with
189      GV_ADD|GV_ADDMULT -- bug spotted by Nick Ing-Simmons.
190
191    * Added a BOOT check to test for equivalent versions of db.h &
192      libdb.a/so.
193
194 1.69 3rd August 1999
195
196    * fixed a bug in push -- DB_APPEND wasn't working properly.
197
198    * Fixed the R_SETCURSOR bug introduced in 1.68
199
200    * Added a new Perl variable $DB_File::db_ver
201    
202 1.68 22nd July 1999
203
204    * Merged changes from 5.005_58 
205
206    * Fixed a bug in R_IBEFORE & R_IAFTER procesing in Berkeley DB
207      2 databases.
208
209    * Added some of the examples in the POD into the test harness.
210
211 1.67 6th June 1999
212
213    * Added DBM Filter documentation to DB_File.pm
214
215    * Fixed DBM Filter code to work with 5.004
216
217    * A few instances of newSVpvn were used in 1.66. This isn't available in
218      Perl 5.004_04 or earlier. Replaced with newSVpv.
219
220 1.66 15th March 1999
221
222    * Added DBM Filter code
223
224 1.65 6th March 1999
225
226    * Fixed a bug in the recno PUSH logic.
227    * The BOOT version check now needs 2.3.4 when using Berkeley DB version 2
228
229 1.64 21st February 1999
230
231    * Tidied the 1.x to 2.x flag mapping code.
232    * Added a patch from Mark Kettenis <kettenis@wins.uva.nl> to fix a flag
233      mapping problem with O_RDONLY on the Hurd
234    * Updated the message that db-recno.t prints when tests 51, 53 or 55 fail.
235
236 1.63 19th December 1998
237
238    * Fix to allow DB 2.6.x to build with DB_File
239    * Documentation updated to use push,pop etc in the RECNO example &
240      to include the find_dup & del_dup methods.
241
242 1.62 30th November 1998
243
244    Added hints/dynixptx.pl.
245    Fixed typemap -- 1.61 used PL_na instead of na
246
247 1.61 19th November 1998
248
249    Added a note to README about how to build Berkeley DB 2.x when
250    using HP-UX.
251    Minor modifications to get the module to build with DB 2.5.x
252    Fixed a typo in the definition of O_RDONLY, courtesy of Mark Kettenis.
253
254 1.60
255    Changed the test to check for full tied array support
256
257 1.59
258    Updated the license section.
259
260    Berkeley DB 2.4.10 disallows zero length keys. Tests 32 & 42 in
261    db-btree.t and test 27 in db-hash.t failed because of this change.
262    Those tests have been zapped.
263
264    Added dbinfo to the distribution.
265
266 1.58
267    Tied Array support was enhanced in Perl 5.004_57. DB_File now
268    supports PUSH,POP,SHIFT,UNSHIFT & STORESIZE.
269
270    Fixed a problem with the use of sv_setpvn. When the size is
271    specified as 0, it does a strlen on the data.  This was ok for DB
272    1.x, but isn't for DB 2.x.
273
274 1.57
275    If Perl has been compiled with Threads support,the symbol op will be
276    defined. This clashes with a field name in db.h, so it needs to be
277    #undef'ed before db.h is included.
278
279 1.56
280    Documented the Solaris 2.5 mutex bug
281
282 1.55
283    Merged 1.16 changes.
284
285 1.54
286
287    Fixed a small bug in the test harness when run under win32
288    The emulation of fd when useing DB 2.x was busted.
289
290 1.53
291
292    Added DB_RENUMBER to flags for recno.
293
294 1.52
295
296    Patch from Nick Ing-Simmons now allows DB_File to build on NT.
297    Merged 1.15 patch.
298
299 1.51
300
301     Fixed the test harness so that it doesn't expect DB_File to have
302     been installed by the main Perl build.
303
304
305     Fixed a bug in mapping 1.x O_RDONLY flag to 2.x DB_RDONLY equivalent
306
307 1.50
308
309     DB_File can now build with either DB 1.x or 2.x, but not both at
310     the same time.
311
312 1.16
313
314    A harmless looking tab was causing Makefile.PL to fail on AIX 3.2.5
315
316     Small fix for the AIX strict C compiler XLC which doesn't like
317     __attribute__ being defined via proto.h and redefined via db.h. Fix
318     courtesy of Jarkko Hietaniemi.
319
320 1.15
321
322     Patch from Gisle Aas <gisle@aas.no> to suppress "use of undefined
323     value" warning with db_get and db_seq.
324
325     Patch from Gisle Aas <gisle@aas.no> to make DB_File export only the
326     O_* constants from Fcntl.
327
328     Removed the DESTROY method from the DB_File::HASHINFO module.
329
330     Previously DB_File hard-wired the class name of any object that it
331     created to "DB_File". This makes sub-classing difficult. Now
332     DB_File creats objects in the namespace of the package it has been
333     inherited into.
334
335
336 1.14
337
338     Made it illegal to tie an associative array to a RECNO database and
339     an ordinary array to a HASH or BTREE database.
340
341 1.13
342
343     Minor changes to DB_FIle.xs and DB_File.pm
344
345 1.12
346
347     Documented the incompatibility with version 2 of Berkeley DB.
348
349 1.11
350
351     Documented the untie gotcha.
352
353 1.10
354
355     Fixed fd method so that it still returns -1 for in-memory files
356     when db 1.86 is used.
357
358 1.09
359
360     Minor bug fix in DB_File::HASHINFO, DB_File::RECNOINFO and
361     DB_File::BTREEINFO.
362
363     Changed default mode to 0666.
364
365 1.08
366
367     Documented operation of bval.
368
369 1.07
370
371     Fixed bug with RECNO, where bval wasn't defaulting to "\n".
372
373 1.06
374
375     Minor namespace cleanup: Localized PrintBtree.
376
377 1.05
378
379     Made all scripts in the documentation strict and -w clean.
380
381     Added logic to DB_File.xs to allow the module to be built after
382     Perl is installed.
383
384 1.04
385
386     Minor documentation changes.
387
388     Fixed a bug in hash_cb. Patches supplied by Dave Hammen,
389     <hammen@gothamcity.jsc.nasa.govt>.
390
391     Fixed a bug with the constructors for DB_File::HASHINFO,
392     DB_File::BTREEINFO and DB_File::RECNOINFO. Also tidied up the
393     constructors to make them -w clean.
394
395     Reworked part of the test harness to be more locale friendly.
396
397 1.03
398
399     Documentation update.
400
401     DB_File now imports the constants (O_RDWR, O_CREAT etc.) from Fcntl
402     automatically.
403
404     The standard hash function exists is now supported.
405
406     Modified the behavior of get_dup. When it returns an associative
407     array, the value is the count of the number of matching BTREE
408     values.
409
410 1.02
411
412     Merged OS/2 specific code into DB_File.xs
413
414     Removed some redundant code in DB_File.xs.
415
416     Documentation update.
417
418     Allow negative subscripts with RECNO interface.
419
420     Changed the default flags from O_RDWR to O_CREAT|O_RDWR.
421
422     The example code which showed how to lock a database needed a call
423     to sync added. Without it the resultant database file was empty.
424
425     Added get_dup method.
426
427 1.01
428
429     Fixed a core dump problem with SunOS.
430
431     The return value from TIEHASH wasn't set to NULL when dbopen
432     returned an error.
433
434 1.0
435
436     DB_File has been in use for over a year. To reflect that, the
437     version number has been incremented to 1.0.
438
439     Added complete support for multiple concurrent callbacks.
440
441     Using the push method on an empty list didn't work properly. This
442     has been fixed.
443
444 0.3
445
446     Added prototype support for multiple btree compare callbacks.
447
448 0.2
449
450     When DB_File is opening a database file it no longer terminates the
451     process if dbopen returned an error. This allows file protection
452     errors to be caught at run time. Thanks to Judith Grass
453     <grass@cybercash.com> for spotting the bug.
454
455 0.1
456
457     First Release.
458