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