Re: [Another bug] Re: about Storable perl module (again)
[p5sagit/p5-mst-13.2.git] / ext / Storable / ChangeLog
CommitLineData
db670f21 1Thu May 23 22:50:41 BST 2002 Nicholas Clark <nick@ccl4.org>
2
3. Description:
4
5 Version 2.01
6
7 New regression tests integer.t
8 Add code to safely store large unsigned integers.
9 Change code not to attempt to store large integers (ie > 32 bits)
10 in network order as 32 bits.
11 *Never* underestimate the value of a pathological test suite carefully
12 crafted with maximum malice before writing a line of real code. It
13 prevents crafty bugs from stowing away in your released code.
14 It's much less embarrassing to find them before you ship.
15 (Well, never underestimate it if you ever want to work for me)
16
8989364b 17Fri May 17 22:48:59 BST 2002 Nicholas Clark <nick@ccl4.org>
18
19. Description:
20
21 Version 2.0, binary format 2.5 (but writes format 2.4 on pre 5.7.3)
22
23 The perl5 porters have decided to make sure that Storable still
24 builds on pre-5.8 perls, and make the 5.8 version available on CPAN.
25 The VERSION is now 2.0, and it passes all tests on 5.005_03, 5.6.1
26 and 5.6.1 with threads. On 5.6.0 t/downgrade.t fails tests 34 and 37,
27 due to a bug in 5.6.0 - upgrade to 5.6.1.
28
29 Jarkko and I have collated the list of changes the perl5 porters have
30 from the perl5 Changes file:
31
32 - data features of upcoming perl 5.8.0 are supported: Unicode hash
33 keys (Unicode hash values have been supported since Storable 1.0.1)
34 and "restricted hashes" (readonly hashes and hash entries)
35 - a newer version of perl can now be used to serialize data which is
36 not supported in earlier perls: Storable will attempt to do the
37 right thing for as long as possible, croaking only when safe data
38 conversion simply isn't possible. Alternatively earlier perls can
39 opt to have a lossy downgrade data instead of croaking
40 - when built with perls pre 5.7.3 this Storable writes out files
41 with binary format 2.4, the same format as Storable 1.0.8 onwards.
42 This should mean that this Storable will inter-operate seamlessly
43 with any Storable 1.0.8 or newer on perls pre 5.7.3
44 - dclone() now works with empty string scalar objects
45 - retrieving of large hashes is now more efficient
46 - more routines autosplit out of the main module, so Storable should
47 load slightly more quickly
48 - better documentation
49 - the internal context objects are now freed explicitly, rather than
50 relying on thread or process exit
51 - bugs fixed in debugging trace code affecting builds made with 64 bit
52 IVs
53 - code tidy-ups to allow clean compiles with more warning options
54 turned on avoid problems with $@ getting corrupted on 5.005_03 if
55 Carp wasn't already loaded
56 - added &show_file_magic, so you can add to /etc/magic and teach
57 Unix's file command about Storable files
58
59 We plan to keep Storable on CPAN in sync with the Perl core, so
60 if you encounter bugs or other problems building or using Storable,
61 please let us know at perl5-porters@perl.org
62 Patches welcome!
63
596596d5 64Sat Dec 1 14:37:54 MET 2001 Raphael Manfredi <Raphael_Manfredi@pobox.com>
65
66. Description:
67
68 This is the LAST maintenance release of the Storable module.
69 Indeed, Storable is now part of perl 5.8, and will be maintained
70 as part of Perl. The CPAN module will remain available there
71 for people running pre-5.8 perls.
72
73 Avoid requiring Fcntl upfront, useful to embedded runtimes.
74 Use an eval {} for testing, instead of making Storable.pm
75 simply fail its compilation in the BEGIN block.
76
77 store_fd() will now correctly autoflush file if needed.
78
6e0ac6f5 79Tue Aug 28 23:53:20 MEST 2001 Raphael Manfredi <Raphael_Manfredi@pobox.com>
80
81. Description:
82
83 Fixed truncation race with lock_retrieve() in lock_store().
84 The file has to be truncated only once the exclusive lock is held.
85
86 Removed spurious debugging messages in .xs file.
87
e993d95c 88Sun Jul 1 13:27:32 MEST 2001 Raphael Manfredi <Raphael_Manfredi@pobox.com>
89
90. Description:
91
92 Systematically use "=over 4" for POD linters.
93 Apparently, POD linters are much stricter than would
94 otherwise be needed, but that's OK.
95
96 Fixed memory corruption on croaks during thaw(). Thanks
97 to Claudio Garcia for reproducing this bug and providing the
98 code to exercise it. Added test cases for this bug, adapted
99 from Claudio's code.
100
101 Made code compile cleanly with -Wall (from Jarkko Hietaniemi).
102
103 Changed tagnum and classnum from I32 to IV in context. Also
104 from Jarkko.
105
8be2b38b 106Thu Mar 15 01:22:32 MET 2001 Raphael Manfredi <Raphael_Manfredi@pobox.com>
107
108. Description:
109
110 Last version was wrongly compiling with assertions on, due
111 to an edit glitch. That did not cause any problem (apart from
112 a slight performance loss) excepted on Win* platforms, where the
113 assertion code does not compile.
114
115Sat Feb 17 13:37:37 MET 2001 Raphael Manfredi <Raphael_Manfredi@pobox.com>
116
117. Description:
118
119 Version 1.0.10.
120
121 Forgot to increase version number at previous patch (there were
122 two of them, which is why we jump from 1.0.8 to 1.0.10).
123
b12202d0 124Sat Feb 17 13:35:00 MET 2001 Raphael Manfredi <Raphael_Manfredi@pobox.com>
125
126. Description:
127
128 Version 1.0.8, binary format 2.4.
129
130 Fixed incorrect error message.
131
132 Now bless objects ASAP at retrieve time, which is meant to fix
133 two bugs:
134
135 * Indirect references to overloaded object were not able to
136 restore overloading if the object was not blessed yet,
137 which was possible since blessing occurred only after the
138 recursive retrieval.
139
140 * Storable hooks asking for serialization of blessed ref could
141 get un-blessed refs at retrieval time, for the very same
142 reason.
143
144 The fix implemented here was suggested by Nick Ing-Simmons.
145
146 Added support for blessed ref to tied structures. This is the
147 cause for the binary format change.
148
149 Added EBCDIC version of the compatibility test with 0.6.11,
150 from Peter Prymmer
151
152 Added tests for the new features, and to make sure the bugs they
153 are meant to fix are indeed fixed.
154
862382c7 155Wed Jan 3 10:43:18 MET 2001 Raphael Manfredi <Raphael_Manfredi@pobox.com>
156
157. Description:
158
159 Removed spurious 'clean' entry in Makefile.PL.
160
161 Added CAN_FLOCK to determine whether we can flock() or not,
162 by inspecting Perl's configuration parameters, as determined
163 by Configure.
164
165 Trace offending package when overloading cannot be restored
166 on a scalar.
167
168 Made context cleanup safer to avoid dup freeing, mostly in the
169 presence of repeated exceptions during store/retrieve (which can
170 cause memory leaks anyway, so it's just additional safety, not a
171 definite fix).
172
90826881 173Sun Nov 5 18:23:48 MET 2000 Raphael Manfredi <Raphael_Manfredi@pobox.com>
174
175. Description:
176
177 Version 1.0.6.
178
179 Fixed severe "object lost" bug for STORABLE_freeze returns,
180 when refs to lexicals, taken within the hook, were to be
181 serialized by Storable. Enhanced the t/recurse.t test to
182 stress hook a little more with refs to lexicals.
183
212e9bde 184Thu Oct 26 19:14:38 MEST 2000 Raphael Manfredi <Raphael_Manfredi@pobox.com>
185
186. Description:
187
188 Version 1.0.5.
189
190 Documented that store() and retrieve() can return undef.
191 That is, the error reporting is not always made via exceptions,
192 as the paragraph on error reporting was implying.
193
194 Auto requires module of blessed ref when STORABLE_thaw misses.
195 When the Storable engine looks for the STORABLE_thaw hook and
196 does not find it, it now tries to require the package into which
197 the blessed reference is.
198
199 Just check $^O, in t/lock.t: there's no need to pull the whole
200 Config module for that.
201
8be2b38b 202Mon Oct 23 20:03:49 MEST 2000 Raphael Manfredi <Raphael_Manfredi@pobox.com>
203
204. Description:
205
206 Version 1.0.4.
207
208 Protected calls to flock() for DOS platform: apparently, the
209 flock/fcnlt emulation is reported to be broken on that
210 platform.
211
212 Added logcarp emulation if they don't have Log::Agent, since
213 we now use it to carp when lock_store/lock_retrieve is used
214 on DOS.
215
dd19458b 216Fri Sep 29 21:52:29 MEST 2000 Raphael Manfredi <Raphael_Manfredi@pobox.com>
217
218. Description:
219
220 Version 1.0.3.
221
222 Avoid using "tainted" and "dirty" since Perl remaps them via
223 cpp (i.e. #define). This is deeply harmful when threading
224 is enabled. This concerned both the context structure and
225 local variable and argument names. Brrr..., scary!
226
227Thu Sep 28 23:46:39 MEST 2000 Raphael Manfredi <Raphael_Manfredi@pobox.com>
228
229. Description:
230
231 Version 1.0.2.
232
233 Fixed spelling in README.
234
235 Added lock_store, lock_nstore, and lock_retrieve (advisory locking)
236 after a proposal from Erik Haugan <erik@solbors.no>.
237
238 Perls before 5.004_04 lack newSVpvn, added remapping in XS.
239
240 Fixed stupid typo in the t/utf8.t test.
241
242Sun Sep 17 18:51:10 MEST 2000 Raphael Manfredi <Raphael_Manfredi@pobox.com>
243
244. Description:
245
246 Version 1.0.1, binary format 2.3.
247
248 Documented that doubles are stored stringified by nstore().
249
250 Added Salvador Ortiz Garcia in CREDITS section, He identified
251 a bug in the store hooks and proposed the right fix: the class
252 id was allocated too soon. His bug case was also added to
253 the regression test suite.
254
255 Now only taint retrieved data when source was tainted. A bug
256 discovered by Marc Lehmann.
257
258 Added support for UTF-8 strings, a contribution of Marc Lehmann.
259 This is normally only activated in post-5.6 perls.
260
9e21b3d0 261Thu Aug 31 23:06:06 MEST 2000 Raphael Manfredi <Raphael_Manfredi@pobox.com>
262
263 First official release Storable 1.0, for inclusion in perl 5.7.0.
264 The license scheme is now compatible with Perl's.
265
f0ffaed8 266Thu Aug 24 01:02:02 MEST 2000 Raphael Manfredi <Raphael_Manfredi@pobox.com>
267
268. Description:
269
270
271 ANSI-fied most of the code, preparing for Perl core integration.
272 The next version of Storable will be 0.8, and will be integrated
273 into the Perl core (development branch).
274
275 Dispatch tables were moved upfront to relieve some compilers,
276 especially on AIX and Windows platforms.
277
278 Merged 64-bit fixes from perl5-porters.
279
7a6a85bf 280Mon Aug 14 09:22:04 MEST 2000 Raphael Manfredi <Raphael_Manfredi@pobox.com>
281
282. Description:
283
284 Added a refcnt dec in retrieve_tied_key(): sv_magic() increases
285 the refcnt on the mg_ptr as well.
286
287 Removed spurious dependency to Devel::Peek, which was used for
288 testing only in t/tied_items.t. Thanks to Conrad Heiney
289 <conrad@fringehead.org> for spotting it first.
290
291Sun Aug 13 22:12:59 MEST 2000 Raphael Manfredi <Raphael_Manfredi@pobox.com>
292
293. Description:
294
295 Marc Lehmann kindly contributed code to add overloading support
296 and to handle references to tied variables.
297
298 Rewrote leading blurb about compatibility to make it clearer what
299 "backward compatibility" is about: when I say 0.7 is backward
300 compatible with 0.6, it means the revision 0.7 can read files
301 produced by 0.6.
302
303 Mention new Clone(3) extension in SEE ALSO.
304
305 Was wrongly optimizing for "undef" values in hashes by not
306 fully recursing: as a result, tied "undef" values were incorrectly
307 serialized.
308
309Sun Jul 30 12:59:17 MEST 2000 Raphael Manfredi <Raphael_Manfredi@pobox.com>
310
311 First revision of Storable 0.7.
312
313 The serializing format is new, known as version 2.0. It is fully
314 backward compatible with 0.6. Earlier formats are deprecated and
315 have not even been tested: next version will drop pre-0.6 format.
316
317 Changes since 0.6@11:
318
319 - Moved interface to the "beta" status. Some tiny parts are still
320 subject to change, but nothing important enough to warrant an "alpha"
321 status any longer.
322
323 - Slightly reduced the size of the Storable image by factorizing
324 object class names and removing final object storage notification due
325 to a redesign of the blessed object storing.
326
327 - Classes can now redefine how they wish their instances to be serialized
328 and/or deep cloned. Serializing hooks are written in Perl code.
329
330 - The engine is now fully re-entrant.
331
332Sun Apr 2 23:47:50 MEST 2000 Raphael Manfredi <Raphael_Manfredi@pobox.com>
333
334. Description:
335
336 Added provision to detect more recent binary formats, since
337 the new upcoming Storable-0.7 will use a different format.
338 In order to prevent attempting the de-serialization of newer
339 formats by older versions, I'm adding this now to the 0.6 series.
340
341 I'm expecting this revision to be the last of the 0.6 series.
342 Unless it does not work with perl 5.6, which I don't use yet,
343 and therefore against which I cannot test.
344
345Wed Mar 29 19:55:21 MEST 2000 Raphael Manfredi <Raphael_Manfredi@pobox.com>
346
347. Description:
348
349 Added note about format incompatibilities with old versions
350 (i.e. pre 0.5@9 formats, which cannot be understood as there
351 was no versionning information in the file by then).
352
353 Protect all $@ variables when eval {} used, to avoid corrupting
354 it when store/retrieve is called within an exception handler.
355
356 Mistakenly included "patchlevel.h" instead of <patchlevel.h>,
357 preventing Perl's patchlevel from being included, which is
358 needed starting from 5.6.
359
360Tue May 12 09:15:15 METDST 1998 Raphael Manfredi <Raphael_Manfredi@grenoble.hp.com>
361
362. Description:
363
364 Fixed shared "undef" bug in hashes, which did not remain shared
365 through store/retrieve.
366
367Thu Feb 10 19:48:16 MET 2000 Raphael Manfredi <Raphael_Manfredi@pobox.com>
368
369. Description:
370
371 added last_op_in_netorder() predicate
372 documented last_op_in_netorder()
373 added tests for the new last_op_in_netorder() predicate
374
375Wed Oct 20 19:07:36 MEST 1999 Raphael Manfredi <Raphael_Manfredi@pobox.com>
376
377. Description:
378
379 Forgot to update VERSION
380
381Tue Oct 19 21:25:02 MEST 1999 Raphael Manfredi <Raphael_Manfredi@pobox.com>
382
383. Description:
384
385 Added mention of japanese translation for the manual page.
386
387 Fixed typo in macro that made threaded code not compilable,
388 especially on Win32 platforms.
389
390 Changed detection of older perls (pre-5.005) by testing PATCHLEVEL
391 directly instead of relying on internal symbols.
392
393Tue Sep 14 22:13:28 MEST 1999 Raphael Manfredi <Raphael_Manfredi@pobox.com>
394
395. Description:
396
397 Integrated "thread-safe" patch from Murray Nesbitt.
398 Note that this may not be very efficient for threaded code,
399 see comment in the code.
400
401 Try to avoid compilation warning on 64-bit CPUs. Can't test it,
402 since I don't have access to such machines.
403
404Mon Jul 12 14:37:19 METDST 1999 Raphael Manfredi <Raphael_Manfredi@pobox.com>
405
406. Description:
407
408 changed my e-mail to pobox.
409
410 mentionned it is not thread-safe.
411
412 updated version number.
413
414 uses new internal PL_* naming convention.
415
416Fri Jul 3 13:38:16 METDST 1998 Raphael Manfredi <Raphael_Manfredi@grenoble.hp.com>
417
418. Description:
419
420 Updated benchmark figures due to recent optimizations done in
421 store(): tagnums are now stored as-is in the hash table, so
422 no surrounding SV is created. And the "shared keys" mode for
423 hash table was turned off.
424
425 Fixed backward compatibility (wrt 0.5@9) for retrieval of
426 blessed refs. That old version did something wrong, but the
427 bugfix prevented correct retrieval of the old format.
428
429Mon Jun 22 11:00:48 METDST 1998 Raphael Manfredi <Raphael_Manfredi@grenoble.hp.com>
430
431. Description:
432
433 Changed benchmark figures.
434
435 Adjust refcnt of tied objects after calling sv_magic() to avoid
436 memory leaks. Contributed by Jeff Gresham.
437
438Fri Jun 12 11:50:04 METDST 1998 Raphael Manfredi <Raphael_Manfredi@grenoble.hp.com>
439
440. Description:
441
442 Added workaround for persistent LVALUE-ness in perl5.004. All
443 scalars tagged as being an lvalue are handled as if they were
444 not an lvalue at all. Added test for that LVALUE bug workaround.
445
446 Now handles Perl immortal scalars explicitely, by storing &sv_yes
447 as such, explicitely.
448
449 Retrieval of non-immortal undef cannot be shared. Previous
450 version was over-optimizing by not creating a separate SV for
451 all undefined scalars seen.
452
453Thu Jun 4 17:21:51 METDST 1998 Raphael Manfredi <Raphael_Manfredi@grenoble.hp.com>
454
455. Description:
456
457 Baseline for Storable-0.6@0.
458
459 This version introduces a binary incompatibility in the generated
460 binary image, which is more compact than older ones by approximatively
461 15%, depending on the exact degree of sharing in your structures.
462
463 The good news is that your older images can still be retrieved with
464 this version, i.e. backward compatibility is preserved. This version
465 of Storable can only generate new binaries however.
466
467 Another good news is that the retrieval of data structure is
468 significantly quicker than before, because a Perl array is used
469 instead of a hash table to keep track of retrieved objects, and
470 also because the image being smaller, less I/O function calls are
471 made.
472
473Tue May 12 09:15:15 METDST 1998 Raphael Manfredi <Raphael_Manfredi@grenoble.hp.com>
474
475. Description:
476
477 Version number now got from Storable.pm directly.
478
479 Fixed overzealous sv_type() optimization, which would make
480 Storable fail when faced with an "upgraded" SV to the PVIV
481 or PVNV kind containing a reference.
482
483Thu Apr 30 15:11:30 METDST 1998 Raphael Manfredi <Raphael_Manfredi@grenoble.hp.com>
484
485. Description:
486
487 Extended the SYNOPSIS section to give quick overview of the
488 routines and their signature.
489
490 Optimized sv_type() to avoid flags checking when not needed, i.e.
491 when their type makes it impossible for them to be refs or tied.
492 This slightly increases throughput by a few percents when refs
493 and tied variables are marginal occurrences in your data.
494
495 Stubs for XS now use OutputStream and InputStream file types to
496 make it work when the given file is actually a socket. Perl
497 makes a distinction for sockets in its internal I/O structures
498 by having both a read and a write structure, whereas plain files
499 share the same one.
500
501Tue Jun 3 09:41:33 METDST 1997 Raphael Manfredi <Raphael_Manfredi@grenoble.hp.com>
502
503. Description:
504
505 Thanks to a contribution from Benjamin A. Holzman, Storable is now
506 able to correctly serialize tied SVs, i.e. tied arrays, hashes
507 and scalars.
508
509Thu Apr 9 18:07:51 METDST 1998 Raphael Manfredi <Raphael_Manfredi@grenoble.hp.com>
510
511. Description:
512
513 I said SvPOK() had changed to SvPOKp(), but that was a lie...
514
515Wed Apr 8 13:14:29 METDST 1998 Raphael Manfredi <Raphael_Manfredi@grenoble.hp.com>
516
517. Description:
518
519 Wrote sizeof(SV *) instead of sizeof(I32) when portable, which
520 in effect mangled the object tags and prevented portability
521 accross 32/64 bit architectures!
522
523Wed Mar 25 14:57:02 MET 1998 Raphael Manfredi <Raphael_Manfredi@grenoble.hp.com>
524
525. Description:
526
527 Added code example for store_fd() and retrieve_fd() in the
528 man page, to emphasize that file descriptors must be passed as
529 globs, not as plain strings.
530
531 Cannot use SV addresses as tag when using nstore() on LP64. This
532 was the cause of problems when creating a storable image on an
533 LP64 machine and retrieving it on an ILP32 system, which is
534 exactly what nstore() is meant for...
535
536 However, we continue to use SV addresses as tags for plain store(),
537 because benchamarking shows that it saves up to 8% of the store
538 time, and store() is meant to be fast at the expense of lack
539 of portability.
540
541 This means there will be approximately an 8% degradation of
542 performance for nstore(), but it's now working as expected.
543 That cost may vary on your machine of course, since it is
544 solely caused by the memory allocation overhead used to create
545 unique SV tags for each distinct stored SV.
546
547Tue Jan 20 09:21:53 MET 1998 Raphael Manfredi <Raphael_Manfredi@grenoble.hp.com>
548
549. Description:
550
551 Don't use any '_' in version number.
552
553Tue Jan 13 17:51:50 MET 1998 Raphael Manfredi <Raphael_Manfredi@grenoble.hp.com>
554
555. Description:
556
557 Updated version number.
558
559 added binmode() calls for systems where it matters.
560
561 Be sure to pass globs, not plain file strings, to C routines,
562 so that Storable can be used under the Perl debugger.
563
564Wed Nov 5 10:53:22 MET 1997 Raphael Manfredi <Raphael_Manfredi@grenoble.hp.com>
565
566. Description:
567
568 Fix memory leaks on seen hash table and returned SV refs.
569
570 Storable did not work properly when tainting enabled.
571
572 Fixed "Allocation too large" messages in freeze/thaw and added.
573 proper regression test in t/freeze.t.
574
575Tue Jun 3 09:41:33 METDST 1997 Raphael Manfredi <Raphael_Manfredi@grenoble.hp.com>
576
577. Description:
578
579 Updated version number
580
581 Added freeze/thaw interface and dclone.
582
583Fri May 16 10:45:47 METDST 1997 Raphael Manfredi <Raphael_Manfredi@grenoble.hp.com>
584
585. Description:
586
587 Forgot that AutoLoader does not export its own AUTOLOAD.
588 I could use
589
590 use AutoLoader 'AUTOLOAD';
591
592 but that would not be backward compatible. So the export is
593 done by hand...
594
595Tue Mar 25 11:21:32 MET 1997 Raphael Manfredi <Raphael_Manfredi@grenoble.hp.com>
596
597. Description:
598
599 Empty scalar strings are now "defined" at retrieval time.
600
601 New test to ensure an empty string is defined when retrieved.
602
603Thu Feb 27 16:32:44 MET 1997 Raphael Manfredi <Raphael_Manfredi@grenoble.hp.com>
604
605. Description:
606
607 Updated version number
608
609 Declare VERSION as being used
610
611 Fixed a typo in the PerlIO_putc remapping.
612 PerlIO_read and perlIO_write inverted size/nb_items.
613 (only relevant for pre-perl5.004 versions)
614
615Thu Feb 27 15:58:31 MET 1997 Raphael Manfredi <Raphael_Manfredi@grenoble.hp.com>
616
617. Description:
618
619 Updated version number
620
621 Added VERSION identification
622
623 Allow build with perl5.003, which is ante perlIO time
624
625Mon Jan 13 17:53:18 MET 1997 Raphael Manfredi <Raphael_Manfredi@grenoble.hp.com>
626
627. Description:
628
629 Random code fixes.
630
631Wed Jan 22 15:19:56 MET 1997 Raphael Manfredi <Raphael_Manfredi@grenoble.hp.com>
632
633. Description:
634
635 Updated version number in Makefile.PL.
636
637 Added "thanks to" section to README.
638
639 Documented new forgive_me variable.
640
641 Made 64-bit clean.
642
643 Added forgive_me support to allow store() of data structures
644 containing non-storable items like CODE refs.
645