Updated Module::Build to 0.36
[p5sagit/p5-mst-13.2.git] / cpan / List-Util / Changes
1 1.22 -- Sat Nov 14 09:26:15 CST 2009
2
3   * silence a compiler warning about an unreferenced local variable [Steve Hay]
4   * RT#51484 Preserve utf8 flag of string passed to dualvar()
5   * RT#51454 Check first argument to first/reduce is a code reference
6   * RT#50528 [PATCH] p_tainted.t fix for VMS [Craig A. Berry]
7   * RT#48550 fix pure perl looks_like_number not to match non-ascii digits
8
9 1.21 -- Mon May 18 10:32:14 CDT 2009
10
11   * Change build system for perl-only install not to need to modify blib
12   * When building inside perl, tests for weaken should be always run (Alexandr Ciornii)
13
14 1.20 -- Wed May 13 16:42:53 CDT 2009
15
16 *** NOTE***
17 This distribution now requires perl 5.6 or greater
18
19 Bug Fixes
20   * Fixed stack pop issue in POP_MULTICALL
21   * Fixed error reporting in import when XS not compiled
22   * Check first argument to reduce is a CODE reference to avoid segfault
23   * Handle overloaded and tied values
24   * Fix tainted test to run on Win32
25
26 Enhancements
27   * Added List::Util::XS so authors can depend on XS version
28   * Removed need for dummy methods in UNIVERSAL for perl-only code
29
30
31 1.19 -- Sun Dec 10 09:58:03 CST 2006
32
33 Bug Fixes
34   * Fix invalid conversion from `const char*' to `char*' warnings
35   * Avoid Makefile error when building on Win32
36   * Fix undefined symbol error for perl < 5.9.0
37   * Fix hardcoded "/" in a filepath that causes p_tainted.t to fail on VMS
38
39 Documentation
40   * Document that reduce calls BLOCK in a scalar context
41   * Add SEE ALSO sections to docs
42
43 Enhancements
44   * A new regression test for readonly, taking a reference to a constant passed to a sub
45
46 1.18 -- Fri Nov 25 09:30:29 CST 2005
47
48 Bug Fixes
49   * Fix pure-perl version of refaddr to avoid blessing an un-blessed reference
50   * Fix memory leak in first() and reduce()
51   * Pure perl version of looks_like_number now matches XS version for
52     references and undef. It will now return undef
53
54 Enhancements
55   * Support for using XSLoader instead of DynaLoader
56   * Use new multicall API
57
58 1.17 -- Mon May 23 08:55:26 CDT 2005
59
60 Bug Fixes
61   * Update XS code to declare PERL_UNUSED_DECL conditionally
62
63 1.16 -- Fri May 20 10:22:49 CDT 2005
64
65 Bug Fixes
66   * Change to refaddr.t test to avoid false errors on some 64 bit platforms
67   * Fix all perl only tests to work when in the core build environment
68   * Fix looks like number test to work for 5.8.5 and above
69  
70 1.15 -- Fri May 13 11:01:15 CDT 2005
71
72 Bug Fixes
73   * Fixed memory leak in first()
74
75 Enhancements
76   * Converted tests to use Test::More
77   * Improved test coverage
78   * Changed Makefile.PL to use Module::Install
79   * Refactor use of Sv..X() macros to be Sv.._set()
80   * Changes from Jarkko for Symbian port of Perl
81   * Documentation updates to weaken()
82
83 1.14 -- Sat May 22 08:01:19 BST 2004
84
85 Bug Fixes
86   * Fixed memory leak in reduce()
87   * Added tests to check passing a reference to a constant to weaken() in perl >= 5.008003
88   * Fixed looks_like_number(undef) to return false for perl >= 5.009002
89   * Fixed bug in refaddr() when passed a tied variable
90
91 Switch to svn repository at http://svn.mutatus.co.uk/wsvn/Scalar-List-Utils/trunk/
92 Old perforce revision log below
93
94 Change 827 on 2003/09/25 by <gbarr@pobox.com> (Graham Barr)
95
96         Release 1.13
97
98 Change 826 on 2003/09/25 by <gbarr@pobox.com> (Graham Barr)
99
100         Fix NV casting issue with some compilers
101
102 Change 825 on 2003/08/14 by <gbarr@pobox.com> (Graham Barr)
103
104         Release 1.12
105
106 Change 824 on 2003/08/14 by <gbarr@pobox.com> (Graham Barr)
107
108         Don't directly use the SV returned as $a in the next iteration,
109         take a copy instead. Fixes problem if the code block result was from
110         an eval or sub call
111
112 Change 823 on 2003/08/14 by <gbarr@pobox.com> (Graham Barr)
113
114         Install into the 'perl' installdirs for >= 5.008
115
116 Change 822 on 2003/08/14 by <gbarr@pobox.com> (Graham Barr)
117
118         Fix test for EBCDIC portability
119
120 Change 771 on 2003/03/03 by <gbarr@pobox.com> (Graham Barr)
121
122         Get path for make from $Config
123
124 Change 770 on 2003/02/14 by <gbarr@pobox.com> (Graham Barr)
125
126         Release 1.11
127
128 Change 769 on 2003/02/14 by <gbarr@pobox.com> (Graham Barr)
129
130         Add t/proto.t to MANIFEST
131
132 Change 768 on 2003/02/14 by <gbarr@pobox.com> (Graham Barr)
133
134         Add set_prototype from Rafael Garcia-Suarez
135
136 Change 767 on 2003/02/14 by <gbarr@pobox.com> (Graham Barr)
137
138         Fix t/isvstring.t so it does not cause perl5.004 to segv
139         because of the exit from within BEGIN
140
141 Change 766 on 2003/02/14 by <gbarr@pobox.com> (Graham Barr)
142
143         Change how patchlevel.h is included and check we got what we wanted (from Jarkko)
144
145 Change 765 on 2003/02/14 by <gbarr@pobox.com> (Graham Barr)
146
147         Add -DPERL_EXT to DEFINEs, requested by Jarkko for 5.8.1
148
149 Change 764 on 2003/02/04 by <gbarr@pobox.com> (Graham Barr)
150
151         Release 1.10
152
153 Change 763 on 2003/02/04 by <gbarr@pobox.com> (Graham Barr)
154
155         Fix linking error for older perls
156
157 Change 762 on 2003/02/04 by <gbarr@pobox.com> (Graham Barr)
158
159         Make lln tests and perl implementation mimic changes to looks_like_number
160         in different perl versions
161
162 Change 761 on 2003/02/04 by <gbarr@pobox.com> (Graham Barr)
163
164         Add looks_like_number
165
166 Change 760 on 2003/02/04 by <gbarr@pobox.com> (Graham Barr)
167
168         Ensure PERL_DL_NONLAZY is false so we don't catch link errors during
169         bootstrap and then test the perl only version
170
171 Change 759 on 2002/12/12 by <gbarr@pobox.com> (Graham Barr)
172
173         Release 1.09
174
175 Change 758 on 2002/12/12 by <gbarr@pobox.com> (Graham Barr)
176
177         Use UV to return refaddr
178
179 Change 757 on 2002/11/03 by <gbarr@pobox.com> (Graham Barr)
180
181         Add XS_VERSION
182
183 Change 756 on 2002/11/03 by <gbarr@pobox.com> (Graham Barr)
184
185         Use PAD_* macros in 5.9
186         Reuse our own target when calling pp_rand in shuffle() so we dont need to create a fake pad
187
188 Change 751 on 2002/10/18 by <gbarr@pobox.com> (Graham Barr)
189
190         Fix context so that sub for reduce/first  is always in a scalar context
191         Fix sum/min/max so that they don't upgrade their arguments to NVs
192         if they are IV or UV
193
194 Change 750 on 2002/10/14 by <gbarr@pobox.com> (Graham Barr)
195
196         Add isvstring()
197
198 Change 745 on 2002/09/23 by <gbarr@pobox.com> (Graham Barr)
199
200         Scalar::Util
201         - Add refaddr()
202
203 Change 722 on 2002/04/29 by <gbarr@pobox.com> (Graham Barr)
204
205         Release 1.0701
206
207 Change 721 on 2002/04/29 by <gbarr@pobox.com> (Graham Barr)
208
209         Add comment to README about failing tests on perl5.6.0
210
211 Change 714 on 2002/03/18 by <gbarr@pobox.com> (Graham Barr)
212
213         Release 1.07
214
215 Change 713 on 2002/03/18 by <gbarr@pobox.com> (Graham Barr)
216
217         Add Scalar::Util::openhandle()
218
219 Change 647 on 2001/09/18 by <gbarr@pobox.com> (Graham Barr)
220
221         Release 1.06
222
223 Change 645 on 2001/09/07 by <gbarr@pobox.com> (Graham Barr)
224
225         Some platforms require the main executable to export symbols
226         needed by modules. In 5.7.2 and prior releases of perl
227         Perl_cxinc was not exported so we need to duplicate its
228         functionality
229
230 Change 644 on 2001/09/07 by <gbarr@pobox.com> (Graham Barr)
231
232         Generate a typemap for NV for all perl version up to and
233         including 5.006
234
235 Change 643 on 2001/09/07 by <gbarr@pobox.com> (Graham Barr)
236
237         Document problems known with specific versions of perl
238
239 Change 642 on 2001/09/05 by <gbarr@pobox.com> (Graham Barr)
240
241         Release 1.05
242
243 Change 641 on 2001/09/05 by <gbarr@pobox.com> (Graham Barr)
244
245         Fix shuffle() to compile with threaded perl
246
247 Change 640 on 2001/09/05 by <gbarr@pobox.com> (Graham Barr)
248
249         Release 1.04
250
251 Change 639 on 2001/09/05 by <gbarr@pobox.com> (Graham Barr)
252
253         Fix context type (caused a core on Tru64)
254         Call pp_rand via *(PL_ppaddr[OP_RAND])
255
256 Change 638 on 2001/09/05 by <gbarr@pobox.com> (Graham Barr)
257
258         Documentation updates
259
260 Change 637 on 2001/09/03 by <gbarr@pobox.com> (Graham Barr)
261
262         Release 1.03
263
264 Change 636 on 2001/09/03 by <gbarr@pobox.com> (Graham Barr)
265
266         More changes to help merging with core dist
267
268 Change 635 on 2001/09/03 by <gbarr@pobox.com> (Graham Barr)
269
270         Added List::Util::shuffle() similar to that described in
271         the perl FAQ except it returns a shuffled list instead of
272         modifying an array passed by reference
273
274 Change 632 on 2001/09/03 by <gbarr@pobox.com> (Graham Barr)
275
276         Handle tied variables passed for the number to dualvar()
277         Preserve number type (IV/UV/NV) in dualvar()
278
279 Change 631 on 2001/08/31 by <gbarr@pobox.com> (Graham Barr)
280
281         Handle eval{} inside of the code blocks for first and reduce
282
283 Change 629 on 2001/08/22 by <gbarr@pobox.com> (Graham Barr)
284
285         perl5.004 does not like exit from within a BEGIN, it core dumps
286
287 Change 628 on 2001/08/22 by <gbarr@pobox.com> (Graham Barr)
288
289         Fix stack problem in first() and reduce()
290         Align with core dist
291
292 Change 483 on 2000/04/10 by <gbarr@pobox.com> (Graham Barr)
293
294         Release 1.02
295
296 Change 482 on 2000/04/10 by <gbarr@pobox.com> (Graham Barr)
297
298         Check for SvMAGICAL on argument for reftype and blessed
299
300 Change 366 on 2000/03/03 by <gbarr@pobox.com> (Graham Barr)
301
302         Release 1.01
303
304 Change 365 on 2000/03/03 by <gbarr@pobox.com> (Graham Barr)
305
306         - Added auto-detection for a compiler and install the perl version
307           if not found
308         - Better perl implemenation of reftype, should be thread-safe now
309
310 Change 364 on 2000/03/03 by <gbarr@pobox.com> (Graham Barr)
311
312         - Added some examples of simple subs that have been requested
313           but not added
314         - Updated copyright dates
315
316 Change 344 on 1999/11/10 by <gbarr@pobox.com> (Graham Barr)
317
318         - Better testcase for reftype
319
320 Change 343 on 1999/11/10 by <gbarr@pobox.com> (Graham Barr)
321
322         - Modules are now called List::Util & Scalar::Util
323         - Supports non-XS install
324         - perl version of reftype now returns "REF" when it should
325
326 Change 311 on 1999/06/01 by <gbarr@pobox.com> (Graham Barr)
327
328         Updated README
329
330 Change 275 on 1999/03/22 by <gbarr@pobox.com> (Graham Barr)
331
332         Removed forall as it is very broken
333
334 Change 274 on 1999/03/22 by <gbarr@pobox.com> (Graham Barr)
335
336         Added List::Util::forall
337
338 Change 273 on 1999/03/21 by <gbarr@pobox.com> (Graham Barr)
339
340         Added weaken and isweak to Ref::Util
341
342 Change 272 on 1999/03/21 by <gbarr@pobox.com> (Graham Barr)
343
344         Add new .pm files to repository
345
346 Change 271 on 1999/03/21 by <gbarr@pobox.com> (Graham Barr)
347
348         - Split into three packages Ref::Util, List::Util and Scalar::DualVar
349         - readonly and clock were removed in favor of other modules
350
351 Change 270 on 1999/03/21 by <gbarr@pobox.com> (Graham Barr)
352
353         Rename package
354
355 Change 269 on 1999/03/21 by <gbarr@pobox.com> (Graham Barr)
356
357         - Added reftype
358         - improved reduce by not doing a sub call
359         - reduce now uses $a and $b
360         - now compiles with 5.005_5x
361
362 Change 178 on 1998/07/26 by <gbarr@pobox.com> (Graham Barr)
363
364         Modified XS code so it will compile with 5.004 and 5.005
365
366 Change 115 on 1998/02/21 by <gbarr@pobox.com> (Graham Barr)
367
368         Fri Feb 20 1998 Graham Barr <gbarr@pobox.com>
369         
370         t/min.t, t/max.t
371         - Change sor to do a numerical sort
372         
373         Fri Dec 19 1997 Graham Barr <gbarr@pobox.com>
374         
375         - Added readonly()
376         
377         Wed Nov 19 1997 Graham Barr <gbarr@pobox.com>
378         
379         - Initial release
380