File: Changes

package info (click to toggle)
libdata-dmp-perl 0.242-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 184 kB
  • sloc: perl: 357; makefile: 2
file content (163 lines) | stat: -rw-r--r-- 3,561 bytes parent folder | download
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
0.242   2022-08-28  Released-By: PERLANCAR; Urgency: high

        - [bugfix] Avoid 'Modification of a read-only value attempted'
          error because we still dumped a scalarref object as
          bless(\1,'Foo').


0.241   2021-06-24  Released-By: PERLANCAR; Urgency: medium

	- [ux] Make fixup of circular references nicer by showing the
	  subscripts instead of just 'fix'.


0.240   2020-04-07  Released-By: PERLANCAR; Urgency: medium

	- Add dd_ellipsis() and dmp_ellipsis(), as well as
          OPT_MAX_DUMP_LEN_BEFORE_ELLIPSIS.


0.23    2017-01-30  Released-By: PERLANCAR

	- Add option: OPT_STRINGIFY_NUMBERS.


0.22    2017-01-06  Released-By: PERLANCAR

	- Localize regex matching to avoid clobbering %+ (ref:
	  https://github.com/ingydotnet/xxx-pm/pull/2).


0.21    2016-10-26  Released-By: PERLANCAR

	- Add option $OPT_DEPARSE which can be set to 0 to disable
	  deparsing.

	- Add FAQ about the possibility of multiline dump.


0.20    2016-06-03  Released-By: PERLANCAR

	- Return original result in the case of $var = dd $foo (previously
	  it will return 1 which is scalar(@_)).


0.19    2016-04-30  Released-By: PERLANCAR

	- [Bugfix] Quote inf/nan because perl doesn't recognize these
	  numeric literals and they will choke under 'use strict subs'.


0.18    2016-04-30  Released-By: PERLANCAR

	- [Bugfix] Stricter quoting of numbers (only number literal that
	  would not be normalized is dumped without quotes).


0.17    2016-04-30  Released-By: PERLANCAR

	- [Bugfix] Fix quoting criteria of hash key.


0.16    2016-04-29  Released-By: PERLANCAR

	- [Bugfix] Quote 0123 as "0123" to avoid perl interpreting it as
	  octal literal.


0.15    2016-03-31  Released-By: PERLANCAR

        - No functional changes.

        - [dist] List core modules prereqs.

        - [doc] Tweak description.


0.14    2015-12-27  Released-By: PERLANCAR

	- By-pass Data::Dumper and use B::Deparse directly to dump
	  coderefs, add option $OPT_REMOVE_PRAGMAS.


0.13    2015-09-27  Released-By: PERLANCAR

        - Support dumping coderefs (using Data::Dumper & Deparse option).

        - Set default for $OPT_PERL_VERSION to 5.010.


0.12    2015-09-18  Released-By: PERLANCAR

	- No functional changes.

	- [doc] Mention Data::Dumper::Limited & Data::Undump.


0.11    2015-04-26  Released-By: PERLANCAR

	- Add benchmark devscript, show the result in POD.


0.10    2015-03-24  Released-By: PERLANCAR

	- No functional changes.

	- Tweak description.


0.09    2015-03-24  Released-By: PERLANCAR

        - Add tests (this is the first release that has tests :-$).

        - Produce more compact output (remove whitespaces).

        - Remove Data::Dmp::Simple because this module is not used.


0.08    2015-01-06  Released-By: PERLANCAR

	- Use Regexp::Stringify, add setting OPT_PERL_VERSION.


0.07    2015-01-02  Released-By: PERLANCAR

	- [Bugfix] Fix regexp pattern.


0.06    2015-01-02  Released-By: PERLANCAR

        - Dump regexp object as qr/.../ instead of bless(...).

        - Add coderef dumping support to Data::Dmp::Simple too.


0.05    2014-12-28  Released-By: PERLANCAR

	- No functional changes.

	- [doc] Add Benchmarks and FAQ section.


0.04    2014-12-28  Released-By: PERLANCAR

	- No functional changes.

	- Some wording and fmt changes.


0.03    2014-12-19  Released-By: PERLANCAR

	- Dump coderef as "sub{'DUMMY'}".


0.02    2014-10-24  Released-By: PERLANCAR

	- Add module: Data::Dmp::Simple.

	- Bugfix: localize %_subscripts.


0.01     2014-10-21  Released-By: PERLANCAR

         - First release.