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 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299
|
2021-06-26 Breno G. de Oliveira <garu@cpan.org>
Release 1.25
New option $Data::Dump::LINEWIDTH controls when to perform a
linebreak (default is 60). Many thanks to Jonas Kramer, Rob Kinyon,
cybernicus and Lady Aleena for submitting reports and pull requests.
2021-06-25 Breno G. de Oliveira <garu@cpan.org>
Release 1.24
Strings like "NaN" are still strings
Update maintainer and repository information
2015-06-09 Gisle Aas <gisle@ActiveState.com>
Release 1.23
Avoid "Negative repeat count does nothing"-warnings from perl-5.22
Typo fixes by David Steinbrunner
2013-05-10 Gisle Aas <gisle@ActiveState.com>
Release 1.22
Deal with class names containing '=' [RT#72415]
Filters now get access to $ctx->expr; the textual expression
denoting the current object.
2011-10-15 Gisle Aas <gisle@ActiveState.com>
Release 1.21
Make dump($1) work when $1 was integer [RT#63883]
Dump floats without quoting
2011-10-02 Gisle Aas <gisle@ActiveState.com>
Release 1.20
Add depth() method to FilterContext
Make dump($1) work [RT#63883]
Limit our temp listen socket to localhost [RT#63534]
2010-10-19 Gisle Aas <gisle@ActiveState.com>
Release 1.19
Add skips to tests to make perl-5.8 happy
2010-10-18 Gisle Aas <gisle@ActiveState.com>
Release 1.18
Don't downgrade is_utf8-strings with MIME::Base64 [RT#60103]
Deal with the perl-5.13 (?^:...) regex construct [RT#61552]
croak on bad add_dump_filter argument
2010-06-12 Gisle Aas <gisle@ActiveState.com>
Release 1.17
Fix dump of "1\n" (the newline was lost) [RT#56595]
Start using the range operator to shorten list dumps.
For instance dump(1,2,3,4,5) now returns '(1 .. 5)'.
CODE references now dumped as 'sub { ... }'.
Potetential compatibility issue as perl-5.12 or better
is needed to eval such strings.
Fix how multiline hash values are indented.
Make indentation configurable
Improved documentation
2010-06-09 Gisle Aas <gisle@ActiveState.com>
Release 1.16
Add support for filter callbacks
- filters can modify how selected objects are dumped
Various enhancements to how/when hash keys are quoted
- don't quote keywords
- don't quote words prefixed with "-"
- don't quote long identifier keys
- quote all hash keys if one needs quoting for better alignment
Use case-insensitive sorting for hash keys
2009-07-26 Gisle Aas <gisle@ActiveState.com>
Release 1.15
Fixed regexp that determines if hash keys are numeric [RT#48003]
2009-01-12 Gisle Aas <gisle@ActiveState.com>
Release 1.14
Data::Dump::Trace enhancements:
- trace() function
- prototypes
2009-01-02 Gisle Aas <gisle@ActiveState.com>
Release 1.13
Added the Data::Dump::Trace module
2008-10-21 Gisle Aas <gisle@ActiveState.com>
Release 1.12
Documentation tweaks.
2008-08-23 Gisle Aas <gisle@ActiveState.com>
Release 1.11
Documentation tweaks.
2008-08-21 Gisle Aas <gisle@ActiveState.com>
Release 1.10
Add the functions quote(), dd() and ddx().
Fix segfault when duming large repeated strings [RT#33520]
Incorporated documentation improvements from Mark Stosberg
Apply Data-Dump-1.08-ANDK-01.patch from CPAN. Might do some
good on older perls I guess.
2006-11-29 Gisle Aas <gisle@ActiveState.com>
Release 1.08
By popular demand; don't put underscore into dumped integers
to group thousands.
2006-11-24 Gisle Aas <gisle@ActiveState.com>
Release 1.07
Remove unused code.
Add some more tests.
2004-11-12 Gisle Aas <gisle@ActiveState.com>
Release 1.06
Compatibility fix for bleadperl by David Dyck <david.dyck@fluke.com>.
2004-11-11 Gisle Aas <gisle@ActiveState.com>
Release 1.05
Improved track scalar references; dump() ended up
recursing forever on some cyclic structures.
More tests.
2004-11-05 Gisle Aas <gisle@ActiveState.com>
Release 1.04
Try to not be confused when dumping tied hashes or arrays.
<https://rt.cpan.org/Ticket/Display.html?id=6604>.
2004-04-13 Gisle Aas <gisle@ActiveState.com>
Release 1.03
Dump strings with chars with ord > 255 using \x{...} escapes.
2003-12-18 Gisle Aas <gisle@ActiveState.com>
Release 1.02
Documentation fixes by Paul Croome <Paul.Croome@softwareag.com>.
2003-10-10 Gisle Aas <gisle@ActiveState.com>
Release 1.01
Improved formatting of Regexp objects. Put top level modifiers in
the normal place and smart selection of separators.
Perl 5.6 or better required.
2003-10-06 Gisle Aas <gisle@ActiveState.com>
Release 1.00
Support dumping of Regexp objects.
If all the keys of a hash looks numeric sort them accordingly.
Don't quote plain normalized integer keys.
2000-09-11 Gisle Aas <gisle@ActiveState.com>
Release 0.04
Think harder about when to align hash values.
Compensate for the way references to references are stringified
in perl-5.7.0.
1999-08-05 Gisle Aas <gisle@aas.no>
Release 0.03
Fixed the generation of references to nested scalars.
Separate thousands with _ in large integers.
More tests.
1999-05-27 Gisle Aas <gisle@aas.no>
Release 0.02
Don't die on data that we can't handle, like LVALUES.
We now produce a warning and return it as a '#LVALUE#' string.
Added parenthesis around bless argument.
1998-11-21 Gisle Aas <gisle@aas.no>
First revision; 0.01
|