The problem described in 20010514.031 still wasn't
[p5sagit/p5-mst-13.2.git] / pod / perl572delta.pod
CommitLineData
43d4bbc8 1=head1 NAME
2
3perl571delta - what's new for perl v5.7.2
4
5=head1 DESCRIPTION
6
7This document describes differences between the 5.7.1 release and the
85.7.2 release.
9
10(To view the differences between the 5.6.0 release and the 5.7.0
11release, see L<perl570delta>. To view the differences between the
125.7.0 release and the 5.7.1 release, see L<perl571delta>.)
13
14=head1 Security Vulnerability Closed
15
16(This change was already made in 5.7.0 but bears repeating here.)
17
18A security vulnerability affecting all Perl versions prior to 5.6.1
19was found in August 2000. The vulnerability does not affect default
20installations and as far as is known affects only the Linux platform.
21
22You should upgrade your Perl to 5.6.1 as soon as possible. Patches
23for earlier releases exist but they require full recompilation from
24the source code so 5.6.1 is your best choice.
25See http://www.cpan.org/src/5.0/sperl-2000-08-05/sperl-2000-08-05.txt
26for more information.
27
28=head1 Incompatible Changes
29
30=head1 Core Enhancements
31
32=head1 Modules and Pragmata
33
34=head2 New Modules
35
36=head2 Updated And Improved Modules and Pragmata
37
38=head1 Performance Enhancements
39
40=head1 Utility Changes
41
42=head1 New Documentation
43
44=head1 Installation and Configuration Improvements
45
46=head2 New Or Improved Platforms
47
48=head2 Generic Improvements
49
50=head1 Selected Bug Fixes
51
52=head2 Platform Specific Changes and Fixes
53
54=head1 New or Changed Diagnostics
55
56=head1 Changed Internals
57
58=head2 Regex pre-/post-compilation items matched up
59
60The regex compiler now maintains a structure that identifies nodes in
61the compiled bytecode with the corresponding syntactic features of the
62original regex expression. The information is attached to the new
63C<offsets> member of the C<struct regexp>. See L<perldebguts> for more
64complete information.
65
66=head1 New Tests
67
68=head1 Known Problems
69
70Note that unlike other sections in this document (which describe
71changes since 5.7.0) this section is cumulative containing known
72problems for all the 5.7 releases.
73
74=head2 AIX vac 5.0.0.0 May Produce Buggy Code For Perl
75
76The AIX C compiler vac version 5.0.0.0 may produce buggy code,
77resulting in few random tests failing, but when the failing tests
78are run by hand, they succeed. We suggest upgrading to at least
79vac version 5.0.1.0, that has been known to compile Perl correctly.
80"lslpp -L|grep vac.C" will tell you the vac version.
81
82=head2 lib/ftmp-security tests warn 'system possibly insecure'
83
84Don't panic. Read INSTALL 'make test' section instead.
85
86=head2 lib/io_multihomed Fails In LP64-Configured HP-UX
87
88The lib/io_multihomed test may hang in HP-UX if Perl has been
89configured to be 64-bit. Because other 64-bit platforms do not hang in
90this test, HP-UX is suspect. All other tests pass in 64-bit HP-UX. The
91test attempts to create and connect to "multihomed" sockets (sockets
92which have multiple IP addresses).
93
94=head2 Test lib/posix Subtest 9 Fails In LP64-Configured HP-UX
95
96If perl is configured with -Duse64bitall, the successful result of the
97subtest 10 of lib/posix may arrive before the successful result of the
98subtest 9, which confuses the test harness so much that it thinks the
99subtest 9 failed.
100
101=head2 lib/b test 19
102
103The test fails on various platforms (PA64 and IA64 are known), but the
104exact cause is still being investigated.
105
106=head2 Linux With Sfio Fails op/misc Test 48
107
108No known fix.
109
110=head2 sigaction test 13 in VMS
111
112The test is known to fail; whether it's because of VMS of because
113of faulty test is not known.
114
115=head2 sprintf tests 129 and 130
116
117The op/sprintf tests 129 and 130 are known to fail on some platforms.
118Examples include any platform using sfio, and Compaq/Tandem's NonStop-UX.
119The failing platforms do not comply with the ANSI C Standard, line
12019ff on page 134 of ANSI X3.159 1989 to be exact. (They produce
121something else than "1" and "-1" when formatting 0.6 and -0.6 using
122the printf format "%.0f", most often they produce "0" and "-0".)
123
124=head2 Failure of Thread tests
125
126The subtests 19 and 20 of lib/thr5005.t test are known to fail due to
127fundamental problems in the 5.005 threading implementation. These are
128not new failures--Perl 5.005_0x has the same bugs, but didn't have
129these tests. (Note that support for 5.005-style threading remains
130experimental.)
131
132=head2 Localising a Tied Variable Leaks Memory
133
134 use Tie::Hash;
135 tie my %tie_hash => 'Tie::StdHash';
136
137 ...
138
139 local($tie_hash{Foo}) = 1; # leaks
140
141Code like the above is known to leak memory every time the local()
142is executed.
143
144=head2 Self-tying of Arrays and Hashes Is Forbidden
145
146Self-tying of arrays and hashes is broken in rather deep and
147hard-to-fix ways. As a stop-gap measure to avoid people from getting
148frustrated at the mysterious results (core dumps, most often) it is
149for now forbidden (you will get a fatal error even from an attempt).
150
151=head2 Building Extensions Can Fail Because Of Largefiles
152
153Some extensions like mod_perl are known to have issues with
154`largefiles', a change brought by Perl 5.6.0 in which file offsets
155default to 64 bits wide, where supported. Modules may fail to compile
156at all or compile and work incorrectly. Currently there is no good
157solution for the problem, but Configure now provides appropriate
158non-largefile ccflags, ldflags, libswanted, and libs in the %Config
159hash (e.g., $Config{ccflags_nolargefiles}) so the extensions that are
160having problems can try configuring themselves without the
161largefileness. This is admittedly not a clean solution, and the
162solution may not even work at all. One potential failure is whether
163one can (or, if one can, whether it's a good idea) link together at
164all binaries with different ideas about file offsets, all this is
165platform-dependent.
166
167=head2 The Compiler Suite Is Still Experimental
168
169The compiler suite is slowly getting better but is nowhere near
170working order yet.
171
172=head1 Reporting Bugs
173
174If you find what you think is a bug, you might check the articles
175recently posted to the comp.lang.perl.misc newsgroup and the perl
176bug database at http://bugs.perl.org. There may also be
177information at http://www.perl.com/perl/, the Perl Home Page.
178
179If you believe you have an unreported bug, please run the B<perlbug>
180program included with your release. Be sure to trim your bug down
181to a tiny but sufficient test case. Your bug report, along with the
182output of C<perl -V>, will be sent off to perlbug@perl.org to be
183analysed by the Perl porting team.
184
185=head1 SEE ALSO
186
187The F<Changes> file for exhaustive details on what changed.
188
189The F<INSTALL> file for how to build Perl.
190
191The F<README> file for general stuff.
192
193The F<Artistic> and F<Copying> files for copyright information.
194
195=head1 HISTORY
196
197Written by Jarkko Hietaniemi <F<jhi@iki.fi>>, with many contributions
198from The Perl Porters and Perl Users submitting feedback and patches.
199
200Send omissions or corrections to <F<perlbug@perl.org>>.
201
202=cut