1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136
|
=head1 NAME
HISTORY - public release history for Data::Dumper
=head1 DESCRIPTION
=over 8
=item 2.07 (7 December 1996)
Dumpxs output is now exactly the same as Dump. It still doesn't
honor C<Useqq> though.
Regression tests test for identical output and C<eval>-ability.
Bug in *GLOB{THING} output fixed.
Other small enhancements.
=item 2.06 (2 December 1996)
Bugfix that was serious enough for new release--the bug cripples
MLDBM. Problem was "Attempt to modify readonly value..." failures
that stemmed for a misguided SvPV_force() instead of a SvPV().)
=item 2.05 (2 December 1996)
Fixed the type mismatch that was causing Dumpxs test to fail
on 64-bit platforms.
GLOB elements are dumped now when C<Purity> is set (using the
*GLOB{THING} syntax).
The C<Freezer> option can be set to a method name to call
before probing objects for dumping. Some applications: objects with
external data, can re-bless themselves into a transitional package;
Objects the maintain ephemeral state (like open files) can put
additional information in the object to facilitate persistence.
The corresponding C<Toaster> option, if set, specifies
the method call that will revive the frozen object.
The C<Deepcopy> flag has been added to do just that.
Dumper does more aggressive cataloging of SCALARs encountered
within ARRAY/HASH structures.
Objects that C<overload> the '""' operator are now handled
properly by the C<Dump> method.
Significant additions to the testsuite.
More documentation.
=item 2.04beta (28 August 1996)
Made dump of glob names respect C<Useqq> setting.
[@$%] are now escaped now when in double quotes.
=item 2.03beta (26 August 1996)
Fixed Dumpxs. It was appending trailing nulls to globnames.
(reported by Randal Schwartz <merlyn@teleport.com>).
Calling the C<Indent()> method on a dumper object now correctly
resets the internal separator (reported by Curt Tilmes
<curt@ltpmail.gsfc.nasa.gov>).
New C<Terse> option to suppress the 'C<VARI<n> = >' prefix
introduced. If the option is set, they are output only when
absolutely essential.
The C<Useqq> flag is supported (but not by the XSUB version
yet).
Embedded nulls in keys are now handled properly by Dumpxs.
Dumper.xs now use various integer types in perl.h (should
make it compile without noises on 64 bit platforms, although
I haven't been able to test this).
All the dump methods now return a list of strings in a list
context.
=item 2.02beta (13 April 1996)
Non portable sprintf usage in XS code fixed (thanks to
Ulrich Pfeifer <pfeifer@charly.informatik.uni-dortmund.de>).
=item 2.01beta (10 April 1996)
Minor bugfix (single digit numbers were always getting quoted).
=item 2.00beta (9 April 1996)
C<Dumpxs> is now the exact XSUB equivalent of C<Dump>. The XS version
is 4-5 times faster.
C<require 5.002>.
MLDBM example removed (as its own module, it has a separate CPAN
reality now).
Fixed bugs in handling keys with wierd characters. Perl can be
tripped up in its implicit quoting of the word before '=>'. The
fix: C<Data::Dumper::Purity>, when set, always triggers quotes
around hash keys.
Andreas Koenig <k@anna.in-berlin.de> pointed out that handling octals
is busted. His patch added.
Dead code removed, other minor documentation fixes.
=item 1.23 (3 Dec 1995)
MLDBM example added.
Several folks pointed out that quoting of ticks and backslashes
in strings is missing. Added.
Ian Phillips <ian@pipex.net> pointed out that numerics may lose
precision without quotes. Fixed.
=item 1.21 (20 Nov 1995)
Last stable version I can remember.
=back
=cut
|