d0adc77b84fc5cf9609c73eeb4b92acbd5464ac1
[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<Test::More> - yet another framework for writing test scripts
144
145 =item *
146
147 L<Test::Simple> - Basic utilities for writing tests
148
149 =item *
150
151 L<Time::HiRes> - high resolution ualarm, usleep, and gettimeofday
152
153 =item *
154
155 L<Time::Piece> - Object Oriented time objects
156
157 =back
158
159 =head2 Updated And Improved Modules and Pragmata
160
161 =over 4
162
163 =item *
164
165 L<B::Deparse> module has been significantly enhanced.  It now
166 can deparse almost all of the standard test suite (so that the
167 tests still succeed).  There is a make target "test.deparse"
168 for trying this out.
169
170 =item *
171
172 L<Class::Struct> now assigns the array/hash element if the accessor
173 is called with an array/hash element as the B<sole> argument.
174
175 =item *
176
177 L<Cwd> extension is now (even) faster.
178
179 =item *
180
181 L<DB_File> extension has been updated to version 1.77.
182
183 =item *
184
185 L<Fcntl>, L<Socket>, and L<Sys::Syslog> have been rewritten to use the
186 new-style constant dispatch section (see L<ExtUtils::Constant>).
187
188 =item *
189
190 L<File::Find> is now (again) reentrant.  It also has been made
191 more portable.
192
193 =item *
194
195 L<File::Glob> now supports C<GLOB_LIMIT> constant to limit the
196 size of the returned list of filenames.
197
198 =item *
199
200 L<vars> now supports declaring qualified variables.
201
202 =back
203
204 =head1 Utility Changes
205
206 =over 4
207
208 =item *
209
210 The F<emacs/e2ctags.pl> is now much faster.
211
212 =item *
213
214 L<h2xs> uses the new L<ExtUtils::Constant> module which will affect
215 newly created extensions that define constants.  Since the new code is
216 more correct (if you have two constants where the first one is a
217 prefix of the second one, the first constant B<never> gets defined),
218 less lossy (it uses integers for integer constant, as opposed to the
219 old code that used floating point numbers even for integer constants),
220 and slightly faster, you might want to consider regenerating your
221 extension code (the new scheme makes regenerating easy).
222
223 =item *
224
225 L<libnetcfg> has been added to configure the libnet.
226
227 =item *
228
229 The F<Pod::Html> (and thusly L<pod2html>) now allows specifying
230 a cache directory.
231
232 =back
233
234 =head1 New Documentation
235
236 =over 4
237
238 =item *
239
240 L<Locale::Maketext::TPJ13> is an article about software localization,
241 originally published in The Perl Journal #13, republished here with
242 kind permission.
243
244 =item *
245
246 More README.$PLATFORM files have been converted into pod, which also
247 means that they also be installed as perl$PLATFORM documentation
248 files.  The new files are L<perlapollo>, L<perlbeos>, L<perldgux>,
249 L<perlhurd>, L<perlmint>, L<perlnetware>, L<perlplan9>, L<perlqnx>,
250 and L<perltru64>.
251
252 =item *
253
254 The F<Todo> and F<Todo-5.6> files have been merged into L<perltodo>.
255
256 =item *
257
258 Use of the F<gprof> tool to profile Perl has been documented in
259 L<perlhack>.  There is a make target "perl.gprof" for generating a
260 gprofiled Perl executable.
261
262 =back
263
264 =head1 Installation and Configuration Improvements
265
266 =head2 New Or Improved Platforms
267
268 =over 4
269
270 =item *
271
272 AIX should now work better with gcc.  Also longdouble support in AIX
273 should be better now.  See L<perlaix>.
274
275 =item *
276
277 AtheOS (http://www.atheos.cx/) is a new platform.
278
279 =item *
280
281 DG/UX platform now supports the 5.005-style threads.  See L<perldgux>.
282
283 =item *
284
285 Several MacOS (Classic) portability patches have been applied.  We
286 hope to get a fully working port by 5.8.0.  (The remaining problems
287 relate to the changed IO model of Perl.)  See L<perlmacos>.
288
289 =item *
290
291 MacOS X (or Darwin) should now be able to build Perl even on HFS+
292 filesystems.  (The case-insensitivity confused the Perl build process.)
293
294 =item *
295
296 NetWare from Novell is now supported.  See L<perlnetware>.
297
298 =item *
299
300 The Amdahl UTS UNIX mainframe platform is now supported.
301
302 =back
303
304 =head2 Generic Improvements
305
306 =over 4
307
308 =item *
309
310 The C code has been made much more C<gcc -Wall> clean.  Some warning
311 messages still remain, though, so if you are compiling with gcc you
312 will see some warnings about dubious practices.  The warnings are
313 being worked on.
314
315 =item *
316
317 In AFS installations one can configure the root of the AFS to be
318 somewhere else than the default F</afs> by using the Configure
319 parameter C<-Dafsroot=/some/where/else>.
320
321 =item *
322
323 The version of Berkeley DB used when the Perl (and, presumably, the
324 DB_File extension) was built is now available as
325 C<@Config{qw(db_version_major db_version_minor db_version_patch)}>
326 from Perl and as C<DB_VERSION_MAJOR_CFG DB_VERSION_MINOR_CFG
327 DB_VERSION_PATCH_CFG> from C.
328
329 =item *
330
331 The Thread extension is now not built at all under ithreads
332 (C<Configure -Duseithreads>) because it wouldn't work anyway (the
333 Thread extension requires being Configured with C<-Duse5005threads>).
334
335 =item *
336
337 The C<B::Deparse> compiler backend has been so significantly improved
338 that almost the whole Perl test suite passes after being deparsed.  A
339 make target has been added to help in further testing: C<make test.deparse>.
340
341 =back
342
343 =head1 Selected Bug Fixes
344
345 =over 5
346
347 =item *
348
349 The autouse pragma didn't work for Multi::Part::Function::Names.
350
351 =item *
352
353 The behaviour of non-decimal but numeric string constants such as
354 "0x23" was platform-dependent: in some platforms that was seen as 35,
355 in some as 0, in some as a floating point number (don't ask).  This
356 was caused by Perl using the operating system libraries in a situation
357 where the result of the string to number conversion is undefined: now
358 Perl consistently handles such strings as zero in numeric contexts.
359
360 =item *
361
362 L<dprofpp> -R didn't work.
363
364 =item *
365
366 PERL5OPT with embedded spaces didn't work.
367
368 =item *
369
370 L<Sys::Syslog> ignored the C<LOG_AUTH> constant.
371
372 =back
373
374 =head2 Platform Specific Changes and Fixes
375
376 =over 4
377
378 =item *
379
380 Some versions of glibc have a broken modfl().  This affects builds
381 with C<-Duselongdouble>.  This version of Perl detects this brokenness
382 and has a workaround for it.  The glibc release 2.2.2 is known to have
383 fixed the modfl() bug.
384
385 =back
386
387 =head1 New or Changed Diagnostics
388
389 =over 4
390
391 =item *
392
393 In the regular expression diagnostics the C<E<lt>E<lt> HERE> marker
394 introduced in 5.7.0 has been changed to be C<E<lt>-- HERE> since too
395 many people found the C<E<lt>E<lt>> to be too similar to here-document
396 starters.
397
398 =item *
399
400 If you try to L<perlfunc/pack> a number less than 0 or larger than 255
401 using the C<"C"> format you will get an optional warning.  Similarly
402 for the C<"c"> format and a number less than -128 or more than 127.
403
404 =item *
405
406 Certain regex modifiers such as C<(?o)> make sense only if applied to
407 the entire regex.  You will an optional warning if you try to do otherwise.
408
409 =item *
410
411 Using arrays or hashes as references (e.g. C<%foo->{bar}> has been
412 deprecated for a while.  Now you will get an optional warning.
413
414 =back
415
416 =head1 Changed Internals
417
418 =head2 Regex pre-/post-compilation items matched up
419
420 The regex compiler now maintains a structure that identifies nodes in
421 the compiled bytecode with the corresponding syntactic features of the
422 original regex expression.  The information is attached to the new
423 C<offsets> member of the C<struct regexp>. See L<perldebguts> for more
424 complete information.
425
426 =head1 New Tests
427
428 Several new tests have been added, especially for the F<lib> subsection.
429
430 The tests are now reported in a different order than in earlier Perls.
431 (This happens because the test scripts from under t/lib have been moved
432 to be closer to the library/extension they are testing.)
433
434 =head1 Known Problems
435
436 Note that unlike other sections in this document (which describe
437 changes since 5.7.0) this section is cumulative containing known
438 problems for all the 5.7 releases.
439
440 =head2 AIX vac 5.0.0.0 May Produce Buggy Code For Perl
441
442 The AIX C compiler vac version 5.0.0.0 may produce buggy code,
443 resulting in few random tests failing, but when the failing tests
444 are run by hand, they succeed.  We suggest upgrading to at least
445 vac version 5.0.1.0, that has been known to compile Perl correctly.
446 "lslpp -L|grep vac.C" will tell you the vac version.
447
448 =head2 lib/ftmp-security tests warn 'system possibly insecure'
449
450 Don't panic.  Read INSTALL 'make test' section instead.
451
452 =head2 lib/io_multihomed Fails In LP64-Configured HP-UX
453
454 The lib/io_multihomed test may hang in HP-UX if Perl has been
455 configured to be 64-bit. Because other 64-bit platforms do not hang in
456 this test, HP-UX is suspect. All other tests pass in 64-bit HP-UX. The
457 test attempts to create and connect to "multihomed" sockets (sockets
458 which have multiple IP addresses).
459
460 =head2 Test lib/posix Subtest 9 Fails In LP64-Configured HP-UX
461
462 If perl is configured with -Duse64bitall, the successful result of the
463 subtest 10 of lib/posix may arrive before the successful result of the
464 subtest 9, which confuses the test harness so much that it thinks the
465 subtest 9 failed.
466
467 =head2 Linux With Sfio Fails op/misc Test 48
468
469 No known fix.
470
471 =head2 ext/POSIX/sigaction test 13 on VMS
472
473 The test is known to fail; whether it's because of VMS of because
474 of faulty test is not known.
475
476 =head2 op/sprintf tests 129 and 130
477
478 The op/sprintf tests 129 and 130 are known to fail on some platforms.
479 Examples include any platform using sfio, and Compaq/Tandem's NonStop-UX.
480 The failing platforms do not comply with the ANSI C Standard, line
481 19ff on page 134 of ANSI X3.159 1989 to be exact.  (They produce
482 something else than "1" and "-1" when formatting 0.6 and -0.6 using
483 the printf format "%.0f", most often they produce "0" and "-0".)
484
485 =head2  Failure of Thread tests
486
487 B<Note that support for 5.005-style threading remains experimental.>
488
489 The following tests are known to fail due to fundamental problems in
490 the 5.005 threading implementation. These are not new failures--Perl
491 5.005_0x has the same bugs, but didn't have these tests.
492
493   lib/autouse.t                 4
494   t/lib/thr5005.t               19-20
495
496 =head2 Numerous numerical test failures on UNICOS
497
498   op/numconvert                 209,210,217,218
499   ext/Time/HiRes/HiRes          9
500   lib/Math/BigInt/t/bigintpm    1145
501   lib/Math/Trig                 25
502
503 These tests fail because of yet unresolved floating point inaccuracies.
504
505 =head2 ext/IPC/SysV/t/sem test 8 on UNICOS/mk
506
507 No known fix.
508
509 =head2 Localising a Tied Variable Leaks Memory
510
511     use Tie::Hash;
512     tie my %tie_hash => 'Tie::StdHash';
513
514     ...
515
516     local($tie_hash{Foo}) = 1; # leaks
517
518 Code like the above is known to leak memory every time the local()
519 is executed.
520
521 =head2 Self-tying of Arrays and Hashes Is Forbidden
522
523 Self-tying of arrays and hashes is broken in rather deep and
524 hard-to-fix ways.  As a stop-gap measure to avoid people from getting
525 frustrated at the mysterious results (core dumps, most often) it is
526 for now forbidden (you will get a fatal error even from an attempt).
527
528 =head2 Variable Attributes are not Currently Usable for Tieing
529
530 This limitation will hopefully be fixed in future.  (Subroutine
531 attributes work fine for tieing, see L<Attribute::Handlers>).
532
533 =head2 Building Extensions Can Fail Because Of Largefiles
534
535 Some extensions like mod_perl are known to have issues with
536 `largefiles', a change brought by Perl 5.6.0 in which file offsets
537 default to 64 bits wide, where supported.  Modules may fail to compile
538 at all or compile and work incorrectly.  Currently there is no good
539 solution for the problem, but Configure now provides appropriate
540 non-largefile ccflags, ldflags, libswanted, and libs in the %Config
541 hash (e.g., $Config{ccflags_nolargefiles}) so the extensions that are
542 having problems can try configuring themselves without the
543 largefileness.  This is admittedly not a clean solution, and the
544 solution may not even work at all.  One potential failure is whether
545 one can (or, if one can, whether it's a good idea) link together at
546 all binaries with different ideas about file offsets, all this is
547 platform-dependent.
548
549 =head2 The Compiler Suite Is Still Experimental
550
551 The compiler suite is slowly getting better but is nowhere near
552 working order yet.
553
554 =head1 Reporting Bugs
555
556 If you find what you think is a bug, you might check the articles
557 recently posted to the comp.lang.perl.misc newsgroup and the perl
558 bug database at http://bugs.perl.org.  There may also be
559 information at http://www.perl.com/perl/, the Perl Home Page.
560
561 If you believe you have an unreported bug, please run the B<perlbug>
562 program included with your release.  Be sure to trim your bug down
563 to a tiny but sufficient test case.  Your bug report, along with the
564 output of C<perl -V>, will be sent off to perlbug@perl.org to be
565 analysed by the Perl porting team.
566
567 =head1 SEE ALSO
568
569 The F<Changes> file for exhaustive details on what changed.
570
571 The F<INSTALL> file for how to build Perl.
572
573 The F<README> file for general stuff.
574
575 The F<Artistic> and F<Copying> files for copyright information.
576
577 =head1 HISTORY
578
579 Written by Jarkko Hietaniemi <F<jhi@iki.fi>>, with many contributions
580 from The Perl Porters and Perl Users submitting feedback and patches.
581
582 Send omissions or corrections to <F<perlbug@perl.org>>.
583
584 =cut