perldelta updates.
[p5sagit/p5-mst-13.2.git] / pod / perldelta.pod
CommitLineData
ba370e9b 1=head1 NAME
cc0fca54 2
f39f21d8 3perldelta - what is new for perl v5.8.0
cc0fca54 4
5=head1 DESCRIPTION
6
44da0e71 7This document describes differences between the 5.6.0 release
8and the 5.8.0 release.
f39f21d8 9
44da0e71 10Many of the bug fixes in 5.8.0 were already seen in the 5.6.1
11maintenance release since the two releases were kept closely
12coordinated.
13
4f8e5944 14If you are upgrading from Perl 5.005_03, you might also want
15to read L<perl56delta>.
16
44da0e71 17=head1 Highlights In 5.8.0
76663d67 18
19=over 4
20
21=item *
22
23Better Unicode support
24
25=item *
26
27New Thread Implementation
28
29=item *
30
31Many New Modules
32
33=item *
34
35Better Numeric Accuracy
36
37=item *
38
39Safe Signals
40
41=item *
42
43More Extensive Regression Testing
44
45=back
46
f39f21d8 47=head1 Incompatible Changes
48
77c8cf41 49=head2 64-bit platforms and malloc
50
057b7f2b 51If your pointers are 64 bits wide, the Perl malloc is no longer being
c2e23569 52used because it does not work well with 8-byte pointers. Also,
61947107 53usually the system mallocs on such platforms are much better optimized
c2e23569 54for such large memory models than the Perl malloc. Some memory-hungry
55Perl applications like the PDL don't work well with Perl's malloc.
56Finally, other applications than Perl (like modperl) tend to prefer
57the system malloc. Such platforms include Alpha and 64-bit HPPA,
58MIPS, PPC, and Sparc.
77c8cf41 59
60=head2 AIX Dynaloading
61
62The AIX dynaloading now uses in AIX releases 4.3 and newer the native
63dlopen interface of AIX instead of the old emulated interface. This
64change will probably break backward compatibility with compiled
65modules. The change was made to make Perl more compliant with other
66applications like modperl which are using the AIX native interface.
67
95f0a2f1 68=head2 Attributes for C<my> variables now handled at run-time.
69
70The C<my EXPR : ATTRS> syntax now applies variable attributes at
71run-time. (Subroutine and C<our> variables still get attributes applied
72at compile-time.) See L<attributes> for additional details. In particular,
73however, this allows variable attributes to be useful for C<tie> interfaces,
c4f1ce08 74which was a deficiency of earlier releases. Note that the new semantics
75doesn't work with the Attribute::Handlers module (as of version 0.76).
95f0a2f1 76
77c8cf41 77=head2 Socket Extension Dynamic in VMS
78
79The Socket extension is now dynamically loaded instead of being
80statically built in. This may or may not be a problem with ancient
81TCP/IP stacks of VMS: we do not know since we weren't able to test
82Perl in such configurations.
83
00bb525a 84=head2 IEEE-format Floating Point Default on OpenVMS Alpha
85
86Perl now uses IEEE format (T_FLOAT) as the default internal floating
87point format on OpenVMS Alpha, potentially breaking binary compatibility
88with external libraries or existing data. G_FLOAT is still available as
89a configuration option. The default on VAX (D_FLOAT) has not changed.
90
eb0cc9e3 91=head2 New Unicode Properties
92
93Unicode I<scripts> are now supported. Scripts are similar to (and superior
94to) Unicode I<blocks>. The difference between scripts and blocks is that
95scripts are the glyphs used by a language or a group of languages, while
96the blocks are more artificial groupings of (mostly) 256 characters based
97on the Unicode numbering.
98
99In general, scripts are more inclusive, but not universally so. For
100example, while the script C<Latin> includes all the Latin characters and
101their various diacritic-adorned versions, it does not include the various
102punctuation or digits (since they are not solely C<Latin>).
103
104A number of other properties are now supported, including C<\p{L&}>,
105C<\p{Any}> C<\p{Assigned}>, C<\p{Unassigned}>, C<\p{Blank}> and
106C<\p{SpacePerl}> (along with their C<\P{...}> versions, of course).
107See L<perlunicode> for details, and more additions.
108
109The C<In> or C<Is> prefix to names used with the C<\p{...}> and C<\P{...}>
110are now almost always optional. The only exception is that a C<In> prefix
111is required to signify a Unicode block when a block name conflicts with a
112script name. For example, C<\p{Tibetan}> refers to the script, while
113C<\p{InTibetan}> refers to the block. When there is no name conflict, you
114can omit the C<In> from the block name (e.g. C<\p{BraillePatterns}>), but
115to be safe, it's probably best to always use the C<In>).
77c8cf41 116
61947107 117=head2 Perl Parser Stress Tested
118
119The Perl parser has been stress tested using both random input and
120Markov chain input and the few found crashes and lockups have been
121fixed.
122
c2e23569 123=head2 REF(...) Instead Of SCALAR(...)
77c8cf41 124
057b7f2b 125A reference to a reference now stringifies as "REF(0x81485ec)" instead
c2e23569 126of "SCALAR(0x81485ec)" in order to be more consistent with the return
127value of ref().
77c8cf41 128
79f69e33 129=head2 pack/unpack D/F recycled
130
131The undocumented pack/unpack template letters D/F have been recyled
132for better use: now they stand for long double (if supported by the
133platform) and NV (Perl internal floating point type). (They used
134to be aliases for f/d, but you never knew that.)
135
c2e23569 136=head2 Deprecations
77c8cf41 137
61947107 138=over 4
77c8cf41 139
61947107 140=item *
f39f21d8 141
61947107 142The semantics of bless(REF, REF) were unclear and until someone proves
143it to make some sense, it is forbidden.
f39f21d8 144
145=item *
146
c2e23569 147The obsolete chat2 library that should never have been allowed
148to escape the laboratory has been decommissioned.
f39f21d8 149
150=item *
151
58175c9b 152The builtin dump() function has probably outlived most of its
153usefulness. The core-dumping functionality will remain in future
154available as an explicit call to C<CORE::dump()>, but in future
155releases the behaviour of an unqualified C<dump()> call may change.
156
157=item *
158
61947107 159The very dusty examples in the eg/ directory have been removed.
160Suggestions for new shiny examples welcome but the main issue is that
161the examples need to be documented, tested and (most importantly)
162maintained.
f39f21d8 163
164=item *
165
c2e23569 166The (bogus) escape sequences \8 and \9 now give an optional warning
167("Unrecognized escape passed through"). There is no need to \-escape
168any C<\w> character.
f39f21d8 169
170=item *
171
c2e23569 172The list of filenames from glob() (or <...>) is now by default sorted
44da0e71 173alphabetically to be csh-compliant (which is what happened before
174in most UNIX platforms). (bsd_glob() does still sort platform
c2e23569 175natively, ASCII or EBCDIC, unless GLOB_ALPHASORT is specified.)
f39f21d8 176
177=item *
178
44da0e71 179Spurious syntax errors generated in certain situations, when glob()
180caused File::Glob to be loaded for the first time, have been fixed.
181
182=item *
183
c2e23569 184Although "you shouldn't do that", it was possible to write code that
185depends on Perl's hashed key order (Data::Dumper does this). The new
186algorithm "One-at-a-Time" produces a different hashed key order.
187More details are in L</"Performance Enhancements">.
f39f21d8 188
189=item *
190
61947107 191lstat(FILEHANDLE) now gives a warning because the operation makes no sense.
192In future releases this may become a fatal error.
f39f21d8 193
194=item *
195
057b7f2b 196The C<package;> syntax (C<package> without an argument) has been
c2e23569 197deprecated. Its semantics were never that clear and its
198implementation even less so. If you have used that feature to
199disallow all but fully qualified variables, C<use strict;> instead.
61947107 200
201=item *
202
c2e23569 203The unimplemented POSIX regex features [[.cc.]] and [[=c=]] are still
204recognised but now cause fatal errors. The previous behaviour of
205ignoring them by default and warning if requested was unacceptable
206since it, in a way, falsely promised that the features could be used.
61947107 207
208=item *
209
c2e23569 210The current user-visible implementation of pseudo-hashes (the weird
211use of the first array element) is deprecated starting from Perl 5.8.0
212and will be removed in Perl 5.10.0, and the feature will be
213implemented differently. Not only is the current interface rather
214ugly, but the current implementation slows down normal array and hash
215use quite noticeably. The C<fields> pragma interface will remain
216available.
61947107 217
218=item *
219
aecce728 220The syntaxes C<< @a->[...] >> and C<< %h->{...} >> have now been deprecated.
61947107 221
222=item *
223
c2e23569 224After years of trying the suidperl is considered to be too complex to
225ever be considered truly secure. The suidperl functionality is likely
226to be removed in a future release.
227
228=item *
229
230The long deprecated uppercase aliases for the string comparison
231operators (EQ, NE, LT, LE, GE, GT) have now been removed.
232
233=item *
234
235The tr///C and tr///U features have been removed and will not return;
236the interface was a mistake. Sorry about that. For similar
237functionality, see pack('U0', ...) and pack('C0', ...).
f39f21d8 238
420cdfc1 239=item *
240
241Earlier Perls treated "sub foo (@bar)" as equivalent to "sub foo (@)".
242The prototypes are now checked at compile-time for invalid characters.
243An optional warning is generated ("Illegal character in prototype...")
244but this may be upgraded to a fatal error in a future release.
245
f39f21d8 246=back
247
61947107 248=head1 Core Enhancements
249
77c8cf41 250=head2 PerlIO is Now The Default
f39f21d8 251
252=over 4
253
254=item *
255
77c8cf41 256IO is now by default done via PerlIO rather than system's "stdio".
257PerlIO allows "layers" to be "pushed" onto a file handle to alter the
258handle's behaviour. Layers can be specified at open time via 3-arg
259form of open:
f39f21d8 260
77c8cf41 261 open($fh,'>:crlf :utf8', $path) || ...
f39f21d8 262
77c8cf41 263or on already opened handles via extended C<binmode>:
f39f21d8 264
77c8cf41 265 binmode($fh,':encoding(iso-8859-7)');
f39f21d8 266
77c8cf41 267The built-in layers are: unix (low level read/write), stdio (as in
268previous Perls), perlio (re-implementation of stdio buffering in a
269portable manner), crlf (does CRLF <=> "\n" translation as on Win32,
270but available on any platform). A mmap layer may be available if
271platform supports it (mostly UNIXes).
f39f21d8 272
77c8cf41 273Layers to be applied by default may be specified via the 'open' pragma.
274
275See L</"Installation and Configuration Improvements"> for the effects
276of PerlIO on your architecture name.
f39f21d8 277
278=item *
279
77c8cf41 280File handles can be marked as accepting Perl's internal encoding of Unicode
281(UTF-8 or UTF-EBCDIC depending on platform) by a pseudo layer ":utf8" :
f39f21d8 282
77c8cf41 283 open($fh,">:utf8","Uni.txt");
f39f21d8 284
77c8cf41 285Note for EBCDIC users: the pseudo layer ":utf8" is erroneously named
286for you since it's not UTF-8 what you will be getting but instead
287UTF-EBCDIC. See L<perlunicode>, L<utf8>, and
288http://www.unicode.org/unicode/reports/tr16/ for more information.
289In future releases this naming may change.
f39f21d8 290
291=item *
292
77c8cf41 293File handles can translate character encodings from/to Perl's internal
294Unicode form on read/write via the ":encoding()" layer.
f39f21d8 295
296=item *
297
77c8cf41 298File handles can be opened to "in memory" files held in Perl scalars via:
299
300 open($fh,'>', \$variable) || ...
f39f21d8 301
302=item *
303
77c8cf41 304Anonymous temporary files are available without need to
305'use FileHandle' or other module via
f39f21d8 306
77c8cf41 307 open($fh,"+>", undef) || ...
f39f21d8 308
77c8cf41 309That is a literal undef, not an undefined value.
f39f21d8 310
311=item *
312
77c8cf41 313The list form of C<open> is now implemented for pipes (at least on UNIX):
f39f21d8 314
77c8cf41 315 open($fh,"-|", 'cat', '/etc/motd')
f39f21d8 316
77c8cf41 317creates a pipe, and runs the equivalent of exec('cat', '/etc/motd') in
318the child process.
f39f21d8 319
e1f170bd 320=back
f39f21d8 321
3e33716f 322=head2 Safe Signals
f39f21d8 323
e1f170bd 324Perl used to be fragile in that signals arriving at inopportune moments
325could corrupt Perl's internal state. Now Perl postpones handling of
3e33716f 326signals until it's safe (between opcodes).
327
56e5bb57 328This change may have surprising side effects because signals no longer
3e33716f 329interrupt Perl instantly. Perl will now first finish whatever it was
330doing, like finishing an internal operation (like sort()) or an
331external operation (like an I/O operation), and only then look at any
332arrived signals (and before starting the next operation). No more corrupt
333internal state since the current operation is always finished first,
334but the signal may take more time to get heard.
f39f21d8 335
e1f170bd 336=head2 Unicode Overhaul
f39f21d8 337
e1f170bd 338Unicode in general should be now much more usable than in Perl 5.6.0
339(or even in 5.6.1). Unicode can be used in hash keys, Unicode in
340regular expressions should work now, Unicode in tr/// should work now,
341Unicode in I/O should work now.
f39f21d8 342
e1f170bd 343=over 4
f39f21d8 344
345=item *
346
e1f170bd 347The Unicode Character Database coming with Perl has been upgraded
348to Unicode 3.1.1. For more information, see http://www.unicode.org/.
f39f21d8 349
350=item *
351
77c8cf41 352For developers interested in enhancing Perl's Unicode capabilities:
353almost all the UCD files are included with the Perl distribution in
58175c9b 354the F<lib/unicore subdirectory>. The most notable omission, for space
77c8cf41 355considerations, is the Unihan database.
f39f21d8 356
357=item *
358
eb0cc9e3 359The properties \p{Blank} and \p{SpacePerl} have been added. "Blank" is like
360C isblank(), that is, it contains only "horizontal whitespace" (the space
361character is, the newline isn't), and the "SpacePerl" is the Unicode
362equivalent of C<\s> (\p{Space} isn't, since that includes the vertical
363tabulator character, whereas C<\s> doesn't.)
364
365See "New Unicode Properties" earlier in this document for additional
366information on changes with Unicode properties.
f39f21d8 367
368=back
369
77c8cf41 370=head2 Understanding of Numbers
371
372In general a lot of fixing has happened in the area of Perl's
373understanding of numbers, both integer and floating point. Since in
374many systems the standard number parsing functions like C<strtoul()>
375and C<atof()> seem to have bugs, Perl tries to work around their
376deficiencies. This results hopefully in more accurate numbers.
f39f21d8 377
e1f170bd 378Perl now tries internally to use integer values in numeric conversions
379and basic arithmetics (+ - * /) if the arguments are integers, and
380tries also to keep the results stored internally as integers.
057b7f2b 381This change leads to often slightly faster and always less lossy
e1f170bd 382arithmetics. (Previously Perl always preferred floating point numbers
383in its math.)
384
58175c9b 385=head2 Miscellaneous Changes
e1f170bd 386
f39f21d8 387=over 4
388
389=item *
390
e1f170bd 391AUTOLOAD is now lvaluable, meaning that you can add the :lvalue attribute
392to AUTOLOAD subroutines and you can assign to the AUTOLOAD return value.
393
394=item *
395
61947107 396C<perl -d:Module=arg,arg,arg> now works (previously one couldn't pass
397in multiple arguments.)
f39f21d8 398
399=item *
400
58175c9b 401The builtin dump() now gives an optional warning
402C<Ambiguous call resolved as CORE::dump(), qualify as such or use &>
403meaning that by default C<dump(...)> is resolved as the builtin
404dump() which dumps core and aborts, not as (possibly) user-defined
405C<sub dump>. To call the latter, qualify the call as C<&dump(...)>.
406(The whole dump() feature is to considered deprecated, and possibly
407removed/changed in future releases.)
408
409=item *
410
411chomp() and chop() have been demoted back to I<not> being overrideable
412because they cannot really be overridden-- the problem is that their
413prototype cannot be expressed and therefore one really cannot write
414replacements to override these builtins.
415
416=item *
417
61947107 418END blocks are now run even if you exit/die in a BEGIN block.
419Internally, the execution of END blocks is now controlled by
420PL_exit_flags & PERL_EXIT_DESTRUCT_END. This enables the new
421behaviour for Perl embedders. This will default in 5.10. See
422L<perlembed>.
f39f21d8 423
424=item *
425
e1f170bd 426Formats now support zero-padded decimal fields.
f39f21d8 427
428=item *
429
77c8cf41 430Lvalue subroutines can now return C<undef> in list context.
44da0e71 431However, the lvalue subroutine feature still remains experimental.
f39f21d8 432
433=item *
434
58175c9b 435A lost warning "Can't declare ... dereference in my" has been
436restored (Perl had it earlier but it became lost in later releases.)
437
438=item *
439
61947107 440A new special regular expression variable has been introduced:
441C<$^N>, which contains the most-recently closed group (submatch).
f39f21d8 442
443=item *
444
61947107 445C<no Module;> now works even if there is no "sub unimport" in the Module.
f39f21d8 446
447=item *
448
61947107 449The numerical comparison operators return C<undef> if either operand
450is a NaN. Previously the behaviour was unspecified.
f39f21d8 451
452=item *
453
e1f170bd 454The following builtin functions are now overridable: each(), keys(),
455pop(), push(), shift(), splice(), unshift().
456
457=item *
458
a7bac030 459C<pack() / unpack()> now can group template letters with C<()> and then
460apply repetition/count modifiers on the groups.
461
462=item *
463
464C<pack() / unpack()> can now process the Perl internal numeric types:
465IVs, UVs, NVs-- and also long doubles, if supported by the platform.
79f69e33 466The template letters are C<j>, C<J>, C<F>, and C<D>.
a7bac030 467
468=item *
469
61947107 470C<pack('U0a*', ...)> can now be used to force a string to UTF8.
f39f21d8 471
472=item *
473
61947107 474my __PACKAGE__ $obj now works.
f39f21d8 475
476=item *
477
e1f170bd 478The printf() and sprintf() now support parameter reordering using the
479C<%\d+\$> and C<*\d+\$> syntaxes. For example
480
481 print "%2\$s %1\$s\n", "foo", "bar";
482
da6838c8 483will print "bar foo\n". This feature helps in writing
484internationalised software, and in general when the order
485of the parameters can vary.
f39f21d8 486
487=item *
488
e1f170bd 489prototype(\&) is now available.
61947107 490
491=item *
492
e1f170bd 493prototype(\[$@%&]) is now available to implicitly create references
494(useful for example if you want to emulate the tie() interface).
61947107 495
496=item *
497
58175c9b 498A new command-line option, C<-t> is available. It is the
499little brother of C<-T>: instead of dieing on taint violations,
500lexical warnings are given. B<This is only meant as a temporary
501debugging aid while securing the code of old legacy applications.
502This is not a substitute for -T.>
503
504=item *
505
4956848f 506In other taint news, the C<exec LIST> and C<system LIST> have now been
507considered too risky (think C<exec @ARGV>: it can start any program
508with any arguments), and now the said forms cause a warning.
509You should carefully launder the arguments to guarantee their
510validity. In future releases of Perl the forms will become fatal
511errors so consider starting laundering now.
512
513=item *
514
58175c9b 515If tr/// is just counting characters, it doesn't attempt to
516modify its target.
517
518=item *
519
44da0e71 520untie() will now call an UNTIE() hook if it exists. See L<perltie>
521for details.
61947107 522
523=item *
524
525L<utime> now supports C<utime undef, undef, @files> to change the
526file timestamps to the current time.
527
528=item *
529
e1f170bd 530The rules for allowing underscores (underbars) in numeric constants
531have been relaxed and simplified: now you can have an underscore
532simply B<between digits>.
f39f21d8 533
534=back
535
77c8cf41 536=head1 Modules and Pragmata
f39f21d8 537
1e13d81f 538=head2 New Modules and Pragmata
f39f21d8 539
540=over 4
541
542=item *
543
0e9b9e0c 544C<Attribute::Handlers> allows a class to define attribute handlers.
545
546 package MyPack;
547 use Attribute::Handlers;
548 sub Wolf :ATTR(SCALAR) { print "howl!\n" }
549
550 # later, in some package using or inheriting from MyPack...
551
552 my MyPack $Fluffy : Wolf; # the attribute handler Wolf will be called
553
554Both variables and routines can have attribute handlers. Handlers can
555be specific to type (SCALAR, ARRAY, HASH, or CODE), or specific to the
556exact compilation phase (BEGIN, CHECK, INIT, or END).
557
558=item *
559
61947107 560B<B::Concise> is a new compiler backend for walking the Perl syntax
561tree, printing concise info about ops, from Stephen McCamant. The
562output is highly customisable. See L<B::Concise>.
f39f21d8 563
564=item *
565
61947107 566C<Class::ISA> for reporting the search path for a class's ISA tree,
567by Sean Burke, has been added. See L<Class::ISA>.
f39f21d8 568
569=item *
570
61947107 571C<Cwd> has now a split personality: if possible, an XS extension is
572used, (this will hopefully be faster, more secure, and more robust)
573but if not possible, the familiar Perl implementation is used.
f39f21d8 574
575=item *
576
e1f170bd 577C<Devel::PPPort>, originally from Kenneth Albanowski and now
578maintained by Paul Marquess, has been added. It is primarily used
579by C<h2xs> to enhance portability of of XS modules between different
580versions of Perl.
1e13d81f 581
582=item *
583
61947107 584C<Digest>, frontend module for calculating digests (checksums), from
585Gisle Aas, has been added. See L<Digest>.
f39f21d8 586
587=item *
588
61947107 589C<Digest::MD5> for calculating MD5 digests (checksums) as defined in
590RFC 1321, from Gisle Aas, has been added. See L<Digest::MD5>.
f39f21d8 591
592 use Digest::MD5 'md5_hex';
593
594 $digest = md5_hex("Thirsty Camel");
595
596 print $digest, "\n"; # 01d19d9d2045e005c3f1b80e8b164de1
597
61947107 598NOTE: the C<MD5> backward compatibility module is deliberately not
e1f170bd 599included since its further use is discouraged.
f39f21d8 600
f39f21d8 601=item *
602
61947107 603C<Encode>, by Nick Ing-Simmons, provides a mechanism to translate
f39f21d8 604between different character encodings. Support for Unicode,
605ISO-8859-*, ASCII, CP*, KOI8-R, and three variants of EBCDIC are
606compiled in to the module. Several other encodings (like Japanese,
607Chinese, and MacIntosh encodings) are included and will be loaded at
61947107 608runtime. See L<Encode>.
f39f21d8 609
610Any encoding supported by Encode module is also available to the
611":encoding()" layer if PerlIO is used.
612
61947107 613=item *
614
615C<I18N::Langinfo> can be use to query locale information.
616See L<I18N::Langinfo>.
f39f21d8 617
618=item *
619
61947107 620C<I18N::LangTags> has functions for dealing with RFC3066-style
bea4d472 621language tags, by Sean Burke. See L<I18N::LangTags>.
61947107 622
623=item *
624
625C<ExtUtils::Constant> is a new tool for extension writers for
626generating XS code to import C header constants, by Nicholas Clark.
627See L<ExtUtils::Constant>.
628
629=item *
630
631C<Filter::Simple> is an easy-to-use frontend to Filter::Util::Call,
632from Damian Conway. See L<Filter::Simple>.
f39f21d8 633
634 # in MyFilter.pm:
635
636 package MyFilter;
637
638 use Filter::Simple sub {
639 while (my ($from, $to) = splice @_, 0, 2) {
640 s/$from/$to/g;
641 }
642 };
643
644 1;
645
646 # in user's code:
647
648 use MyFilter qr/red/ => 'green';
649
650 print "red\n"; # this code is filtered, will print "green\n"
651 print "bored\n"; # this code is filtered, will print "bogreen\n"
652
653 no MyFilter;
654
655 print "red\n"; # this code is not filtered, will print "red\n"
656
61947107 657=item *
658
659C<File::Temp> allows one to create temporary files and directories in
660an easy, portable, and secure way, by Tim Jenness. See L<File::Temp>.
661
662=item *
663
664C<Filter::Util::Call> provides you with the framework to write
665I<Source Filters> in Perl, from Paul Marquess. For most uses the
666frontend Filter::Simple is to be preferred. See L<Filter::Util::Call>.
667
668=item *
669
79f69e33 670C<if> is a new pragma for conditional inclusion of modules, from
671Ilya Zakharevich.
672
673=item *
674
61947107 675L<libnet> is a collection of perl5 modules related to network
676programming, from Graham Barr. See L<Net::FTP>, L<Net::NNTP>,
677L<Net::Ping>, L<Net::POP3>, L<Net::SMTP>, and L<Net::Time>.
678
679Perl installation leaves libnet unconfigured, use F<libnetcfg> to configure.
f39f21d8 680
681=item *
682
61947107 683C<List::Util> is a selection of general-utility list subroutines, like
bea4d472 684sum(), min(), first(), and shuffle(), by Graham Barr. See L<List::Util>.
f39f21d8 685
686=item *
687
61947107 688C<Locale::Constants>, C<Locale::Country>, C<Locale::Currency>, and
689C<Locale::Language>, from Neil Bowers, have been added. They provide the
690codes for various locale standards, such as "fr" for France, "usd" for
691US Dollar, and "jp" for Japanese.
f39f21d8 692
693 use Locale::Country;
694
695 $country = code2country('jp'); # $country gets 'Japan'
696 $code = country2code('Norway'); # $code gets 'no'
697
698See L<Locale::Constants>, L<Locale::Country>, L<Locale::Currency>,
61947107 699and L<Locale::Language>.
700
701=item *
702
703C<Locale::Maketext> is localization framework from Sean Burke. See
704L<Locale::Maketext>, and L<Locale::Maketext::TPJ13>. The latter is an
705article about software localization, originally published in The Perl
706Journal #13, republished here with kind permission.
707
708=item *
709
710C<Memoize> can make your functions faster by trading space for time,
711from Mark-Jason Dominus. See L<Memoize>.
f39f21d8 712
713=item *
714
61947107 715C<MIME::Base64> allows you to encode data in base64, from Gisle Aas,
716as defined in RFC 2045 - I<MIME (Multipurpose Internet Mail
717Extensions)>.
f39f21d8 718
719 use MIME::Base64;
720
721 $encoded = encode_base64('Aladdin:open sesame');
722 $decoded = decode_base64($encoded);
723
724 print $encoded, "\n"; # "QWxhZGRpbjpvcGVuIHNlc2FtZQ=="
725
61947107 726See L<MIME::Base64>.
f39f21d8 727
728=item *
729
61947107 730C<MIME::QuotedPrint> allows you to encode data in quoted-printable
731encoding, as defined in RFC 2045 - I<MIME (Multipurpose Internet Mail
732Extensions)>, from Gisle Aas.
f39f21d8 733
734 use MIME::QuotedPrint;
735
736 $encoded = encode_qp("Smiley in Unicode: \x{263a}");
737 $decoded = decode_qp($encoded);
738
739 print $encoded, "\n"; # "Smiley in Unicode: =263A"
740
741MIME::QuotedPrint has been enhanced to provide the basic methods
742necessary to use it with PerlIO::Via as in :
743
744 use MIME::QuotedPrint;
057b7f2b 745 open($fh,">Via(MIME::QuotedPrint)",$path);
f39f21d8 746
61947107 747See L<MIME::QuotedPrint>.
f39f21d8 748
749=item *
750
61947107 751C<NEXT> is pseudo-class for method redispatch, from Damian Conway.
752See L<NEXT>.
f39f21d8 753
754=item *
755
1e13d81f 756C<open> is a new pragma for setting the default I/O disciplines
757for open().
758
759=item *
760
61947107 761C<PerlIO::Scalar> provides the implementation of IO to "in memory"
762Perl scalars as discussed above, from Nick Ing-Simmons. It also
763serves as an example of a loadable PerlIO layer. Other future
764possibilities include PerlIO::Array and PerlIO::Code.
765See L<PerlIO::Scalar>.
766
767=item *
768
769C<PerlIO::Via> acts as a PerlIO layer and wraps PerlIO layer
770functionality provided by a class (typically implemented in perl
771code), from Nick Ing-Simmons.
f39f21d8 772
773 use MIME::QuotedPrint;
057b7f2b 774 open($fh,">Via(MIME::QuotedPrint)",$path);
f39f21d8 775
776This will automatically convert everything output to C<$fh>
61947107 777to Quoted-Printable. See L<PerlIO::Via>.
f39f21d8 778
779=item *
780
1e13d81f 781C<Pod::ParseLink>, by Russ Allbery, has been added,
95f0a2f1 782to parse LZ<><> links in pods as described in the new
1e13d81f 783perlpodspec.
784
785=item *
786
61947107 787C<Pod::Text::Overstrike>, by Joe Smith, has been added.
f39f21d8 788It converts POD data to formatted overstrike text.
61947107 789See L<Pod::Text::Overstrike>.
f39f21d8 790
791=item *
792
61947107 793C<Scalar::Util> is a selection of general-utility scalar subroutines,
794like blessed(), reftype(), and tainted(). See L<Scalar::Util>.
795
796=item *
797
1e13d81f 798C<sort> is a new pragma for controlling the behaviour of sort().
799
800=item *
801
61947107 802C<Storable> gives persistence to Perl data structures by allowing the
803storage and retrieval of Perl data to and from files in a fast and
804compact binary format, from Raphael Manfredi. See L<Storable>.
805
806=item *
807
808C<Switch>, from Damian Conway, has been added. Just by saying
f39f21d8 809
810 use Switch;
811
812you have C<switch> and C<case> available in Perl.
813
814 use Switch;
815
816 switch ($val) {
817
818 case 1 { print "number 1" }
819 case "a" { print "string a" }
820 case [1..10,42] { print "number in list" }
821 case (@array) { print "number in list" }
822 case /\w+/ { print "pattern" }
823 case qr/\w+/ { print "pattern" }
824 case (%hash) { print "entry in hash" }
825 case (\%hash) { print "entry in hash" }
826 case (\&sub) { print "arg to subroutine" }
827 else { print "previous case not true" }
828 }
829
61947107 830See L<Switch>.
831
832=item *
833
834C<Test::More> is yet another framework for writing test scripts,
835more extensive than Test::Simple, by Michael Schwern. See L<Test::More>.
836
837=item *
838
aecce728 839C<Test::Simple> has basic utilities for writing tests, by Michael
61947107 840Schwern. See L<Test::Simple>.
77c8cf41 841
842=item *
843
61947107 844C<Text::Balanced> has been added, for extracting delimited text
845sequences from strings, from Damian Conway.
77c8cf41 846
847 use Text::Balanced 'extract_delimited';
848
849 ($a, $b) = extract_delimited("'never say never', he never said", "'", '');
850
851$a will be "'never say never'", $b will be ', he never said'.
852
853In addition to extract_delimited() there are also extract_bracketed(),
854extract_quotelike(), extract_codeblock(), extract_variable(),
855extract_tagged(), extract_multiple(), gen_delimited_pat(), and
856gen_extract_tagged(). With these you can implement rather advanced
61947107 857parsing algorithms. See L<Text::Balanced>.
77c8cf41 858
859=item *
860
c2e23569 861C<threads> is an interface to interpreter threads, by Arthur Bergman.
61947107 862Interpreter threads (ithreads) is the new thread model introduced in
c2e23569 863Perl 5.6 but only available as an internal interface for extension
864writers (and for Win32 Perl for C<fork()> emulation). See L<threads>.
77c8cf41 865
866=item *
867
61947107 868C<threads::shared> allows data sharing for interpreter threads, from
869Arthur Bergman. In the ithreads model any data sharing between
870threads must be explicit, as opposed to the old 5.005 thread model
871where data sharing was implicit. See L<threads::shared>.
77c8cf41 872
873=item *
874
79f69e33 875C<Tie::Memoize>, by Ilya Zakharevich, provides on-demand loaded hashes.
876
877=item *
878
61947107 879C<Tie::RefHash::Nestable>, by Edward Avis, allows storing hash
ba370e9b 880references (unlike the standard Tie::RefHash) The module is contained
881within Tie::RefHash, see L<Tie::RefHash>.
77c8cf41 882
883=item *
884
61947107 885C<Time::HiRes> provides high resolution timing (ualarm, usleep,
886and gettimeofday), from Douglas E. Wegscheid. See L<Time::HiRes>.
77c8cf41 887
888=item *
889
61947107 890C<Unicode::UCD> offers a querying interface to the Unicode Character
891Database. See L<Unicode::UCD>.
77c8cf41 892
893=item *
894
61947107 895C<Unicode::Collate> implements the UCA (Unicode Collation Algorithm)
896for sorting Unicode strings, by SADAHIRO Tomoyuki. See L<Unicode::Collate>.
77c8cf41 897
898=item *
899
61947107 900C<Unicode::Normalize> implements the various Unicode normalization
901forms, by SADAHIRO Tomoyuki. See L<Unicode::Normalize>.
77c8cf41 902
903=item *
904
61947107 905C<XS::Typemap>, by Tim Jenness, is a test extension that exercises XS
906typemaps. Nothing gets installed but for extension writers the code
907is worth studying.
77c8cf41 908
909=back
910
911=head2 Updated And Improved Modules and Pragmata
912
913=over 4
914
915=item *
916
61947107 917The following independently supported modules have been updated to the
918newest versions from CPAN: CGI, CPAN, DB_File, File::Spec, File::Temp,
919Getopt::Long, Math::BigFloat, Math::BigInt, the podlators bundle
920(Pod::Man, Pod::Text), Pod::LaTeX, Pod::Parser, Storable,
921Term::ANSIColor, Test, Text-Tabs+Wrap.
77c8cf41 922
923=item *
924
61947107 925The attributes::reftype() now works on tied arguments.
77c8cf41 926
927=item *
928
057b7f2b 929AutoLoader can now be disabled with C<no AutoLoader;>.
77c8cf41 930
931=item *
932
1e13d81f 933B::Deparse has been significantly enhanced. It now can deparse almost
934all of the standard test suite (so that the tests still succeed).
935There is a make target "test.deparse" for trying this out.
77c8cf41 936
937=item *
938
1e13d81f 939Class::Struct can now define the classes in compile time.
77c8cf41 940
941=item *
942
1e13d81f 943Class::Struct now assigns the array/hash element if the accessor
944is called with an array/hash element as the B<sole> argument.
77c8cf41 945
946=item *
947
1e13d81f 948Data::Dumper has now an option to sort hashes.
77c8cf41 949
950=item *
951
1e13d81f 952Data::Dumper has now an option to dump code references
953using B::Deparse.
77c8cf41 954
955=item *
956
44da0e71 957DB_File now supports newer Berkeley DB versions, among
958other improvements.
959
960=item *
961
1e13d81f 962The English module can now be used without the infamous performance
963hit by saying
77c8cf41 964
1e13d81f 965 use English '-no_performance_hit';
77c8cf41 966
1e13d81f 967(Assuming, of course, that one doesn't need the troublesome variables
968C<$`>, C<$&>, or C<$'>.) Also, introduced C<@LAST_MATCH_START> and
969C<@LAST_MATCH_END> English aliases for C<@-> and C<@+>.
77c8cf41 970
971=item *
972
1e13d81f 973Fcntl, Socket, and Sys::Syslog have been rewritten to use the
974new-style constant dispatch section (see L<ExtUtils::Constant>).
975This means that they will be more robust and hopefully faster.
77c8cf41 976
977=item *
978
44da0e71 979File::Find now chdir()s correctly when chasing symbolic links.
980
981=item *
982
1e13d81f 983File::Find now has pre- and post-processing callbacks. It also
984correctly changes directories when chasing symbolic links. Callbacks
985(naughtily) exiting with "next;" instead of "return;" now work.
61947107 986
987=item *
988
1e13d81f 989File::Find is now (again) reentrant. It also has been made
990more portable.
77c8cf41 991
61947107 992=item *
993
1e13d81f 994File::Glob::glob() renamed to File::Glob::bsd_glob() to avoid
995prototype mismatch with CORE::glob().
61947107 996
997=item *
998
999File::Glob now supports C<GLOB_LIMIT> constant to limit the size of
1000the returned list of filenames.
77c8cf41 1001
1002=item *
1003
1004Devel::Peek now has an interface for the Perl memory statistics
1005(this works only if you are using perl's malloc, and if you have
1006compiled with debugging).
1007
1008=item *
1009
1e13d81f 1010IPC::Open3 now allows the use of numeric file descriptors.
1011
1012=item *
1013
77c8cf41 1014IO::Socket has now atmark() method, which returns true if the socket
1015is positioned at the out-of-band mark. The method is also exportable
1016as a sockatmark() function.
1017
1018=item *
1019
1020IO::Socket::INET has support for ReusePort option (if your platform
1021supports it). The Reuse option now has an alias, ReuseAddr. For clarity
1022you may want to prefer ReuseAddr.
1023
1024=item *
1025
61947107 1026IO::Socket::INET now supports C<LocalPort> of zero (usually meaning
1027that the operating system will make one up.)
77c8cf41 1028
1029=item *
1030
1e13d81f 1031use lib now works identically to @INC. Removing directories
1032with 'no lib' now works.
1033
1034=item *
1035
58175c9b 1036ExtUtils::MakeMaker now uses File::Spec internally, which hopefully
1037leads into better portability.
1038
1039=item *
1040
1e13d81f 1041Math::BigFloat and Math::BigInt have undergone a full rewrite.
1042They are now magnitudes faster, and they support various
61947107 1043bignum libraries such as GMP and PARI as their backends.
f39f21d8 1044
1045=item *
1046
44da0e71 1047Math::Complex handles inf, NaN etc., better.
1048
1049=item *
1050
58175c9b 1051Net::Ping has been muchly enhanced. Multihoming is now supported.
1052There is now "external" protocol which uses Net::Ping::External module
1053which runs external ping(1) and parses the output. A version of
1054Net::Ping::External is available in CPAN.
f39f21d8 1055
77c8cf41 1056=item *
f39f21d8 1057
da6838c8 1058POSIX::sigaction() is now much more flexible and robust.
61947107 1059You can now install coderef handlers, 'DEFAULT', and 'IGNORE'
1060handlers, installing new handlers was not atomic.
f39f21d8 1061
1062=item *
1063
da6838c8 1064In Safe the C<%INC> now localised in a Safe compartment so that
76663d67 1065use/require work.
1066
1067=item *
1068
44da0e71 1069In SDBM_File on dosish platforms, some keys went missing because of
1070lack of support for files with "holes". A workaround for the problem
1071has been added.
1072
1073=item *
1074
da6838c8 1075In Search::Dict one can now have a pre-processing hook for the
76663d67 1076lines being searched.
1e13d81f 1077
1078=item *
1079
1080The Shell module now has an OO interface.
1081
1082=item *
1083
61947107 1084The Test module has been significantly enhanced.
f39f21d8 1085
1086=item *
1087
da6838c8 1088The vars pragma now supports declaring fully qualified variables.
77c8cf41 1089(Something that C<our()> does not and will not support.)
f39f21d8 1090
888aee59 1091=item *
1092
58175c9b 1093The C<utf8::> name space (as in the pragma) provides various
61947107 1094Perl-callable functions to provide low level access to Perl's
1095internal Unicode representation. At the moment only length()
1096has been implemented.
888aee59 1097
f39f21d8 1098=back
1099
77c8cf41 1100=head1 Utility Changes
f39f21d8 1101
1102=over 4
1103
1104=item *
1105
61947107 1106Emacs perl mode (emacs/cperl-mode.el) has been updated to version
77c8cf41 11074.31.
f39f21d8 1108
1109=item *
1110
61947107 1111F<emacs/e2ctags.pl> is now much faster.
f39f21d8 1112
1113=item *
1114
1e13d81f 1115C<h2ph> now supports C trigraphs.
1116
1117=item *
1118
1119C<h2xs> now produces a template README.
f39f21d8 1120
77c8cf41 1121=item *
1122
1e13d81f 1123C<h2xs> now uses C<Devel::PPort> for better portability between
1124different versions of Perl.
f39f21d8 1125
1126=item *
1127
1e13d81f 1128C<h2xs> uses the new L<ExtUtils::Constant> module which will affect
61947107 1129newly created extensions that define constants. Since the new code is
1130more correct (if you have two constants where the first one is a
1131prefix of the second one, the first constant B<never> gets defined),
1132less lossy (it uses integers for integer constant, as opposed to the
1133old code that used floating point numbers even for integer constants),
1134and slightly faster, you might want to consider regenerating your
1135extension code (the new scheme makes regenerating easy).
1136L<h2xs> now also supports C trigraphs.
f39f21d8 1137
1138=item *
1139
1e13d81f 1140C<libnetcfg> has been added to configure the libnet.
f39f21d8 1141
1142=item *
1143
1e13d81f 1144C<perlbug> is now much more robust. It also sends the bug report to
61947107 1145perl.org, not perl.com.
f39f21d8 1146
1147=item *
1148
1e13d81f 1149C<perlcc> has been rewritten and its user interface (that is,
61947107 1150command line) is much more like that of the UNIX C compiler, cc.
44da0e71 1151(The perlbc tools has been removed. Use C<perlcc -B> instead.)
f39f21d8 1152
1153=item *
1154
aecce728 1155C<perlivp> is a new Installation Verification Procedure utility
1156for running any time after installing Perl.
f39f21d8 1157
1158=item *
1159
1e13d81f 1160C<pod2html> now allows specifying a cache directory.
f39f21d8 1161
1162=item *
1163
1e13d81f 1164C<s2p> has been completely rewritten in Perl. (It is in fact a full
1165implementation of sed in Perl: you can use the sed functionality by
1166using the C<psed> utility.)
61947107 1167
1168=item *
1169
1e13d81f 1170C<xsubpp> now understands POD documentation embedded in the *.xs files.
f39f21d8 1171
1172=item *
1173
1e13d81f 1174C<xsubpp> now supports OUT keyword.
f39f21d8 1175
1176=back
1177
77c8cf41 1178=head1 New Documentation
f39f21d8 1179
1180=over 4
1181
1182=item *
1183
77c8cf41 1184perl56delta details the changes between the 5.005 release and the
11855.6.0 release.
f39f21d8 1186
1187=item *
1188
61947107 1189perlclib documents the internal replacements for standard C library
1190functions. (Interesting only for extension writers and Perl core
1191hackers.)
1192
1193=item *
1194
77c8cf41 1195perldebtut is a Perl debugging tutorial.
f39f21d8 1196
77c8cf41 1197=item *
f39f21d8 1198
77c8cf41 1199perlebcdic contains considerations for running Perl on EBCDIC platforms.
f39f21d8 1200
77c8cf41 1201=item *
1202
888aee59 1203perlintro is a gentle introduction to Perl.
1204
1205=item *
1206
61947107 1207perliol documents the internals of PerlIO with layers.
1208
1209=item *
1210
888aee59 1211perlmodstyle is a style guide for writing modules.
1212
1213=item *
1214
77c8cf41 1215perlnewmod tells about writing and submitting a new module.
f39f21d8 1216
1217=item *
1218
34babc16 1219perlpacktut is a pack() tutorial.
1220
1221=item *
1222
888aee59 1223perlpod has been rewritten to be clearer and to record the best
1224practices gathered over the years.
1225
1226=item *
1227
057b7f2b 1228perlpodspec is a more formal specification of the pod format,
888aee59 1229mainly of interest for writers of pod applications, not to
1230people writing in pod.
1231
1232=item *
1233
77c8cf41 1234perlretut is a regular expression tutorial.
f39f21d8 1235
1236=item *
1237
77c8cf41 1238perlrequick is a regular expressions quick-start guide.
1239Yes, much quicker than perlretut.
f39f21d8 1240
77c8cf41 1241=item *
f39f21d8 1242
61947107 1243perltodo has been updated.
1244
1245=item *
1246
888aee59 1247perltootc has been renamed as perltooc (to not to conflict
61947107 1248with perltoot in filesystems restricted to "8.3" names)
888aee59 1249
1250=item *
1251
58175c9b 1252perluniintro is an introduction to using Unicode in Perl.
1253(perlunicode is more of a detailed reference and background
1254information)
888aee59 1255
1256=item *
1257
77c8cf41 1258perlutil explains the command line utilities packaged with the Perl
1259distribution.
1260
1261=back
f39f21d8 1262
61947107 1263The following platform-specific documents are available before
1264the installation as README.I<platform>, and after the installation
1265as perlI<platform>:
f39f21d8 1266
61947107 1267 perlaix perlamiga perlapollo perlbeos perlbs2000
1268 perlce perlcygwin perldgux perldos perlepoc perlhpux
1269 perlhurd perlmachten perlmacos perlmint perlmpeix
1270 perlnetware perlos2 perlos390 perlplan9 perlqnx perlsolaris
1271 perltru64 perluts perlvmesa perlvms perlvos perlwin32
77c8cf41 1272
1273=over 4
1274
1275=item *
1276
61947107 1277The documentation for the POSIX-BC platform is called "BS2000", to avoid
1278confusion with the Perl POSIX module.
77c8cf41 1279
1280=item *
1281
61947107 1282The documentation for the WinCE platform is called "CE", to avoid
1283confusion with the perlwin32 documentation on 8.3-restricted filesystems.
77c8cf41 1284
1285=back
1286
1287=head1 Performance Enhancements
1288
1289=over 4
1290
1291=item *
1292
44da0e71 1293map() could get pathologically slow when the result list it generates
1294is larger than the source list. The performance has been improved for
1295common scenarios.
77c8cf41 1296
1297=item *
1298
e1f170bd 1299sort() has been changed to use primarily mergesort internally as
1300opposed to the earlier quicksort. For very small lists this may
1301result in slightly slower sorting times, but in general the speedup
1302should be at least 20%. Additional bonuses are that the worst case
1303behaviour of sort() is now better (in computer science terms it now
1304runs in time O(N log N), as opposed to quicksort's Theta(N**2)
1305worst-case run time behaviour), and that sort() is now stable
1306(meaning that elements with identical keys will stay ordered as they
1307were before the sort). See the C<sort> pragma for information.
77c8cf41 1308
05e25c75 1309The story in more detail: suppose you want to serve yourself a little
1310slice of Pi.
1311
1312 @digits = ( 3,1,4,1,5,9 );
1313
1314A numerical sort of the digits will yield (1,1,3,4,5,9), as expected.
1315Which C<1> comes first is hard to know, since one C<1> looks pretty
1316much like any other. You can regard this as totally trivial,
1317or somewhat profound. However, if you just want to sort the even
1318digits ahead of the odd ones, then what will
1319
1320 sort { ($a % 2) <=> ($b % 2) } @digits;
1321
1322yield? The only even digit, C<4>, will come first. But how about
1323the odd numbers, which all compare equal? With the quicksort algorithm
1324used to implement Perl 5.6 and earlier, the order of ties is left up
1325to the sort. So, as you add more and more digits of Pi, the order
1326in which the sorted even and odd digits appear will change.
1327and, for sufficiently large slices of Pi, the quicksort algorithm
1328in Perl 5.8 won't return the same results even if reinvoked with the
1329same input. The justification for this rests with quicksort's
1330worst case behavior. If you run
1331
1332 sort { $a <=> $b } ( 1 .. $N , 1 .. $N );
1333
1334(something you might approximate if you wanted to merge two sorted
1335arrays using sort), doubling $N doesn't just double the quicksort time,
1336it I<quadruples> it. Quicksort has a worst case run time that can
1337grow like N**2, so-called I<quadratic> behaviour, and it can happen
1338on patterns that may well arise in normal use. You won't notice this
1339for small arrays, but you I<will> notice it with larger arrays,
1340and you may not live long enough for the sort to complete on arrays
1341of a million elements. So the 5.8 quicksort scrambles large arrays
1342before sorting them, as a statistical defence against quadratic behaviour.
1343But that means if you sort the same large array twice, ties may be
1344broken in different ways.
1345
1346Because of the unpredictability of tie-breaking order, and the quadratic
1347worst-case behaviour, quicksort was I<almost> replaced completely with
1348a stable mergesort. I<Stable> means that ties are broken to preserve
1349the original order of appearance in the input array. So
1350
1351 sort { ($a % 2) <=> ($b % 2) } (3,1,4,1,5,9);
1352
1353will yield (4,3,1,1,5,9), guaranteed. The even and odd numbers
1354appear in the output in the same order they appeared in the input.
1355Mergesort has worst case O(NlogN) behaviour, the best value
1356attainable. And, ironically, this mergesort does particularly
1357well where quicksort goes quadratic: mergesort sorts (1..$N, 1..$N)
1358in O(N) time. But quicksort was rescued at the last moment because
1359it is faster than mergesort on certain inputs and platforms.
1360For example, if you really I<don't> care about the order of even
1361and odd digits, quicksort will run in O(N) time; it's very good
1362at sorting many repetitions of a small number of distinct elements.
1363The quicksort divide and conquer strategy works well on platforms
1364with relatively small, very fast, caches. Eventually, the problem gets
1365whittled down to one that fits in the cache, from which point it
1366benefits from the increased memory speed.
1367
1368Quicksort was rescued by implementing a sort pragma to control aspects
1369of the sort. The B<stable> subpragma forces stable behaviour,
1370regardless of algorithm. The B<_quicksort> and B<_mergesort>
1371subpragmas are heavy-handed ways to select the underlying implementation.
1372The leading C<_> is a reminder that these subpragmas may not survive
1373beyond 5.8. More appropriate mechanisms for selecting the implementation
1374exist, but they wouldn't have arrived in time to save quicksort.
1375
77c8cf41 1376=item *
1377
1378Hashes now use Bob Jenkins "One-at-a-Time" hashing key algorithm
1379(http://burtleburtle.net/bob/hash/doobs.html). This algorithm is
1380reasonably fast while producing a much better spread of values than
1381the old hashing algorithm (originally by Chris Torek, later tweaked by
1382Ilya Zakharevich). Hash values output from the algorithm on a hash of
1383all 3-char printable ASCII keys comes much closer to passing the
1384DIEHARD random number generation tests. According to perlbench, this
1385change has not affected the overall speed of Perl.
1386
1387=item *
1388
1389unshift() should now be noticeably faster.
1390
1391=back
1392
1393=head1 Installation and Configuration Improvements
1394
1395=head2 Generic Improvements
1396
1397=over 4
1398
1399=item *
1400
1401INSTALL now explains how you can configure Perl to use 64-bit
1402integers even on non-64-bit platforms.
1403
1404=item *
1405
1406Policy.sh policy change: if you are reusing a Policy.sh file
1407(see INSTALL) and you use Configure -Dprefix=/foo/bar and in the old
1408Policy $prefix eq $siteprefix and $prefix eq $vendorprefix, all of
1409them will now be changed to the new prefix, /foo/bar. (Previously
1410only $prefix changed.) If you do not like this new behaviour,
1411specify prefix, siteprefix, and vendorprefix explicitly.
1412
1413=item *
1414
1415A new optional location for Perl libraries, otherlibdirs, is available.
1416It can be used for example for vendor add-ons without disturbing Perl's
1417own library directories.
1418
1419=item *
1420
1421In many platforms the vendor-supplied 'cc' is too stripped-down to
1422build Perl (basically, 'cc' doesn't do ANSI C). If this seems
1423to be the case and 'cc' does not seem to be the GNU C compiler
1424'gcc', an automatic attempt is made to find and use 'gcc' instead.
1425
1426=item *
1427
1428gcc needs to closely track the operating system release to avoid
1429build problems. If Configure finds that gcc was built for a different
1430operating system release than is running, it now gives a clearly visible
1431warning that there may be trouble ahead.
1432
1433=item *
1434
1435If binary compatibility with the 5.005 release is not wanted, Configure
1436no longer suggests including the 5.005 modules in @INC.
1437
1438=item *
1439
1440Configure C<-S> can now run non-interactively.
1441
1442=item *
1443
44da0e71 1444Configure support for pdp11-style memory models has been removed due
1445to obsolescence.
1446
1447=item *
1448
77c8cf41 1449configure.gnu now works with options with whitespace in them.
f39f21d8 1450
77c8cf41 1451=item *
f39f21d8 1452
77c8cf41 1453installperl now outputs everything to STDERR.
f39f21d8 1454
77c8cf41 1455=item *
1456
1457$Config{byteorder} is now computed dynamically (this is more robust
1458with "fat binaries" where an executable image contains binaries for
1459more than one binary platform.)
f39f21d8 1460
1461=item *
1462
1463Because PerlIO is now the default on most platforms, "-perlio" doesn't
1464get appended to the $Config{archname} (also known as $^O) anymore.
1465Instead, if you explicitly choose not to use perlio (Configure command
1466line option -Uuseperlio), you will get "-stdio" appended.
1467
1468=item *
1469
1470Another change related to the architecture name is that "-64all"
1471(-Duse64bitall, or "maximally 64-bit") is appended only if your
1472pointers are 64 bits wide. (To be exact, the use64bitall is ignored.)
1473
1474=item *
1475
77c8cf41 1476In AFS installations one can configure the root of the AFS to be
1477somewhere else than the default F</afs> by using the Configure
1478parameter C<-Dafsroot=/some/where/else>.
1479
1480=item *
1481
61947107 1482APPLLIB_EXP, a less-know configuration-time definition, has been
1483documented. It can be used to prepend site-specific directories
1484to Perl's default search path (@INC), see INSTALL for information.
1485
1486=item *
1487
77c8cf41 1488The version of Berkeley DB used when the Perl (and, presumably, the
1489DB_File extension) was built is now available as
1490C<@Config{qw(db_version_major db_version_minor db_version_patch)}>
1491from Perl and as C<DB_VERSION_MAJOR_CFG DB_VERSION_MINOR_CFG
1492DB_VERSION_PATCH_CFG> from C.
1493
1494=item *
1495
61947107 1496Building Berkeley DB3 for compatibility modes for DB, NDBM, and ODBM
1497has been documented in INSTALL.
77c8cf41 1498
1499=item *
1500
61947107 1501If you have CPAN access (either network or a local copy such as a
1502CD-ROM) you can during specify extra modules to Configure to build and
1503install with Perl using the -Dextras=... option. See INSTALL for
1504more details.
f39f21d8 1505
61947107 1506=item *
f39f21d8 1507
61947107 1508In addition to config.over a new override file, config.arch, is
1509available. That is supposed to be used by hints file writers for
1510architecture-wide changes (as opposed to config.over which is for
1511site-wide changes).
f39f21d8 1512
1513=item *
1514
e1f170bd 1515If your file system supports symbolic links you can build Perl outside
1516of the source directory by
1517
1518 mkdir /tmp/perl/build/directory
1519 cd /tmp/perl/build/directory
1520 sh /path/to/perl/source/Configure -Dmksymlinks ...
1521
1522This will create in /tmp/perl/build/directory a tree of symbolic links
1523pointing to files in /path/to/perl/source. The original files are left
1524unaffected. After Configure has finished you can just say
1525
1526 make all test
1527
1528and Perl will be built and tested, all in /tmp/perl/build/directory.
1529
1530=item *
1531
61947107 1532For Perl developers several new make targets for profiling
1533and debugging have been added, see L<perlhack>.
1534
1535=over 8
f39f21d8 1536
1537=item *
1538
61947107 1539Use of the F<gprof> tool to profile Perl has been documented in
1540L<perlhack>. There is a make target called "perl.gprof" for
1541generating a gprofiled Perl executable.
f39f21d8 1542
1543=item *
1544
61947107 1545If you have GCC 3, there is a make target called "perl.gcov" for
1546creating a gcoved Perl executable for coverage analysis. See
1547L<perlhack>.
f39f21d8 1548
1549=item *
1550
61947107 1551If you are on IRIX or Tru64 platforms, new profiling/debugging options
1552have been added, see L<perlhack> for more information about pixie and
1553Third Degree.
1554
1555=back
f39f21d8 1556
1557=item *
1558
61947107 1559Guidelines of how to construct minimal Perl installations have
1560been added to INSTALL.
f39f21d8 1561
1562=item *
1563
61947107 1564The Thread extension is now not built at all under ithreads
1565(C<Configure -Duseithreads>) because it wouldn't work anyway (the
1566Thread extension requires being Configured with C<-Duse5005threads>).
f39f21d8 1567
61947107 1568But note that the Thread.pm interface is now shared by both
1569thread models.
f39f21d8 1570
61947107 1571=back
f39f21d8 1572
61947107 1573=head2 New Or Improved Platforms
f39f21d8 1574
61947107 1575For the list of platforms known to support Perl,
1576see L<perlport/"Supported Platforms">.
1577
1578=over 4
f39f21d8 1579
1580=item *
1581
61947107 1582AIX dynamic loading should be now better supported.
f39f21d8 1583
f39f21d8 1584=item *
1585
77c8cf41 1586AIX should now work better with gcc, threads, and 64-bitness. Also the
1587long doubles support in AIX should be better now. See L<perlaix>.
f39f21d8 1588
1589=item *
1590
61947107 1591After a long pause, AmigaOS has been verified to be happy with Perl.
1592
1593=item *
1594
77c8cf41 1595AtheOS (http://www.atheos.cx/) is a new platform.
f39f21d8 1596
77c8cf41 1597=item *
f39f21d8 1598
58175c9b 1599BeOS has been reclaimed.
1600
1601=item *
1602
77c8cf41 1603DG/UX platform now supports the 5.005-style threads. See L<perldgux>.
f39f21d8 1604
1605=item *
1606
77c8cf41 1607DYNIX/ptx platform (a.k.a. dynixptx) is supported at or near osvers 4.5.2.
f39f21d8 1608
1609=item *
1610
61947107 1611EBCDIC platforms (z/OS, also known as OS/390, POSIX-BC, and VM/ESA)
1612have been regained. Many test suite tests still fail and the
1613co-existence of Unicode and EBCDIC isn't quite settled, but the
1614situation is much better than with Perl 5.6. See L<perlos390>,
1615L<perlbs2000> (for POSIX-BC), and L<perlvmesa> for more information.
f39f21d8 1616
1617=item *
1618
61947107 1619Building perl with -Duseithreads or -Duse5005threads now works under
1620HP-UX 10.20 (previously it only worked under 10.30 or later). You will
1621need a thread library package installed. See README.hpux.
f39f21d8 1622
77c8cf41 1623=item *
f39f21d8 1624
61947107 1625MacOS Classic (MacPerl has of course been available since
1626perl 5.004 but now the source code bases of standard Perl
1627and MacPerl have been synchronised)
f39f21d8 1628
77c8cf41 1629=item *
f39f21d8 1630
61947107 1631MacOS X (or Darwin) should now be able to build Perl even on HFS+
1632filesystems. (The case-insensitivity confused the Perl build process.)
f39f21d8 1633
888aee59 1634=item *
1635
61947107 1636NCR MP-RAS is now supported.
888aee59 1637
1638=item *
1639
58175c9b 1640All the NetBSD specific patches (except for the installation
1641specific ones) have been merged back to the main distribution.
1642
1643=item *
1644
61947107 1645NetWare from Novell is now supported. See L<perlnetware>.
888aee59 1646
1647=item *
1648
61947107 1649NonStop-UX is now supported.
888aee59 1650
1651=item *
1652
44da0e71 1653NEC SUPER-UX is now supported.
1654
1655=item *
1656
58175c9b 1657All the OpenBSD specific patches (except for the installation
1658specific ones) have been merged back to the main distribution.
1659
1660=item *
1661
1662Perl has been tested with the GNU pth userlevel thread package
1663( http://www.gnu.org/software/pth/pth.html ) . All but one thread
1664test worked, and that one failure was because of test results arriving
1665in unexpected order.
1666
1667=item *
1668
61947107 1669Amdahl UTS UNIX mainframe platform is now supported.
888aee59 1670
1671=item *
1672
61947107 1673WinCE is now supported. See L<perlce>.
1674
1675=item *
1676
1677z/OS (formerly known as OS/390, formerly known as MVS OE) has now
1678support for dynamic loading. This is not selected by default,
1679however, you must specify -Dusedl in the arguments of Configure.
888aee59 1680
f39f21d8 1681=back
1682
1683=head1 Selected Bug Fixes
1684
e1f170bd 1685Numerous memory leaks and uninitialized memory accesses have been
1686hunted down. Most importantly anonymous subs used to leak quite
1687a bit.
ba370e9b 1688
f39f21d8 1689=over 4
1690
1691=item *
1692
e1f170bd 1693The autouse pragma didn't work for Multi::Part::Function::Names.
f39f21d8 1694
1695=item *
1696
44da0e71 1697caller() could cause core dumps in certain situations. Carp was sometimes
1698affected by this problem.
1699
1700=item *
1701
e1f170bd 1702chop(@list) in list context returned the characters chopped in
1703reverse order. This has been reversed to be in the right order.
f39f21d8 1704
1705=item *
1706
e1f170bd 1707Configure no longer includes the DBM libraries (dbm, gdbm, db, ndbm)
1708when building the Perl binary. The only exception to this is SunOS 4.x,
1709which needs them.
f39f21d8 1710
1711=item *
1712
e1f170bd 1713The behaviour of non-decimal but numeric string constants such as
1714"0x23" was platform-dependent: in some platforms that was seen as 35,
1715in some as 0, in some as a floating point number (don't ask). This
1716was caused by Perl using the operating system libraries in a situation
1717where the result of the string to number conversion is undefined: now
1718Perl consistently handles such strings as zero in numeric contexts.
f39f21d8 1719
1720=item *
1721
e1f170bd 1722The order of DESTROYs has been made more predictable.
f39f21d8 1723
1724=item *
1725
e1f170bd 1726Several debugger fixes: exit code now reflects the script exit code,
1727condition C<"0"> now treated correctly, the C<d> command now checks
44da0e71 1728line number, the C<$.> no longer gets corrupted, all debugger output
1729now goes correctly to the socket if RemotePort is set.
1730
1731=item *
1732
1733Perl 5.6.0 could emit spurious warnings about redefinition of dl_error()
1734when statically building extensions into perl. This has been corrected.
f39f21d8 1735
1736=item *
1737
e1f170bd 1738L<dprofpp> -R didn't work.
f39f21d8 1739
1740=item *
1741
e1f170bd 1742C<*foo{FORMAT}> now works.
44da0e71 1743=item *
1744
1745Infinity is now recognized as a number.
f39f21d8 1746
1747=item *
1748
e1f170bd 1749UNIVERSAL::isa no longer caches methods incorrectly. (This broke
1750the Tk extension with 5.6.0.)
f39f21d8 1751
1752=item *
1753
e1f170bd 1754Lexicals I: lexicals outside an eval "" weren't resolved
1755correctly inside a subroutine definition inside the eval "" if they
1756were not already referenced in the top level of the eval""ed code.
f39f21d8 1757
1758=item *
1759
e1f170bd 1760Lexicals II: lexicals leaked at file scope into subroutines that
1761were declared before the lexicals.
f39f21d8 1762
1763=item *
1764
44da0e71 1765Lexical warnings now propagating correctly between scopes
1766and into C<eval "...">.
1767
1768=item *
1769
1770C<use warnings qw(FATAL all)> did not work as intended. This has been
1771corrected.
1772
1773=item *
1774
1775warnings::enabled() now reports the state of $^W correctly if the caller
1776isn't using lexical warnings.
f39f21d8 1777
1778=item *
1779
e1f170bd 1780Line renumbering with eval and C<#line> now works.
f39f21d8 1781
1782=item *
1783
e1f170bd 1784Fixed numerous memory leaks, especially in eval "".
f39f21d8 1785
1786=item *
1787
e1f170bd 1788mkdir() now ignores trailing slashes in the directory name,
1789as mandated by POSIX.
f39f21d8 1790
1791=item *
1792
e1f170bd 1793Some versions of glibc have a broken modfl(). This affects builds
1794with C<-Duselongdouble>. This version of Perl detects this brokenness
1795and has a workaround for it. The glibc release 2.2.2 is known to have
1796fixed the modfl() bug.
f39f21d8 1797
1798=item *
1799
e1f170bd 1800Modulus of unsigned numbers now works (4063328477 % 65535 used to
1801return 27406, instead of 27047).
f39f21d8 1802
1803=item *
1804
e1f170bd 1805Some "not a number" warnings introduced in 5.6.0 eliminated to be
1806more compatible with 5.005. Infinity is now recognised as a number.
f39f21d8 1807
77c8cf41 1808=item *
f39f21d8 1809
44da0e71 1810Numeric conversions did not recognize changes in the string value
1811properly in certain circumstances.
1812
1813=item *
1814
e1f170bd 1815Attributes (like :shared) didn't work with our().
f39f21d8 1816
1817=item *
1818
e1f170bd 1819our() variables will not cause "will not stay shared" warnings.
f39f21d8 1820
1821=item *
1822
44da0e71 1823"our" variables of the same name declared in two sibling blocks
1824resulted in bogus warnings about "redeclaration" of the variables.
1825The problem has been corrected.
1826
1827=item *
1828
e1f170bd 1829pack "Z" now correctly terminates the string with "\0".
f39f21d8 1830
1831=item *
1832
e1f170bd 1833Fix password routines which in some shadow password platforms
1834(e.g. HP-UX) caused getpwent() to return every other entry.
f39f21d8 1835
77c8cf41 1836=item *
f39f21d8 1837
e1f170bd 1838The PERL5OPT environment variable (for passing command line arguments
1839to Perl) didn't work for more than a single group of options.
f39f21d8 1840
77c8cf41 1841=item *
f39f21d8 1842
e1f170bd 1843PERL5OPT with embedded spaces didn't work.
f39f21d8 1844
77c8cf41 1845=item *
f39f21d8 1846
e1f170bd 1847printf() no longer resets the numeric locale to "C".
f39f21d8 1848
77c8cf41 1849=item *
f39f21d8 1850
44da0e71 1851C<qw(a\\b)> now parses correctly as C<'a\\b'>.
1852
1853=item *
1854
1855pos() did not return the correct value within s///ge in earlier
1856versions. This is now handled correctly.
f39f21d8 1857
77c8cf41 1858=item *
f39f21d8 1859
e1f170bd 1860Printing quads (64-bit integers) with printf/sprintf now works
1861without the q L ll prefixes (assuming you are on a quad-capable platform).
f39f21d8 1862
77c8cf41 1863=item *
f39f21d8 1864
e1f170bd 1865Regular expressions on references and overloaded scalars now work.
f39f21d8 1866
ba370e9b 1867=item *
1868
e1f170bd 1869Right-hand side magic (GMAGIC) could in many cases such as string
1870concatenation be invoked too many times.
ba370e9b 1871
1872=item *
1873
e1f170bd 1874scalar() now forces scalar context even when used in void context.
ba370e9b 1875
1876=item *
1877
e1f170bd 1878SOCKS support is now much more robust.
ba370e9b 1879
1880=item *
1881
e1f170bd 1882sort() arguments are now compiled in the right wantarray context
1883(they were accidentally using the context of the sort() itself).
44da0e71 1884The comparison block is now run in scalar context, and the arguments
1885to be sorted are always provided list context.
ba370e9b 1886
1887=item *
1888
e1f170bd 1889Changed the POSIX character class C<[[:space:]]> to include the (very
c2e23569 1890rarely used) vertical tab character. Added a new POSIX-ish character
1891class C<[[:blank:]]> which stands for horizontal whitespace
1892(currently, the space and the tab).
ba370e9b 1893
1894=item *
1895
1896The tainting behaviour of sprintf() has been rationalized. It does
1897not taint the result of floating point formats anymore, making the
1898behaviour consistent with that of string interpolation.
1899
1900=item *
1901
44da0e71 1902Some cases of inconsistent taint propagation (such as within hash
1903values) have been fixed.
1904
1905=item *
1906
1907The RE engine found in Perl 5.6.0 accidentally pessimised certain kinds
1908of simple pattern matches. These are now handled better.
1909
1910=item *
1911
1912Regular expression debug output (whether through C<use re 'debug'>
1913or via C<-Dr>) now looks better.
1914
1915=item *
1916
1917Multi-line matches like C<"a\nxb\n" =~ /(?!\A)x/m> were flawed. The
1918bug has been fixed.
1919
1920=item *
1921
1922Use of $& could trigger a core dump under some situations. This
1923is now avoided.
1924
1925=item *
1926
c2e23569 1927The regular expression captured submatches ($1, $2, ...) are now
1928more consistently unset if the match fails, instead of leaving false
1929data lying around in them.
1930
1931=item *
1932
44da0e71 1933readline() on files opened in "slurp" mode could return an extra "" at
1934the end in certain situations. This has been corrected.
1935
1936=item *
1937
1938Autovivification of symbolic references of special variables described
1939in L<perlvar> (as in C<${$num}>) was accidentally disabled. This works
1940again now.
1941
1942=item *
1943
da6838c8 1944Sys::Syslog ignored the C<LOG_AUTH> constant.
ba370e9b 1945
1946=item *
1947
e1f170bd 1948All but the first argument of the IO syswrite() method are now optional.
ba370e9b 1949
1950=item *
1951
e1f170bd 1952$AUTOLOAD, sort(), lock(), and spawning subprocesses
1953in multiple threads simultaneously are now thread-safe.
ba370e9b 1954
1955=item *
1956
e1f170bd 1957Tie::ARRAY SPLICE method was broken.
ba370e9b 1958
1959=item *
1960
e1f170bd 1961Allow read-only string on left hand side of non-modifying tr///.
ba370e9b 1962
1963=item *
1964
e1f170bd 1965Several Unicode fixes.
ba370e9b 1966
1967=over 8
1968
1969=item *
1970
e1f170bd 1971BOMs (byte order marks) in the beginning of Perl files
1972(scripts, modules) should now be transparently skipped.
1973UTF-16 (UCS-2) encoded Perl files should now be read correctly.
ba370e9b 1974
1975=item *
1976
e1f170bd 1977The character tables have been updated to Unicode 3.1.1.
ba370e9b 1978
1979=item *
1980
e1f170bd 1981Comparing with utf8 data does not magically upgrade non-utf8 data
58175c9b 1982into utf8. (This was a problem for example if you were mixing data
1983from I/O and Unicode data: your output might have got magically encoded
1984as UTF-8.)
1985
1986=item *
1987
1988Generating illegal Unicode code points like U+FFFE, or the UTF-16
1989surrogates, now also generates an optional warning.
ba370e9b 1990
1991=item *
1992
e1f170bd 1993C<IsAlnum>, C<IsAlpha>, and C<IsWord> now match titlecase.
f39f21d8 1994
77c8cf41 1995=item *
f39f21d8 1996
e1f170bd 1997Concatenation with the C<.> operator or via variable interpolation,
1998C<eq>, C<substr>, C<reverse>, C<quotemeta>, the C<x> operator,
1999substitution with C<s///>, single-quoted UTF8, should now work.
f39f21d8 2000
77c8cf41 2001=item *
f39f21d8 2002
e1f170bd 2003The C<tr///> operator now works. Note that the C<tr///CU>
2004functionality has been removed (but see pack('U0', ...)).
f39f21d8 2005
77c8cf41 2006=item *
f39f21d8 2007
e1f170bd 2008C<eval "v200"> now works.
f39f21d8 2009
77c8cf41 2010=item *
f39f21d8 2011
44da0e71 2012Perl 5.6.0 parsed m/\x{ab}/ incorrectly, leading to spurious warnings.
2013This has been corrected.
2014
2015=item *
2016
e1f170bd 2017Zero entries were missing from the Unicode classes like C<IsDigit>.
f39f21d8 2018
e1f170bd 2019=back
f39f21d8 2020
44da0e71 2021=item *
2022
2023Large unsigned numbers (those above 2**31) could sometimes lose their
2024unsignedness, causing bogus results in arithmetic operations.
2025
77c8cf41 2026=back
f39f21d8 2027
77c8cf41 2028=head2 Platform Specific Changes and Fixes
f39f21d8 2029
2030=over 4
2031
2032=item *
2033
77c8cf41 2034BSDI 4.*
f39f21d8 2035
77c8cf41 2036Perl now works on post-4.0 BSD/OSes.
f39f21d8 2037
2038=item *
2039
77c8cf41 2040All BSDs
f39f21d8 2041
057b7f2b 2042Setting C<$0> now works (as much as possible; see L<perlvar> for details).
f39f21d8 2043
2044=item *
2045
77c8cf41 2046Cygwin
f39f21d8 2047
77c8cf41 2048Numerous updates; currently synchronised with Cygwin 1.1.4.
f39f21d8 2049
2050=item *
2051
e1f170bd 2052Previously DYNIX/ptx had problems in its Configure probe for non-blocking I/O.
2053
2054=item *
2055
77c8cf41 2056EPOC
f39f21d8 2057
77c8cf41 2058EPOC update after Perl 5.6.0. See README.epoc.
f39f21d8 2059
2060=item *
2061
77c8cf41 2062FreeBSD 3.*
f39f21d8 2063
77c8cf41 2064Perl now works on post-3.0 FreeBSDs.
f39f21d8 2065
2066=item *
2067
77c8cf41 2068HP-UX
2069
2070README.hpux updated; C<Configure -Duse64bitall> now almost works.
f39f21d8 2071
2072=item *
2073
77c8cf41 2074IRIX
f39f21d8 2075
77c8cf41 2076Numerous compilation flag and hint enhancements; accidental mixing
2077of 32-bit and 64-bit libraries (a doomed attempt) made much harder.
f39f21d8 2078
77c8cf41 2079=item *
f39f21d8 2080
77c8cf41 2081Linux
f39f21d8 2082
e1f170bd 2083=over 8
2084
2085=item *
2086
77c8cf41 2087Long doubles should now work (see INSTALL).
f39f21d8 2088
2089=item *
2090
e1f170bd 2091Linux previously had problems related to sockaddrlen when using
2092accept(), revcfrom() (in Perl: recv()), getpeername(), and getsockname().
2093
2094=back
2095
2096=item *
2097
77c8cf41 2098MacOS Classic
f39f21d8 2099
77c8cf41 2100Compilation of the standard Perl distribution in MacOS Classic should
2101now work if you have the Metrowerks development environment and
2102the missing Mac-specific toolkit bits. Contact the macperl mailing
2103list for details.
f39f21d8 2104
2105=item *
2106
77c8cf41 2107MPE/iX
f39f21d8 2108
77c8cf41 2109MPE/iX update after Perl 5.6.0. See README.mpeix.
f39f21d8 2110
2111=item *
2112
77c8cf41 2113NetBSD/sparc
f39f21d8 2114
77c8cf41 2115Perl now works on NetBSD/sparc.
f39f21d8 2116
2117=item *
2118
77c8cf41 2119OS/2
f39f21d8 2120
77c8cf41 2121Now works with usethreads (see INSTALL).
f39f21d8 2122
2123=item *
2124
77c8cf41 2125Solaris
f39f21d8 2126
77c8cf41 212764-bitness using the Sun Workshop compiler now works.
f39f21d8 2128
2129=item *
2130
77c8cf41 2131Tru64 (aka Digital UNIX, aka DEC OSF/1)
f39f21d8 2132
77c8cf41 2133The operating system version letter now recorded in $Config{osvers}.
2134Allow compiling with gcc (previously explicitly forbidden). Compiling
2135with gcc still not recommended because buggy code results, even with
2136gcc 2.95.2.
f39f21d8 2137
2138=item *
2139
77c8cf41 2140Unicos
2141
2142Fixed various alignment problems that lead into core dumps either
2143during build or later; no longer dies on math errors at runtime;
2144now using full quad integers (64 bits), previously was using
2145only 46 bit integers for speed.
f39f21d8 2146
2147=item *
2148
77c8cf41 2149VMS
2150
2151chdir() now works better despite a CRT bug; now works with MULTIPLICITY
2152(see INSTALL); now works with Perl's malloc.
f39f21d8 2153
00bb525a 2154The tainting of C<%ENV> elements via C<keys> or C<values> was previously
2155unimplemented. It now works as documented.
2156
2157The C<waitpid> emulation has been improved. The worst bug (now fixed)
2158was that a pid of -1 would cause a wildcard search of all processes on
2159the system. The most significant enhancement is that we can now
2160usually get the completion status of a terminated process.
2161
2162POSIX-style signals are now emulated much better on VMS versions prior
2163to 7.0.
2164
2165The C<system> function and backticks operator have improved
2166functionality and better error handling.
2167
f39f21d8 2168=item *
2169
77c8cf41 2170Windows
f39f21d8 2171
77c8cf41 2172=over 8
f39f21d8 2173
2174=item *
2175
77c8cf41 2176accept() no longer leaks memory.
f39f21d8 2177
2178=item *
2179
e1f170bd 2180Borland C++ v5.5 is now a supported compiler that can build Perl.
2181However, the generated binaries continue to be incompatible with those
2182generated by the other supported compilers (GCC and Visual C++).
2183
2184=item *
2185
77c8cf41 2186Better chdir() return value for a non-existent directory.
f39f21d8 2187
77c8cf41 2188=item *
f39f21d8 2189
e1f170bd 2190Duping socket handles with open(F, ">&MYSOCK") now works under Windows 9x.
2191
2192=item *
2193
77c8cf41 2194New %ENV entries now propagate to subprocesses.
f39f21d8 2195
2196=item *
2197
44da0e71 2198Current directory entries in %ENV are now correctly propagated to child
2199processes.
2200
2201=item *
2202
77c8cf41 2203$ENV{LIB} now used to search for libs under Visual C.
2204
2205=item *
2206
44da0e71 2207fork() emulation has been improved in various ways, but still continues
2208to be experimental. See L<perlfork> for known bugs and caveats.
e1f170bd 2209
2210=item *
2211
77c8cf41 2212A failed (pseudo)fork now returns undef and sets errno to EAGAIN.
f39f21d8 2213
2214=item *
2215
44da0e71 2216Win32::GetCwd() correctly returns C:\ instead of C: when at the drive root.
2217Other bugs in chdir() and Cwd::cwd() have also been fixed.
2218
2219=item *
2220
e1f170bd 2221HTML files will be installed in c:\perl\html instead of c:\perl\lib\pod\html
2222
2223=item *
2224
2225The makefiles now provide a single switch to bulk-enable all the features
2226enabled in ActiveState ActivePerl (a popular Win32 binary distribution).
2227
2228=item *
2229
77c8cf41 2230Allow REG_EXPAND_SZ keys in the registry.
f39f21d8 2231
2232=item *
2233
77c8cf41 2234Can now send() from all threads, not just the first one.
f39f21d8 2235
2236=item *
2237
77c8cf41 2238Fake signal handling reenabled, bugs and all.
f39f21d8 2239
2240=item *
2241
44da0e71 2242%SIG has been enabled under USE_ITHREADS, but its use is completely
2243unsupported under all configurations.
2244
2245=item *
2246
77c8cf41 2247Less stack reserved per thread so that more threads can run
2248concurrently. (Still 16M per thread.)
f39f21d8 2249
2250=item *
2251
c2e23569 2252C<File::Spec-&gt;tmpdir()> now prefers C:/temp over /tmp
77c8cf41 2253(works better when perl is running as service).
f39f21d8 2254
2255=item *
2256
77c8cf41 2257Better UNC path handling under ithreads.
f39f21d8 2258
2259=item *
2260
44da0e71 2261wait(), waitpid() and backticks now return the correct exit status under
2262Windows 9x.
f39f21d8 2263
2264=item *
2265
77c8cf41 2266winsock handle leak fixed.
f39f21d8 2267
2268=back
2269
77c8cf41 2270=back
f39f21d8 2271
77c8cf41 2272=head1 New or Changed Diagnostics
f39f21d8 2273
ba370e9b 2274=over 4
2275
2276=item *
2277
77c8cf41 2278All regular expression compilation error messages are now hopefully
2279easier to understand both because the error message now comes before
2280the failed regex and because the point of failure is now clearly
ba370e9b 2281marked by a C<E<lt>-- HERE> marker.
2282
2283=item *
f39f21d8 2284
77c8cf41 2285The various "opened only for", "on closed", "never opened" warnings
2286drop the C<main::> prefix for filehandles in the C<main> package,
bea4d472 2287for example C<STDIN> instead of C<main::STDIN>.
f39f21d8 2288
ba370e9b 2289=item *
2290
77c8cf41 2291The "Unrecognized escape" warning has been extended to include C<\8>,
2292C<\9>, and C<\_>. There is no need to escape any of the C<\w> characters.
f39f21d8 2293
ba370e9b 2294=item *
f39f21d8 2295
77c8cf41 2296Two new debugging options have been added: if you have compiled your
2297Perl with debugging, you can use the -DT and -DR options to trace
2298tokenising and to add reference counts to displaying variables,
2299respectively.
f39f21d8 2300
2301=item *
2302
492652be 2303perl5db.pl has been modified to present a more consistent commands
2304interface, via (CommandSet=580). perl5db.t was also added to test the
2305changes, and as a placeholder for further tests.
2306
2307See L<perldebug>
2308
2309=item *
2310
77c8cf41 2311If an attempt to use a (non-blessed) reference as an array index
2312is made, a warning is given.
f39f21d8 2313
2314=item *
2315
77c8cf41 2316C<push @a;> and C<unshift @a;> (with no values to push or unshift)
2317now give a warning. This may be a problem for generated and evaled
2318code.
f39f21d8 2319
ba370e9b 2320=item *
2321
2322If you try to L<perlfunc/pack> a number less than 0 or larger than 255
2323using the C<"C"> format you will get an optional warning. Similarly
2324for the C<"c"> format and a number less than -128 or more than 127.
2325
2326=item *
2327
2328Certain regex modifiers such as C<(?o)> make sense only if applied to
2329the entire regex. You will an optional warning if you try to do otherwise.
2330
2331=item *
2332
c2e23569 2333Using arrays or hashes as references (e.g. C<< %foo-&gt;{bar} >>
2334has been deprecated for a while. Now you will get an optional warning.
ba370e9b 2335
f39f21d8 2336=back
2337
77c8cf41 2338=head1 Changed Internals
f39f21d8 2339
2340=over 4
2341
2342=item *
2343
77c8cf41 2344perlapi.pod (a companion to perlguts) now attempts to document the
2345internal API.
f39f21d8 2346
2347=item *
2348
77c8cf41 2349You can now build a really minimal perl called microperl.
2350Building microperl does not require even running Configure;
2351C<make -f Makefile.micro> should be enough. Beware: microperl makes
2352many assumptions, some of which may be too bold; the resulting
2353executable may crash or otherwise misbehave in wondrous ways.
2354For careful hackers only.
f39f21d8 2355
2356=item *
2357
c2e23569 2358Added rsignal(), whichsig(), do_join(), op_clear, op_null,
2359ptr_table_clear(), ptr_table_free(), sv_setref_uv(), and several UTF-8
2360interfaces to the publicised API. For the full list of the available
2361APIs see L<perlapi>.
f39f21d8 2362
2363=item *
2364
77c8cf41 2365Made possible to propagate customised exceptions via croak()ing.
f39f21d8 2366
77c8cf41 2367=item *
f39f21d8 2368
95f0a2f1 2369Now xsubs can have attributes just like subs. (Well, at least the
2370built-in attributes.)
f39f21d8 2371
2372=item *
2373
77c8cf41 2374dTHR and djSP have been obsoleted; the former removed (because it's
2375a no-op) and the latter replaced with dSP.
f39f21d8 2376
2377=item *
2378
61947107 2379PERL_OBJECT has been completely removed.
2380
2381=item *
2382
ba370e9b 2383The MAGIC constants (e.g. C<'P'>) have been macrofied
2384(e.g. C<PERL_MAGIC_TIED>) for better source code readability
2385and maintainability.
2386
2387=item *
2388
2389The regex compiler now maintains a structure that identifies nodes in
2390the compiled bytecode with the corresponding syntactic features of the
2391original regex expression. The information is attached to the new
2392C<offsets> member of the C<struct regexp>. See L<perldebguts> for more
2393complete information.
2394
2395=item *
2396
2397The C code has been made much more C<gcc -Wall> clean. Some warning
2398messages still remain in some platforms, so if you are compiling with
2399gcc you may see some warnings about dubious practices. The warnings
2400are being worked on.
2401
2402=item *
2403
2404F<perly.c>, F<sv.c>, and F<sv.h> have now been extensively commented.
2405
2406=item *
2407
61947107 2408Documentation on how to use the Perl source repository has been added
2409to F<Porting/repository.pod>.
f39f21d8 2410
888aee59 2411=item *
2412
c2e23569 2413There are now several profiling make targets.
888aee59 2414
77c8cf41 2415=back
f39f21d8 2416
77c8cf41 2417=head1 Security Vulnerability Closed
f39f21d8 2418
77c8cf41 2419(This change was already made in 5.7.0 but bears repeating here.)
f39f21d8 2420
77c8cf41 2421A potential security vulnerability in the optional suidperl component
2422of Perl was identified in August 2000. suidperl is neither built nor
2423installed by default. As of November 2001 the only known vulnerable
2424platform is Linux, most likely all Linux distributions. CERT and
2425various vendors and distributors have been alerted about the vulnerability.
2426See http://www.cpan.org/src/5.0/sperl-2000-08-05/sperl-2000-08-05.txt
2427for more information.
f39f21d8 2428
77c8cf41 2429The problem was caused by Perl trying to report a suspected security
2430exploit attempt using an external program, /bin/mail. On Linux
2431platforms the /bin/mail program had an undocumented feature which
2432when combined with suidperl gave access to a root shell, resulting in
2433a serious compromise instead of reporting the exploit attempt. If you
2434don't have /bin/mail, or if you have 'safe setuid scripts', or if
2435suidperl is not installed, you are safe.
f39f21d8 2436
77c8cf41 2437The exploit attempt reporting feature has been completely removed from
2438Perl 5.8.0 (and the maintenance release 5.6.1, and it was removed also
2439from all the Perl 5.7 releases), so that particular vulnerability
2440isn't there anymore. However, further security vulnerabilities are,
ba370e9b 2441unfortunately, always possible. The suidperl functionality is most
2442probably going to be removed in Perl 5.10. In any case, suidperl
2443should only be used by security experts who know exactly what they are
2444doing and why they are using suidperl instead of some other solution
2445such as sudo (see http://www.courtesan.com/sudo/).
77c8cf41 2446
2447=head1 New Tests
2448
76663d67 2449Several new tests have been added, especially for the F<lib>
2450subsection. There are now about 34 000 individual tests (spread over
2451about 530 test scripts), in the regression suite (5.6.1 has about
245211700 tests, in 258 test scripts) Many of the new tests are introduced
2453by the new modules, but still in general Perl is now more thoroughly
2454tested.
2455
2456Because of the large number of tests, running the regression suite
2457will take considerably longer time than it used to: expect the suite
2458to take up to 4-5 times longer to run than in perl 5.6. In a really
2459fast machine you can hope to finish the suite in about 5 minutes
2460(wallclock time).
77c8cf41 2461
2462The tests are now reported in a different order than in earlier Perls.
2463(This happens because the test scripts from under t/lib have been moved
2464to be closer to the library/extension they are testing.)
2465
f39f21d8 2466=head1 Known Problems
2467
f39f21d8 2468=head2 AIX
2469
2470=over 4
2471
2472=item *
2473
2474In AIX 4.2 Perl extensions that use C++ functions that use statics
2475may have problems in that the statics are not getting initialized.
2476In newer AIX releases this has been solved by linking Perl with
2477the libC_r library, but unfortunately in AIX 4.2 the said library
2478has an obscure bug where the various functions related to time
2479(such as time() and gettimeofday()) return broken values, and
2480therefore in AIX 4.2 Perl is not linked against the libC_r.
2481
2482=item *
2483
2484vac 5.0.0.0 May Produce Buggy Code For Perl
2485
2486The AIX C compiler vac version 5.0.0.0 may produce buggy code,
2487resulting in few random tests failing, but when the failing tests
2488are run by hand, they succeed. We suggest upgrading to at least
2489vac version 5.0.1.0, that has been known to compile Perl correctly.
2490"lslpp -L|grep vac.C" will tell you the vac version.
2491
2492=back
2493
2494=head2 Amiga Perl Invoking Mystery
2495
2496One cannot call Perl using the C<volume:> syntax, that is, C<perl -v>
057b7f2b 2497works, but for example C<bin:perl -v> doesn't. The exact reason isn't
f39f21d8 2498known but the current suspect is the F<ixemul> library.
2499
2500=head2 lib/ftmp-security tests warn 'system possibly insecure'
2501
2502Don't panic. Read INSTALL 'make test' section instead.
2503
2504=head2 Cygwin intermittent failures of lib/Memoize/t/expire_file 11 and 12
2505
2506The subtests 11 and 12 sometimes fail and sometimes work.
2507
2508=head2 HP-UX lib/io_multihomed Fails When LP64-Configured
2509
2510The lib/io_multihomed test may hang in HP-UX if Perl has been
2511configured to be 64-bit. Because other 64-bit platforms do not hang in
2512this test, HP-UX is suspect. All other tests pass in 64-bit HP-UX. The
2513test attempts to create and connect to "multihomed" sockets (sockets
2514which have multiple IP addresses).
2515
2516=head2 HP-UX lib/posix Subtest 9 Fails When LP64-Configured
2517
2518If perl is configured with -Duse64bitall, the successful result of the
2519subtest 10 of lib/posix may arrive before the successful result of the
2520subtest 9, which confuses the test harness so much that it thinks the
2521subtest 9 failed.
2522
2523=head2 Linux With Sfio Fails op/misc Test 48
2524
2525No known fix.
2526
a0aae13b 2527=head2 Mac OS X
2528
2529The following tests are known to fail:
2530
2531 Failed Test Stat Wstat Total Fail Failed List of Failed
2532 -------------------------------------------------------------------------
2533 ../ext/DB_File/t/db-btree.t 0 11 ?? ?? % ??
2534 ../ext/DB_File/t/db-recno.t 149 3 2.01% 61 63 65
2535 ../ext/POSIX/t/posix.t 31 1 3.23% 10
2536 ../lib/warnings.t 450 1 0.22% 316
2537
f39f21d8 2538=head2 OS/390
2539
2540OS/390 has rather many test failures but the situation is actually
2541better than it was in 5.6.0, it's just that so many new modules and
2542tests have been added.
2543
2544 Failed Test Stat Wstat Total Fail Failed List of Failed
2545 -----------------------------------------------------------------------------
2546 ../ext/B/Deparse.t 14 1 7.14% 14
2547 ../ext/B/Showlex.t 1 1 100.00% 1
2548 ../ext/Encode/Encode/Tcl.t 610 13 2.13% 592 594 596 598
2549 600 602 604-610
2550 ../ext/IO/lib/IO/t/io_unix.t 113 28928 5 3 60.00% 3-5
2551 ../ext/POSIX/POSIX.t 29 1 3.45% 14
2552 ../ext/Storable/t/lock.t 255 65280 5 3 60.00% 3-5
2553 ../lib/locale.t 129 33024 117 19 16.24% 99-117
2554 ../lib/warnings.t 434 1 0.23% 75
2555 ../lib/ExtUtils.t 27 1 3.70% 25
2556 ../lib/Math/BigInt/t/bigintpm.t 1190 1 0.08% 1145
2557 ../lib/Unicode/UCD.t 81 48 59.26% 1-16 49-64 66-81
2558 ../lib/User/pwent.t 9 1 11.11% 4
2559 op/pat.t 660 6 0.91% 242-243 424-425
2560 626-627
2561 op/split.t 0 9 ?? ?? % ??
2562 op/taint.t 174 3 1.72% 156 162 168
2563 op/tr.t 70 3 4.29% 50 58-59
2564 Failed 16/422 test scripts, 96.21% okay. 105/23251 subtests failed, 99.55% okay.
2565
2566=head2 op/sprintf tests 129 and 130
2567
2568The op/sprintf tests 129 and 130 are known to fail on some platforms.
2569Examples include any platform using sfio, and Compaq/Tandem's NonStop-UX.
2570The failing platforms do not comply with the ANSI C Standard, line
257119ff on page 134 of ANSI X3.159 1989 to be exact. (They produce
2572something other than "1" and "-1" when formatting 0.6 and -0.6 using
2573the printf format "%.0f", most often they produce "0" and "-0".)
2574
2575=head2 Failure of Thread tests
2576
fedd8cf1 2577B<Note that support for 5.005-style threading remains experimental
2578and practically unsupported.>
f39f21d8 2579
2580The following tests are known to fail due to fundamental problems in
2581the 5.005 threading implementation. These are not new failures--Perl
25825.005_0x has the same bugs, but didn't have these tests.
2583
fedd8cf1 2584 ext/List/Util/t/first 2
2585 lib/autouse 4
2586 ext/Thread/thr5005 19-20
2587
2588These failures are unlikely to get fixed.
f39f21d8 2589
2590=head2 UNICOS
2591
2592=over 4
2593
2594=item *
2595
2596ext/POSIX/sigaction subtests 6 and 13 may fail.
2597
2598=item *
2599
2600lib/ExtUtils may spuriously claim that subtest 28 failed,
2601which is interesting since the test only has 27 tests.
2602
2603=item *
2604
2605Numerous numerical test failures
2606
2607 op/numconvert 209,210,217,218
2608 op/override 7
2609 ext/Time/HiRes/HiRes 9
2610 lib/Math/BigInt/t/bigintpm 1145
2611 lib/Math/Trig 25
2612
2613These tests fail because of yet unresolved floating point inaccuracies.
2614
2615=back
2616
0968fb3b 2617=head2 UNICOS and UNICOS/mk
0f71e040 2618
0968fb3b 2619The io/fs test #31 is failing because in UNICOS and UNICOS/mk
2620truncate() cannot be used to grow the size of filehandles, only
2621to reduce the size. The workaround is to truncate files instead
2622of filehandles.
0f71e040 2623
f39f21d8 2624=head2 UTS
2625
2626There are a few known test failures, see L<perluts>.
2627
2628=head2 VMS
2629
00bb525a 2630There is one known test failure with a default configuration:
7207e29d 2631
aecce728 2632 [.run]switches..........................FAILED on test 1
7207e29d 2633
f39f21d8 2634=head2 Win32
2635
2636In multi-CPU boxes there are some problems with the I/O buffering:
2637some output may appear twice.
2638
2639=head2 Localising a Tied Variable Leaks Memory
2640
2641 use Tie::Hash;
2642 tie my %tie_hash => 'Tie::StdHash';
2643
2644 ...
2645
2646 local($tie_hash{Foo}) = 1; # leaks
2647
2648Code like the above is known to leak memory every time the local()
2649is executed.
2650
aecce728 2651=head2 Localising Tied Arrays and Hashes Is Broken
2652
2653 local %tied_array;
2654
2655doesn't work as one would expect: the old value is restored
2656incorrectly.
2657
f39f21d8 2658=head2 Self-tying of Arrays and Hashes Is Forbidden
2659
2660Self-tying of arrays and hashes is broken in rather deep and
2661hard-to-fix ways. As a stop-gap measure to avoid people from getting
2662frustrated at the mysterious results (core dumps, most often) it is
2663for now forbidden (you will get a fatal error even from an attempt).
2664
f39f21d8 2665=head2 Building Extensions Can Fail Because Of Largefiles
2666
2667Some extensions like mod_perl are known to have issues with
2668`largefiles', a change brought by Perl 5.6.0 in which file offsets
2669default to 64 bits wide, where supported. Modules may fail to compile
2670at all or compile and work incorrectly. Currently there is no good
2671solution for the problem, but Configure now provides appropriate
2672non-largefile ccflags, ldflags, libswanted, and libs in the %Config
2673hash (e.g., $Config{ccflags_nolargefiles}) so the extensions that are
2674having problems can try configuring themselves without the
2675largefileness. This is admittedly not a clean solution, and the
2676solution may not even work at all. One potential failure is whether
2677one can (or, if one can, whether it's a good idea) link together at
2678all binaries with different ideas about file offsets, all this is
2679platform-dependent.
2680
aecce728 2681=head2 Unicode Support on EBCDIC Still Spotty
2682
2683Though mostly working, Unicode support still has problem spots on
2684EBCDIC platforms. One such known spot are the C<\p{}> and C<\P{}>
2685regular expression constructs for code points less than 256: the
2686pP are testing for Unicode code points, not knowing about EBCDIC.
2687
f39f21d8 2688=head2 The Compiler Suite Is Still Experimental
2689
44da0e71 2690The compiler suite is slowly getting better but it continues to be
2691highly experimental. Use in production environments is discouraged.
f39f21d8 2692
c4f1ce08 2693=head2 The Long Double Support Is Still Experimental
f39f21d8 2694
2695The ability to configure Perl's numbers to use "long doubles",
2696floating point numbers of hopefully better accuracy, is still
2697experimental. The implementations of long doubles are not yet
2698widespread and the existing implementations are not quite mature
2699or standardised, therefore trying to support them is a rare
2700and moving target. The gain of more precision may also be offset
2701by slowdown in computations (more bits to move around, and the
2702operations are more likely to be executed by less optimised
2703libraries).
33a87e58 2704
c4f1ce08 2705=head2 Seen In Perl 5.7 But Gone Now
2706
c4f1ce08 2707C<Time::Piece> (previously known as C<Time::Object>) was removed
2708because it was felt that it didn't have enough value in it to be a
2709core module. It is still a useful module, though, and is available
2710from the CPAN.
2711
cc0fca54 2712=head1 Reporting Bugs
2713
d4ad863d 2714If you find what you think is a bug, you might check the articles
2715recently posted to the comp.lang.perl.misc newsgroup and the perl
2716bug database at http://bugs.perl.org. There may also be
06a5f41f 2717information at http://www.perl.com/, the Perl Home Page.
cc0fca54 2718
2719If you believe you have an unreported bug, please run the B<perlbug>
2720program included with your release. Be sure to trim your bug down
2721to a tiny but sufficient test case. Your bug report, along with the
d4ad863d 2722output of C<perl -V>, will be sent off to perlbug@perl.org to be
cc0fca54 2723analysed by the Perl porting team.
2724
2725=head1 SEE ALSO
2726
2727The F<Changes> file for exhaustive details on what changed.
2728
2729The F<INSTALL> file for how to build Perl.
2730
2731The F<README> file for general stuff.
2732
2733The F<Artistic> and F<Copying> files for copyright information.
2734
2735=head1 HISTORY
2736
d468ca04 2737Written by Jarkko Hietaniemi <F<jhi@iki.fi>>.
cc0fca54 2738
2739=cut