Update perl572delta.
[p5sagit/p5-mst-13.2.git] / pod / perl572delta.pod
1 =head1 NAME
2
3 perl571delta - what's new for perl v5.7.2
4
5 =head1 DESCRIPTION
6
7 This document describes differences between the 5.7.1 release and the
8 5.7.2 release.  
9
10 (To view the differences between the 5.6.0 release and the 5.7.0
11 release, see L<perl570delta>.  To view the differences between the
12 5.7.0 release and the 5.7.1 release, see L<perl571delta>.)
13
14 =head1 Security Vulnerability Closed
15
16 (This change was already made in 5.7.0 but bears repeating here.)
17
18 A security vulnerability affecting all Perl versions prior to 5.6.1
19 was found in August 2000.  The vulnerability does not affect default
20 installations and as far as is known affects only the Linux platform.
21
22 You should upgrade your Perl to 5.6.1 as soon as possible.  Patches
23 for earlier releases exist but using the patches require full
24 recompilation from the source code anyway, so 5.6.1 is your best
25 choice.
26
27 See http://www.cpan.org/src/5.0/sperl-2000-08-05/sperl-2000-08-05.txt
28 for more information.
29
30 =head1 Incompatible Changes
31
32 =head2 64-bit platforms and malloc
33
34 If your pointers are 64 bits wide, the Perl malloc is no more being
35 used because it simply does not work with 8-byte pointers.  Also,
36 usually the system malloc on such platforms are much better optimized
37 for such large memory models than the Perl malloc.
38
39 =head2 Future Deprecations
40
41 The current user-visible implementation of pseudo-hashes (the weird
42 use of the first array element) is deprecated starting from Perl 5.8.0
43 and will be removed in Perl 5.10.0, and the feature will be implemented
44 differently.  Not only is the current interface rather ugly, but the
45 current implementation slows down normal array and hash use quite
46 noticeably. The 'fields' pragma interface will remain available.
47
48 The suidperl is also considered to be too much a risk to continue
49 maintaining and the suidperl code is likely to be removed in a future
50 release.
51
52 =head1 Core Enhancements
53
54 In general a lot of fixing has happened in the area of Perl's understanding
55 of numbers, both integer and floating point.  Since in many systems the
56 standard number parsing functions like C<strtoul()> and C<atof()> seem
57 to have bugs, Perl tries to work around their deficiencies.  This results
58 hopefully in more accurate numbers.
59
60 =over 4
61
62 =item *
63
64 The rules for allowing underscores (underbars) in numeric constants
65 have been relaxed and simplified: now you can have an underscore
66 B<between digits>.
67
68 =item *
69
70 VMS now works under PerlIO.
71
72 =item *
73
74 GMAGIC (right-hand side magic) could in many cases such as concatenation
75 of string be invoked too many times.
76
77 =item *
78
79 The MAGIC constants (e.g. C<'P'>) have been macrofied
80 (e.g. C<PERL_MAGIC_TIED>) for better source code readability
81 and maintainability.
82
83 =item *
84
85 The C<op_clear> and C<op_null> are now exported.
86
87 =item *
88
89 L<utime> now supports C<utime undef, undef, @files> to change the
90 times to the current time.
91
92 =item *
93
94 The Perl parser has been stress tested using both random input and
95 Markov chain input.
96
97 =back
98
99 =head1 Modules and Pragmata
100
101 =head2 New Modules and Distribution
102
103 =over 4
104
105 =item *
106
107 L<Attribute::Handlers> - Simpler definition of attribute handlers
108
109 =item *
110
111 L<ExtUtils::Constant> - generate XS code to import C header constants
112
113 =item *
114
115 L<I18N::LangTags> - functions for dealing with RFC3066-style language tags
116
117 =item *
118
119 L<libnet> - a collection of perl5 modules related to network programming
120
121 =item *
122
123 L<List::Util> - selection of general-utility list subroutines
124
125 =item *
126
127 L<Locale::Maketext> - framework for localization
128
129 =item *
130
131 L<Memoize> - Make your functions faster by trading space for time
132
133 =item *
134
135 L<NEXT> - pseudo-class for method redispatch
136
137 =item *
138
139 L<Scalar::Util> - selection of general-utility scalar subroutines
140
141 =item *
142
143 L<Time::HiRes> - high resolution ualarm, usleep, and gettimeofday
144
145 =item *
146
147 L<Time::Piece> - Object Oriented time objects
148
149 =back
150
151 =head2 Updated And Improved Modules and Pragmata
152
153 =over 4
154
155 =item *
156
157 L<B::Deparse> module has been significantly enhanced.  It now
158 can deparse almost all of the standard test suite (so that the
159 tests still succeed).
160
161 =item *
162
163 L<Class::Struct> now assigns the array/hash element if the accessor
164 is called with an array/hash element as the B<sole> argument.
165
166 =item *
167
168 L<Cwd> extension is now (even) faster.
169
170 =item *
171
172 L<DB_File> extension has been updated to version 1.77.
173
174 =item *
175
176 L<Fcntl>, L<Socket>, and L<Sys::Syslog> have been rewritten to use the
177 new-style constant dispatch section (see L<ExtUtils::Constant>).
178
179 =item *
180
181 L<File::Find> is now (again) reentrant.  It also has been made
182 more portable.
183
184 =item *
185
186 L<File::Glob> now supports C<GLOB_LIMIT> constant to limit the
187 size of the returned list of filenames.
188
189 =item *
190
191 L<vars> now supports declaring qualified variables.
192
193 =back
194
195 =head1 Utility Changes
196
197 =over 4
198
199 =item *
200
201 The F<emacs/e2ctags.pl> is now much faster.
202
203 =item *
204
205 L<h2xs> uses the new L<ExtUtils::Constant> module which will affect
206 newly created extensions that define constants.  Since the new code is
207 more correct (if you have two constants where the first one is a
208 prefix of the second one, the first constant B<never> gets defined),
209 less lossy (it uses integers for integer constant, as opposed to the
210 old code that used floating point numbers even for integer constants),
211 and slightly faster, you might want to consider regenerating your
212 extension code (the new scheme makes regenerating easy).
213
214 =item *
215
216 L<libnetcfg> has been added to configure the libnet.
217
218 =item *
219
220 The F<Pod::Html> (and thusly L<pod2html>) now allows specifying
221 a cache directory.
222
223 =back
224
225 =head1 New Documentation
226
227 =over 4
228
229 =item *
230
231 L<Locale::Maketext::TPJ13> is an article about software localization,
232 originally published in The Perl Journal #13, republished here with
233 kind permission.
234
235 =item *
236
237 More README.$PLATFORM files have been converted into pod, which also
238 means that they also be installed as perl$PLATFORM documentation
239 files.  The new files are L<perlapollo>, L<perlbeos>, L<perldgux>,
240 L<perlhurd>, L<perlmint>, L<perlnetware>, L<perlplan9>, L<perlqnx>,
241 and L<perltru64>.
242
243 =item *
244
245 The F<Todo> and F<Todo-5.6> files have been merged into L<perltodo>.
246
247 =item *
248
249 Use of the F<gprof> tool to profile Perl has been documented in L<perlhack>.
250
251 =back
252
253 =head1 Installation and Configuration Improvements
254
255 =head2 New Or Improved Platforms
256
257 =over 4
258
259 =item *
260
261 AIX should now work better with gcc.  Also longdouble support in
262 AIX should be better now.
263
264 =item *
265
266 AtheOS (http://www.atheos.cx/) is a new platform.
267
268 =item *
269
270 DG/UX platform now supports the 5.005-style threads.
271
272 =item *
273
274 Several MacOS (Classic) portability patches have been applied.
275 We hope to get a fully working port by 5.8.0.  (The remaining
276 problems relate to the changed IO model of Perl.)
277
278 =item *
279
280 MacOS X (or Darwin) should now be able to build Perl even on HFS+
281 filesystems.  (The case-insensitivity confused the Perl build process.)
282
283 =item *
284
285 NetWare from Novell is now supported.
286
287 =item *
288
289 The Amdahl UTS UNIX mainframe platform is now supported.
290
291 =back
292
293 =head2 Generic Improvements
294
295 =over 4
296
297 =item *
298
299 The C code has been made much more C<gcc -Wall> clean.  Some warning
300 messages still remain, though, so if you are compiling with gcc you
301 will see some warnings about dubious practices.  The warnings are
302 being worked on.
303
304 =item *
305
306 In AFS installations one can configure the root of the AFS to be
307 somewhere else than the default F</afs> by using the Configure
308 parameter C<-Dafsroot=/some/where/else>.
309
310 =item *
311
312 The version of Berkeley DB used when the Perl (and, presumably, the
313 DB_File extension) was built is now available as
314 C<@Config{qw(db_version_major db_version_minor db_version_patch)}>
315 from Perl and as C<DB_VERSION_MAJOR_CFG DB_VERSION_MINOR_CFG
316 DB_VERSION_PATCH_CFG> from C.
317
318 =item *
319
320 The Thread extension is now not built at all under ithreads
321 (C<Configure -Duseithreads>) because it wouldn't work anyway (the
322 Thread extension requires being Configured with C<-Duse5005threads>).
323
324 =item *
325
326 The C<B::Deparse> compiler backend has been so significantly improved
327 that almost the whole Perl test suite passes after being deparsed.  A
328 make target has been added to help in further testing: C<make test.deparse>.
329
330 =back
331
332 =head1 Selected Bug Fixes
333
334 =over 5
335
336 =item *
337
338 The autouse pragma didn't work for Multi::Part::Function::Names.
339
340 =item *
341
342 The behaviour of non-decimal but numeric string constants such as
343 "0x23" was platform-dependent: in some platforms that was seen as 35,
344 in some as 0, in some as a floating point number (don't ask).  This
345 was caused by Perl using the operating system libraries in a situation
346 where the result of the string to number conversion is undefined: now
347 Perl consistently handles such strings as zero in numeric contexts.
348
349 =item *
350
351 L<dprofpp> -R didn't work.
352
353 =item *
354
355 PERL5OPT with embedded spaces didn't work.
356
357 =item *
358
359 L<Sys::Syslog> ignored the C<LOG_AUTH> constant.
360
361 =back
362
363 =head2 Platform Specific Changes and Fixes
364
365 =over 4
366
367 =item *
368
369 Some versions of glibc have a broken modfl().  This affects builds
370 with C<-Duselongdouble>.  This version of Perl detects this brokenness
371 and has a workaround for it.  The glibc release 2.2.2 is known to have
372 fixed the modfl() bug.
373
374 =back
375
376 =head1 New or Changed Diagnostics
377
378 =over 4
379
380 =item *
381
382 In the regular expression diagnostics the C<E<lt>E<lt> HERE> marker
383 introduced in 5.7.0 has been changed to be C<E<lt>-- HERE> since too
384 many people found the C<E<lt>E<lt>> to be too similar to here-document
385 starters.
386
387 =item *
388
389 If you try to L<perlfunc/pack> a number less than 0 or larger than 255
390 using the C<"C"> format you will get an optional warning.  Similarly
391 for the C<"c"> format and a number less than -128 or more than 127.
392
393 =item *
394
395 Certain regex modifiers such as C<(?o)> make sense only if applied to
396 the entire regex.  You will an optional warning if you try to do otherwise.
397
398 =item *
399
400 Using arrays or hashes as references (e.g. C<%foo->{bar}> has been
401 deprecated for a while.  Now you will get an optional warning.
402
403 =back
404
405 =head1 Changed Internals
406
407 =head2 Regex pre-/post-compilation items matched up
408
409 The regex compiler now maintains a structure that identifies nodes in
410 the compiled bytecode with the corresponding syntactic features of the
411 original regex expression.  The information is attached to the new
412 C<offsets> member of the C<struct regexp>. See L<perldebguts> for more
413 complete information.
414
415 =head1 New Tests
416
417 Several new tests have been added, especially for the F<lib> subsection.
418
419 The tests are now reported in a different order than in earlier Perls.
420 (This happens because the test scripts from under t/lib have been moved
421 to be closer to the library/extension they are testing.)
422
423 =head1 Known Problems
424
425 Note that unlike other sections in this document (which describe
426 changes since 5.7.0) this section is cumulative containing known
427 problems for all the 5.7 releases.
428
429 =head2 AIX vac 5.0.0.0 May Produce Buggy Code For Perl
430
431 The AIX C compiler vac version 5.0.0.0 may produce buggy code,
432 resulting in few random tests failing, but when the failing tests
433 are run by hand, they succeed.  We suggest upgrading to at least
434 vac version 5.0.1.0, that has been known to compile Perl correctly.
435 "lslpp -L|grep vac.C" will tell you the vac version.
436
437 =head2 lib/ftmp-security tests warn 'system possibly insecure'
438
439 Don't panic.  Read INSTALL 'make test' section instead.
440
441 =head2 lib/io_multihomed Fails In LP64-Configured HP-UX
442
443 The lib/io_multihomed test may hang in HP-UX if Perl has been
444 configured to be 64-bit. Because other 64-bit platforms do not hang in
445 this test, HP-UX is suspect. All other tests pass in 64-bit HP-UX. The
446 test attempts to create and connect to "multihomed" sockets (sockets
447 which have multiple IP addresses).
448
449 =head2 Test lib/posix Subtest 9 Fails In LP64-Configured HP-UX
450
451 If perl is configured with -Duse64bitall, the successful result of the
452 subtest 10 of lib/posix may arrive before the successful result of the
453 subtest 9, which confuses the test harness so much that it thinks the
454 subtest 9 failed.
455
456 =head2 lib/b test 19
457
458 The test fails on various platforms (PA64 and IA64 are known), but the
459 exact cause is still being investigated.
460
461 =head2 Linux With Sfio Fails op/misc Test 48
462
463 No known fix.
464
465 =head2 sigaction test 13 in VMS
466
467 The test is known to fail; whether it's because of VMS of because
468 of faulty test is not known.
469
470 =head2 sprintf tests 129 and 130
471
472 The op/sprintf tests 129 and 130 are known to fail on some platforms.
473 Examples include any platform using sfio, and Compaq/Tandem's NonStop-UX.
474 The failing platforms do not comply with the ANSI C Standard, line
475 19ff on page 134 of ANSI X3.159 1989 to be exact.  (They produce
476 something else than "1" and "-1" when formatting 0.6 and -0.6 using
477 the printf format "%.0f", most often they produce "0" and "-0".)
478
479 =head2  Failure of Thread tests
480
481 B<Note that support for 5.005-style threading remains experimental.>
482
483 The following tests are known to fail due to fundamental problems in
484 the 5.005 threading implementation. These are not new failures--Perl
485 5.005_0x has the same bugs, but didn't have these tests.
486
487 lib/Memoize/t/correctness.t  23-25
488 lib/Memoize/t/unmemoize.t    2-5
489 t/pragma/autouse.t           4
490 t/lib/thr5005.t              19-20
491
492 =head2 Localising a Tied Variable Leaks Memory
493
494     use Tie::Hash;
495     tie my %tie_hash => 'Tie::StdHash';
496
497     ...
498
499     local($tie_hash{Foo}) = 1; # leaks
500
501 Code like the above is known to leak memory every time the local()
502 is executed.
503
504 =head2 Self-tying of Arrays and Hashes Is Forbidden
505
506 Self-tying of arrays and hashes is broken in rather deep and
507 hard-to-fix ways.  As a stop-gap measure to avoid people from getting
508 frustrated at the mysterious results (core dumps, most often) it is
509 for now forbidden (you will get a fatal error even from an attempt).
510
511 =head2 Variable Attributes are not Currently Usable for Tieing
512
513 This limitation will hopefully be fixed in future.  (Subroutine
514 attributes work fine for tieing, see L<Attribute::Handlers>).
515
516 =head2 Building Extensions Can Fail Because Of Largefiles
517
518 Some extensions like mod_perl are known to have issues with
519 `largefiles', a change brought by Perl 5.6.0 in which file offsets
520 default to 64 bits wide, where supported.  Modules may fail to compile
521 at all or compile and work incorrectly.  Currently there is no good
522 solution for the problem, but Configure now provides appropriate
523 non-largefile ccflags, ldflags, libswanted, and libs in the %Config
524 hash (e.g., $Config{ccflags_nolargefiles}) so the extensions that are
525 having problems can try configuring themselves without the
526 largefileness.  This is admittedly not a clean solution, and the
527 solution may not even work at all.  One potential failure is whether
528 one can (or, if one can, whether it's a good idea) link together at
529 all binaries with different ideas about file offsets, all this is
530 platform-dependent.
531
532 =head2 The Compiler Suite Is Still Experimental
533
534 The compiler suite is slowly getting better but is nowhere near
535 working order yet.
536
537 =head1 Reporting Bugs
538
539 If you find what you think is a bug, you might check the articles
540 recently posted to the comp.lang.perl.misc newsgroup and the perl
541 bug database at http://bugs.perl.org.  There may also be
542 information at http://www.perl.com/perl/, the Perl Home Page.
543
544 If you believe you have an unreported bug, please run the B<perlbug>
545 program included with your release.  Be sure to trim your bug down
546 to a tiny but sufficient test case.  Your bug report, along with the
547 output of C<perl -V>, will be sent off to perlbug@perl.org to be
548 analysed by the Perl porting team.
549
550 =head1 SEE ALSO
551
552 The F<Changes> file for exhaustive details on what changed.
553
554 The F<INSTALL> file for how to build Perl.
555
556 The F<README> file for general stuff.
557
558 The F<Artistic> and F<Copying> files for copyright information.
559
560 =head1 HISTORY
561
562 Written by Jarkko Hietaniemi <F<jhi@iki.fi>>, with many contributions
563 from The Perl Porters and Perl Users submitting feedback and patches.
564
565 Send omissions or corrections to <F<perlbug@perl.org>>.
566
567 =cut