If overloaded %{} etc. return the object do not loop.
[p5sagit/p5-mst-13.2.git] / pod / perldelta.pod
1 =head1 NAME
2
3 perldelta - what's new for perl v5.7.0
4
5 =head1 DESCRIPTION
6
7 This document describes differences between the 5.6.0 release and
8 the 5.7.0 release.
9
10 =head1 Security Vulnerability Closed
11
12 A potential security vulnerability in the optional suidperl component
13 of Perl has been identified.  suidperl is neither built nor installed
14 by default.  As of August the 20th, 2000, the only known vulnerable
15 platform is Linux, most likely all Linux distributions.  CERT and
16 various vendors have been alerted about the vulnerability.
17
18 The problem was caused by Perl trying to report a suspected security
19 exploit attempt using an external program, /bin/mail.  On Linux
20 platforms the /bin/mail program had an undocumented feature which gave
21 access to a root shell, resulting in a serious compromise instead of
22 reporting the exploit attempt.  If you don't have /bin/mail, or if you
23 have 'safe setuid scripts', or if suidperl is not installed, you
24 are safe.
25
26 The exploit attempt reporting feature has been completely removed from
27 the Perl 5.7.0 release, so that particular vulnerability isn't there
28 anymore.  However, further security vulnerabilities are,
29 unfortunately, always possible.  The suidperl code is being reviewed
30 and if deemed too risky to continue to be supported, it may be
31 completely removed from future releases.  In any case, suidperl should
32 only be used by security experts who know exactly what they are doing
33 and why they are using suidperl instead of some other solution such as
34 sudo (see http://www.courtesan.com/sudo/).
35
36 =head1 Incompatible Changes
37
38 =over 4
39
40 =item *
41
42 Arrays now always interpolate into double-quoted strings:
43 constructs like "foo@bar" now always assume C<@bar> is an array,
44 whether or not the compiler has seen use of C<@bar>.
45
46 =item *
47
48 The semantics of bless(REF, REF) were unclear and until someone proves
49 it to make some sense, it is forbidden.
50
51 =item *
52
53 The very dusty examples in the eg/ directory have been removed.
54 Suggestions for new shiny examples welcome but the main issue is that
55 the examples need to be documented, tested and (most importantly)
56 maintained.
57
58 =item *
59
60 The obsolete chat2 library that should never have been allowed
61 to escape the laboratory has been decommissioned.
62
63 =item *
64
65 The unimplemented POSIX regex features [[.cc.]] and [[=c=]] are still
66 recognised but now cause fatal errors.  The previous behaviour of
67 ignoring them by default and warning if requested was unacceptable
68 since it, in a way, falsely promised that the features could be used.
69
70 =item *
71
72 lstat(FILEHANDLE) now gives a warning because the operation makes no sense.
73 In future releases this may become a fatal error.
74
75 =item *
76
77 The long deprecated uppercase aliases for the string comparison
78 operators (EQ, NE, LT, LE, GE, GT) have now been removed.
79
80 =item *
81
82 The regular expression captured submatches ($1, $2, ...) are now
83 more consistently unset if the match fails, instead of leaving false
84 data lying around in them.
85
86 =item *
87
88 The tr///C and tr///U features have been removed and will not return;
89 the interface was a mistake.  Sorry about that.  For similar
90 functionality, see pack('U0', ...) and pack('C0', ...).
91
92 =back
93
94 =head1 Core Enhancements
95
96 =over 4
97
98 =item *
99
100 C<perl -d:Module=arg,arg,arg> now works (previously one couldn't pass
101 in multiple arguments.)
102
103 =item *
104
105 my __PACKAGE__ now works.
106
107 =item *
108
109 C<no Module;> now works even if there is no "sub unimport" in the Module.
110
111 =item *
112
113 The numerical comparison operators return C<undef> if either operand
114 is a NaN.  Previously the behaviour was unspecified.
115
116 =item *
117
118 C<pack('U0a*', ...)> can now be used to force a string to UTF8.
119
120 =item *
121
122 prototype(\&) is now available.
123
124 =item *
125
126 There is now an UNTIE method.
127
128 =back
129
130 =head1 Modules and Pragmata
131
132 =head2 New Modules
133
134 =over 4
135
136 =item *
137
138 File::Temp allows one to create temporary files and directories in an
139 easy, portable, and secure way.
140
141 =item *
142
143 Storable gives persistence to Perl data structures by allowing the
144 storage and retrieval of Perl data to and from files in a fast and
145 compact binary format.
146
147 =back
148
149 =head2 Updated And Improved Modules and Pragmata
150
151 =over 4
152
153 =item *
154
155 The following independently supported modules have been updated to
156 newer versions from CPAN: CGI, CPAN, DB_File, File::Spec, Getopt::Long,
157 the podlators bundle, Pod::LaTeX, Pod::Parser, Term::ANSIColor, Test.
158
159 =item *
160
161 Bug fixes and minor enhancements have been applied to B::Deparse,
162 Data::Dumper, IO::Poll, IO::Socket::INET, Math::BigFloat,
163 Math::Complex, Math::Trig, Net::protoent, the re pragma, SelfLoader,
164 Sys::SysLog, Test::Harness, Text::Wrap, UNIVERSAL, and the warnings
165 pragma.
166
167 =item *
168
169 The attributes::reftype() now works on tied arguments.
170
171 =item *
172
173 AutoLoader can now be disabled with C<no AutoLoader;>,
174
175 =item *
176
177 The English module can now be used without the infamous performance
178 hit by saying
179
180         use English '-no_performance_hit';
181
182 (Assuming, of course, that one doesn't need the troublesome variables
183 C<$`>, C<$&>, or C<$'>.)  Also, introduce C<@LAST_MATCH_START> and
184 C<@LAST_MATCH_END> English aliases for C<@-> and C<@+>.
185
186 =item *
187
188 File::Find now has pre- and post-processing callbacks.  It also
189 correctly changes directories when chasing symbolic links.  Callbacks
190 (naughtily) exiting with "next;" instead of "return;" now work.
191
192 =item *
193
194 File::Glob::glob() renamed to File::Glob::bsd_glob() to avoid
195 prototype mismatch with CORE::glob().
196
197 =item *
198
199 IPC::Open3 now allows the use of numeric file descriptors.
200
201 =item *
202
203 use lib now works identically to @INC.  Removing directories
204 with 'no lib' now works.
205
206 =item *
207
208 C<%INC> now localised in a Safe compartment so that use/require work.
209
210 =item *
211
212 The Shell module now has an OO interface.
213
214 =item *
215
216 =back
217
218 =head1 Utility Changes
219
220 =over 4
221
222 =item *
223
224 The Emacs perl mode (emacs/cperl-mode.el) has been updated to version 4.31.
225
226 =item *
227
228 Perlbug is now much more robust.  It also sends the bug report to perl.org,
229 not perl.com.
230
231 =item *
232
233 The perlcc utility has been rewritten and its user interface (that is,
234 command line) is much more like that of the UNIX C compiler, cc.
235
236 =item *
237
238 The xsubpp utility for extension writers now understands POD
239 documentation embedded in the *.xs files.
240
241 =back
242
243 =head1 New Documentation
244
245 =over 4
246
247 =item *
248
249 perl56delta details the changes between the 5.005 release and the
250 5.6.0 release.
251
252 =item *
253
254 perldebtut is a Perl debugging tutorial.
255
256 =item *
257
258 perlebcdic contains considerations for running Perl on EBCDIC platforms.
259 Note that unfortunately EBCDIC platforms that used to supported back in
260 Perl 5.005 are still unsupported by Perl 5.7.0; the plan, however, is to
261 bring them back to the fold.  
262
263 =item *
264
265 perlnewmod tells about writing and submitting a new module.
266
267 =item *
268
269 perlposix-bc explains using Perl on the POSIX-BC platform
270 (an EBCDIC mainframe platform).
271
272 =item *
273
274 perlretut is a regular expression tutorial.
275
276 =item *
277
278 perlrequick is a regular expressions quick-start guide.
279 Yes, much quicker than perlretut.
280
281 =item *
282
283 perlutil explains the command line utilities packaged with the Perl
284 distribution.
285
286 =back
287
288 =head1 Performance Enhancements
289
290 =over 4
291
292 =item *
293
294 map() that changes the size of the list should now work faster.
295
296 =item *
297  
298 sort() has been changed to use mergesort internally as opposed to the
299 earlier quicksort.  For very small lists this may result in slightly
300 slower sorting times, but in general the speedup should be at least 20%.
301 Additional bonuses are that the worst case behaviour of sort() is now
302 better (in computer science terms it now runs in time O(N log N), as
303 opposed to quicksorts Theta(N**2) worst-case run time behaviour), and
304 that sort() is now stable (meaning that elements with identical keys
305 will stay ordered as they were before the sort).
306
307 =back
308
309 =head1 Installation and Configuration Improvements
310
311 =head2 Generic Improvements
312
313 =over 4
314
315 =item *
316
317 INSTALL now explains how you can configure perl to use 64-bit
318 integers even on non-64-bit platforms.
319
320 =item *
321
322 Policy.sh policy change: if you are reusing a Policy.sh file (see
323 INSTALL) and you use Configure -Dprefix=/foo/bar and in the old
324 Policy $prefix eq $siteprefix and $prefix eq $vendorprefix, all of
325 them will now be changed to the new prefix, /foo/bar.  (Previously
326 only $prefix changed.)  If you do not like this new behaviour,
327 specify prefix, siteprefix, and vendorprefix explicitly.
328
329 =item *
330
331 A new optional location for Perl libraries, otherlibdirs, is available.
332 It can be used for example for vendor add-ons without disturbing Perl's
333 own library directories.
334
335 =item *
336
337 In many platforms the vendor-supplied 'cc' is too stripped-down to
338 build Perl (basically, 'cc' doesn't do ANSI C).  If this seems
339 to be the case and 'cc' does not seem to be the GNU C compiler
340 'gcc', an automatic attempt is made to find and use 'gcc' instead.
341
342 =item *
343
344 gcc needs to closely track the operating system release to avoid
345 build problems. If Configure finds that gcc was built for a different
346 operating system release than is running, it now gives a clearly visible
347 warning that there may be trouble ahead.
348
349 =item *
350
351 If binary compatibility with the 5.005 release is not wanted, Configure
352 no longer suggests including the 5.005 modules in @INC.
353
354 =item *
355
356 Configure C<-S> can now run non-interactively.
357
358 =item *
359
360 configure.gnu now works with options with whitespace in them.
361
362 =item *
363
364 installperl now outputs everything to STDERR.
365
366 =item *
367
368 $Config{byteorder} is now computed dynamically (this is more robust
369 with "fat binaries" where an executable image contains binaries for
370 more than one binary platform.)
371
372 =back
373
374 =head1 Selected Bug Fixes
375
376 =over 4
377
378 =item *
379
380 Several debugger fixes: exit code now reflects the script exit code,
381 condition C<"0"> now treated correctly, the C<d> command now checks
382 line number, the C<$.> no longer gets corrupted, all debugger output now
383 goes correctly to the socket if RemotePort is set.
384
385 =item *
386
387 C<*foo{FORMAT}> now works.
388
389 =item *
390
391 Lexical warnings now propagating correctly between scopes.
392
393 =item *
394
395 Line renumbering with eval and C<#line> now works.
396
397 =item *
398
399 Fixed numerous memory leaks, especially in eval "".
400
401 =item *
402
403 Modulus of unsigned numbers now works (4063328477 % 65535 used to
404 return 27406, instead of 27047).
405
406 =item *
407
408 Some "not a number" warnings introduced in 5.6.0 eliminated to be
409 more compatible with 5.005.  Infinity is now recognised as a number.
410
411 =item *
412
413 our() variables will not cause "will not stay shared" warnings.
414
415 =item *
416
417 pack "Z" now correctly terminates the string with "\0".
418
419 =item *
420
421 Fix password routines which in some shadow password platforms
422 (e.g. HP-UX) caused getpwent() to return every other entry.
423
424 =item *
425
426 printf() no longer resets the numeric locale to "C".
427
428 =item *
429
430 C<q(a\\b)> now parses correctly as C<'a\\b'>.
431
432 =item *
433
434 Printing quads (64-bit integers) with printf/sprintf now works
435 without the q L ll prefixes (assuming you are on a quad-capable platform).
436
437 =item *
438
439 Regular expressions on references and overloaded scalars now work.
440
441 =item *
442
443 scalar() now forces scalar context even when used in void context.
444
445 =item *
446         
447 sort() arguments are now compiled in the right wantarray context
448 (they were accidentally using the context of the sort() itself).
449
450 =item *
451
452 Changed the POSIX character class C<[[:space:]]> to include the (very
453 rare) vertical tab character.  Added a new POSIX-ish character class
454 C<[[:blank:]]> which stands for horizontal whitespace (currently,
455 the space and the tab).
456
457 =item *
458
459 $AUTOLOAD, sort(), lock(), and spawning subprocesses
460 in multiple threads simultaneously are now thread-safe.
461
462 =item *
463
464 Allow read-only string on left hand side of non-modifying tr///.
465
466 =item *
467
468 Several Unicode fixes (but still not perfect).
469
470 =over 8
471
472 =item *
473
474 BOMs (byte order marks) in the beginning of Perl files
475 (scripts, modules) should now be transparently skipped.
476 UTF16 encoded Perl files should now be read correctly.
477
478 =item *
479
480 The character tables have been updated to Unicode 3.0.1.
481
482 =item *
483
484 chr() for values greater than 127 now create utf8 when under use
485 utf8.
486
487 =item *
488
489 Comparing with utf8 data does not magically upgrade non-utf8 data into
490 utf8.
491
492 =item *
493
494 C<IsAlnum>, C<IsAlpha>, and C<IsWord> now match titlecase.
495
496 =item *
497
498 Concatenation with the C<.> operator or via variable interpolation,
499 C<eq>, C<substr>, C<reverse>, C<quotemeta>, the C<x> operator,
500 substitution with C<s///>, single-quoted UTF8, should now work--in
501 theory.
502
503 =item *
504
505 The C<tr///> operator now works I<slightly> better but is still rather
506 broken.  Note that the C<tr///CU> functionality has been removed (but
507 see pack('U0', ...)).
508
509 =item *
510
511 vec() now refuses to deal with characters >255.
512
513 =item *
514
515 Zero entries were missing from the Unicode classes like C<IsDigit>.
516
517 =back
518
519 =item *
520
521 UNIVERSAL::isa no longer caches methods incorrectly.  (This broke
522 the Tk extension with 5.6.0.)
523
524 =back
525
526 =head2 Platform Specific Changes and Fixes
527
528 =over 4
529
530 =item *
531
532 BSDI 4.*
533
534 Perl now works on post-4.0 BSD/OSes.
535
536 =item *
537
538 All BSDs
539
540 Setting C<$0> now works (as much as possible; see perlvar for details).
541
542 =item *
543
544 Cygwin
545
546 Numerous updates; currently synchronised with Cygwin 1.1.4.
547
548 =item *
549
550 EPOC
551
552 EPOC update after Perl 5.6.0.  See README.epoc.
553
554 =item *
555
556 FreeBSD 3.*
557
558 Perl now works on post-3.0 FreeBSDs.
559
560 =item *
561
562 HP-UX
563
564 README.hpux updated; C<Configure -Duse64bitall> now almost works.
565
566 =item *
567
568 IRIX
569
570 Numerous compilation flag and hint enhancements; accidental mixing
571 of 32-bit and 64-bit libraries (a doomed attempt) made much harder.
572
573 =item *
574
575 Linux
576
577 Long doubles should now work (see INSTALL).
578
579 =item *
580
581 MacOS Classic
582
583 Compilation of the standard Perl distribution in MacOS Classic should
584 now work if you have the Metrowerks development environment and
585 the missing Mac-specific toolkit bits.  Contact the macperl mailing
586 list for details.
587
588 =item *
589
590 MPE/iX
591
592 MPE/iX update after Perl 5.6.0.  See README.mpeix.
593
594 =item *
595
596 NetBSD/sparc
597
598 Perl now works on NetBSD/sparc.
599
600 =item *
601
602 OS/2
603
604 Now works with usethreads (see INSTALL).
605
606 =item *
607
608 Solaris
609
610 64-bitness using the Sun Workshop compiler now works.
611
612 =item *
613
614 Tru64 (aka Digital UNIX, aka DEC OSF/1)
615
616 The operating system version letter now recorded in $Config{osvers}.
617 Allow compiling with gcc (previously explicitly forbidden).  Compiling
618 with gcc still not recommended because buggy code results, even with
619 gcc 2.95.2.
620
621 =item *
622
623 Unicos
624
625 Fixed various alignment problems that lead into core dumps either
626 during build or later; no longer dies on math errors at runtime;
627 now using full quad integers (64 bits), previously was using 
628 only 46 bit integers for speed.
629
630 =item *
631
632 VMS
633
634 chdir() now works better despite a CRT bug; now works with MULTIPLICITY
635 (see INSTALL); now works with Perl's malloc.
636
637 =item *
638
639 Windows
640
641 =over 8
642
643 =item *
644
645 accept() no longer leaks memory.
646
647 =item *
648
649 Better chdir() return value for a non-existent directory.
650
651 =item *
652
653 New %ENV entries now propagate to subprocesses.
654
655 =item *
656
657 $ENV{LIB} now used to search for libs under Visual C.
658
659 =item *
660
661 A failed (pseudo)fork now returns undef and sets errno to EAGAIN.
662
663 =item *
664
665 Allow REG_EXPAND_SZ keys in the registry.
666
667 =item *
668
669 Can now send() from all threads, not just the first one.
670
671 =item *
672
673 Fake signal handling reenabled, bugs and all.
674
675 =item *
676
677 Less stack reserved per thread so that more threads can run
678 concurrently. (still 16M perl thread)
679
680 =item *
681
682 C<File::Spec->tmpdir()> now prefers C:/temp over /tmp
683 (works better when perl running as service).
684
685 =item *
686
687 Better UNC path handling under ithreads.
688
689 =item *
690
691 wait() and waitpid() now work much better.
692
693 =item *
694
695 winsock handle leak fixed.
696
697 =back
698
699 =head1 New or Changed Diagnostics
700
701 All regular expression compilation error messages are now hopefully
702 easier to understand both because the error message now comes before
703 the failed regex and because the point of failure is now clearly
704 marked.
705
706 The various "opened only for", "on closed", "never opened" warnings
707 drop the C<main::> prefix for filehandles in the C<main> package,
708 for example C<STDIN> instead of <main::STDIN>. 
709
710 The "Unrecognized escape" warning has been extended to include C<\8>,
711 C<\9>, and C<\_>.  There is no need to escape any of the C<\w> characters.
712
713 =head1 Changed Internals
714
715 =over 4
716
717 =item *
718
719 perlapi.pod (a companion to perlguts) now attempts to document the
720 internal API.
721
722 =item *
723
724 You can now build a really minimal perl called microperl.
725 Building microperl does not require even running Configure;
726 C<make -f Makefile.micro> should be enough.  Beware: microperl makes
727 many assumptions, some of which may be too bold; the resulting
728 executable may crash or otherwise misbehave in wondrous ways.  For
729 careful hackers only.
730
731 =item *
732
733 Added rsignal(), whichsig(), do_join() to the publicised API.
734
735 =item *
736
737 Made possible to propagate customised exceptions via croak()ing.
738
739 =item *
740
741 Added is_utf8_char(), is_utf8_string(), bytes_to_utf8(), and utf8_to_bytes().
742
743 =item *
744
745 Now xsubs can have attributes just like subs.
746
747 =back
748
749 =head1 Known Problems
750
751 =head2 Unicode Support Still Far From Perfect
752
753 We're working on it.  Stay tuned.
754
755 =head2 EBCDIC Still A Lost Platform
756
757 The plan is to bring them back.
758
759 =head2 Building Extensions Can Fail Because Of Largefiles
760
761 Certain extensions like mod_perl and BSD::Resource are known to have
762 issues with `largefiles', a change brought by Perl 5.6.0 in which file
763 offsets default to 64 bits wide, where supported.  Modules may fail to
764 compile at all or compile and work incorrectly.  Currently there is no
765 good solution for the problem, but Configure now provides appropriate
766 non-largefile ccflags, ldflags, libswanted, and libs in the %Config
767 hash (e.g., $Config{ccflags_nolargefiles}) so the extensions that are
768 having problems can try configuring themselves without the
769 largefileness.  This is admittedly not a clean solution, and the
770 solution may not even work at all.  One potential failure is whether
771 one can (or, if one can, whether it's a good idea) link together at
772 all binaries with different ideas about file offsets, all this is
773 platform-dependent.
774
775 =head2 ftmp-security tests warn 'system possibly insecure'
776
777 Don't panic.  Read INSTALL 'make test' section instead. 
778
779 =head2 Test lib/posix Subtest 9 Fails In LP64-Configured HP-UX
780
781 If perl is configured with -Duse64bitall, the successful result of the
782 subtest 10 of lib/posix may arrive before the successful result of the
783 subtest 9, which confuses the test harness so much that it thinks the
784 subtest 9 failed.
785
786 =head2 Long Doubles Still Don't Work In Solaris
787
788 The experimental long double support is still very much so in Solaris.
789 (Other platforms like Linux and Tru64 are beginning to solidify in
790 this area.)
791
792 =head2 Linux With Sfio Fails op/misc Test 48
793
794 No known fix.
795
796 =head2 Storable tests fail in some platforms
797
798 If any Storable tests fail the use of Storable is not advisable.
799
800 =over 4
801
802 =item *
803
804 Many Storable tests fail on AIX configured with 64 bit integers.
805
806 So far unidentified problems break Storable in AIX if Perl is
807 configured to use 64 bit integers.  AIX in 32-bit mode works and
808 other 64-bit platforms work with Storable.
809
810 =item *
811
812 DOS DJGPP may hang when testing Storable.
813
814 =item *
815
816 st-06compat fails in UNICOS and UNICOS/mk.
817
818 This means that you cannot read old (pre-Storable-0.7) Storable images
819 made in other platforms.
820
821 =item *
822
823 st-store.t and st-retrieve may fail with Compaq C 6.2 on OpenVMS Alpha 7.2.
824
825 =head2 Threads Are Still Experimental
826
827 Multithreading is still an experimental feature.  Some platforms
828 emit the following message for lib/thr5005
829
830     #
831     # This is a KNOWN FAILURE, and one of the reasons why threading
832     # is still an experimental feature.  It is here to stop people
833     # from deploying threads in production. ;-)
834     #
835  
836 and another known warning is
837
838    pragma/overload......Unbalanced saves: 3 more saves than restores
839    panic: magic_mutexfree during global destruction.
840    ok
841    lib/selfloader.......Unbalanced saves: 3 more saves than restores
842    panic: magic_mutexfree during global destruction.
843    ok
844    lib/st-dclone........Unbalanced saves: 3 more saves than restores
845    panic: magic_mutexfree during global destruction.
846    ok
847
848 =head2 The Compiler Suite Is Still Experimental
849
850 The compiler suite is slowly getting better but is nowhere near yet.
851 The backend part that has seen perhaps the most progress is the
852 bytecode compiler.
853
854 =back
855
856 =head1 Reporting Bugs
857
858 If you find what you think is a bug, you might check the articles
859 recently posted to the comp.lang.perl.misc newsgroup and the perl
860 bug database at http://bugs.perl.org.  There may also be
861 information at http://www.perl.com/perl/, the Perl Home Page.
862
863 If you believe you have an unreported bug, please run the B<perlbug>
864 program included with your release.  Be sure to trim your bug down
865 to a tiny but sufficient test case.  Your bug report, along with the
866 output of C<perl -V>, will be sent off to perlbug@perl.org to be
867 analysed by the Perl porting team.
868
869 =head1 SEE ALSO
870
871 The F<Changes> file for exhaustive details on what changed.
872
873 The F<INSTALL> file for how to build Perl.
874
875 The F<README> file for general stuff.
876
877 The F<Artistic> and F<Copying> files for copyright information.
878
879 =head1 HISTORY
880
881 Written by Jarkko Hietaniemi <F<jhi@iki.fi>>, with many contributions
882 from The Perl Porters and Perl Users submitting feedback and patches.
883
884 Send omissions or corrections to <F<perlbug@perl.org>>.
885
886 =cut