doc 77bac2
[p5sagit/p5-mst-13.2.git] / pod / perl5132delta.pod
1 =encoding utf8
2
3 =head1 NAME
4
5 perldelta - what is new for perl v5.13.2
6
7 =head1 DESCRIPTION
8
9 This document describes differences between the 5.13.2 release and
10 the 5.13.1 release.
11
12 If you are upgrading from an earlier release such as 5.10, first read
13 L<perl5120delta>, which describes differences between 5.10 and
14 5.12.
15
16 =head1 Notice
17
18 XXX Any important notices here
19
20 =head1 Incompatible Changes
21
22 =head2 localised tied scalars are tied again.
23
24 The change in behaviour in 5.13.1 of localising tied scalar values has
25 been reverted to the existing 5.12.0 and earlier behaviour (the change for
26 arrays and hashes remains).
27
28 =head1 Core Enhancements
29
30 XXX New core language features go here. Summarise user-visible core language
31 enhancements. Particularly prominent performance optimisations could go
32 here, but most should go in the L</Performance Enhancements> section.
33
34 =head2 Non-destructive substitution
35
36 The substitution operator now supports a C</r> option that
37 copies the input variable, carries out the substitution on
38 the copy and returns the result.  The original remains unmodified.
39
40   my $old = 'cat';
41   my $new = $old =~ s/cat/dog/r;
42   # $old is 'cat' and $new is 'dog'
43
44 This is particularly useful with C<map>.  See L<perlop> for more examples
45 (4f4d75, 000c65).
46
47 =head2 package block syntax
48
49 A package declaration can now contain a code block, in which case the
50 declaration is in scope only inside that block.  So C<package Foo { ... }>
51 is precisely equivalent to C<{ package Foo; ... }>.  It also works with
52 a version number in the declaration, as in C<package Foo 1.2 { ... }>.
53 See L<perlfunc> (434da3..36f77d, 702646).
54
55 =head1 New Platforms
56
57 XXX List any platforms that this version of perl compiles on, that previous
58 versions did not. These will either be enabled by new files in the F<hints/>
59 directories, or new subdirectories and F<README> files at the top level of the
60 source tree.
61
62 =head1 Modules and Pragmata
63
64 XXX All changes to installed files in F<cpan/>, F<dist/>, F<ext/> and F<lib/>
65 go here.  If Module::CoreList is updated, generate an initial draft of the
66 following sections using F<Porting/corelist-perldelta.pl>, which prints stub
67 entries to STDOUT.  Results can be pasted in place of the '=head2' entries
68 below.  A paragraph summary for important changes should then be added by hand.
69 In an ideal world, dual-life modules would have a F<Changes> file that could be
70 cribbed.
71
72 =head2 New Modules and Pragmata
73
74 =head2 Pragmata Changes
75
76 =head2 Updated Modules
77
78 =head2 Removed Modules and Pragmata
79
80 =head1 Utility Changes
81
82 XXX Changes to installed programs such as F<perlbug> and F<xsubpp> go
83 here. Most of these are built within the directories F<utils> and F<x2p>.
84
85 =over 4
86
87 =item F<XXX>
88
89 XXX
90
91 =back
92
93 =head1 New Documentation
94
95 XXX Changes which create B<new> files in F<pod/> go here.
96
97 =over 4
98
99 =item L<XXX>
100
101 XXX
102
103 =back
104
105 =head1 Changes to Existing Documentation
106
107 XXX Changes which significantly change existing files in F<pod/> go here.
108 Any changes to F<pod/perldiag.pod> should go in L</New or Changed Diagnostics>.
109
110 =head2 Replace wrong tr/// table in perlebcdic.pod
111
112 perlebcdic.pod contains a helpful table to use in tr/// to convert
113 between EBCDIC and Latin1/ASCII.  Unfortunately, the table was the
114 inverse of the one it describes, though the code that used the table
115 worked correctly for the specific example given.
116
117 The table has been changed to its inverse, and the sample code changed
118 to correspond, as this is easier for the person trying to follow the
119 instructions since deriving the old table is somewhat more complicated.
120
121 The table has also been changed to hex from octal, as that is more the norm
122 these days, and the recipes in the pod altered to print out leading
123 zeros to make all the values the same length, as the table that they can
124 generate has them.
125
126 =head1 Performance Enhancements
127
128 Only allocate entries for @_ on demand - this not only saves memory per
129 subroutine defined but should hopefully improve COW behaviour (77bac2).
130
131 Multiple small improvements to threads:
132
133 =over 4
134
135 =item *
136
137 Change the internal structured of thread->params from an SV (RV) to an AV
138 - so we now pass around and store the array directly, rather than creating,
139 holding and dereferencing a reference to it (78b7eff).
140
141 =item *
142
143 Change S_ithread_create() params from a single AV* to a pair of SV** pointers.
144 This saves creating, duplicating and freeing and AV, which is only ever used for
145 an internal calling convention (4cf5ea).
146
147 =item *
148
149 Remove redundant hv_exists() calls from ithread_create()'s spec parser (b1faab).
150
151 =item *
152
153 Skip unnecessary newAV() in ithread_create() (39f3f7).
154
155 =item *
156
157 Avoid duping pads created for recursion since there's no point pre-allocating
158 the same memory in the new thread (6de654).
159
160 =back
161
162 Eliminated xhv_fill from struct xpvhv: This saves 1 IV per hash and on some
163 systems will cause struct xpvhv to become cache aligned. To avoid this
164 memory saving causing a slowdown elsewhere, boolean use of HvFILL now
165 calls HvTOTALKEYS instead (which is equivalent) - so while the fill data when
166 actually required is now calculated on demand, the cases when this needs to
167 be done should be few and far between (f4431c .. fcd245).
168
169 =head1 Installation and Configuration Improvements
170
171 XXX Changes to F<Configure>, F<installperl>, F<installman>, and analogous tools
172 go here.
173
174 =head2 Configuration improvements
175
176 XXX
177
178 =head2 Compilation improvements
179
180 Fix CCINCDIR and CCLIBDIR for mingw64 cross compiler to correctly be under
181 $(CCHOME)\mingw\include and \lib rather than immediately below $(CCHOME).
182
183 This means the 'incpath', 'libpth', 'ldflags', 'lddlflags' and
184 'ldflags_nolargefiles' values in Config.pm and Config_heavy.pl are now
185 set correctly (23ae7f).
186
187 =head2 Platform Specific Changes
188
189 =over 4
190
191 =item XXX-some-platform
192
193 XXX
194
195 =back
196
197 =head1 Selected Bug Fixes
198
199 Timely cleanup of SVs that are cloned into a new thread but then discovered
200 to be orphaned (i.e. their owners are -not- cloned) (e42956)
201
202 Don't accidentally clone lexicals in scope within active stack frames in
203 the parent when creating a child thread (RT #73086) (05d04d).
204
205 Avoid loading feature.pm when 'no 5.13.2;' or similar is encountered (faee19).
206
207 Trap invalid use of SvIVX on SVt_REGEXP when assertions are on (e77da3)
208
209 Don't stamp on $DB::single, $DB::trace and $DB::signal if they already have
210 values when $^P is assigned to (RT #72422) (4c0f30).
211
212 =over 4
213
214 =item *
215
216 Overloading now works properly in conjunction with tied variables. What
217 formerly happened was that most ops checked their arguments for overloading
218 I<before> checking for magic, so for example an overloaded object returned
219 by a tied array access would usually be treated as not overloaded
220 (RT #57012) (6f1401, ed3b9b, 6a5f8c .. 24328f).
221
222 =back
223
224 =head1 New or Changed Diagnostics
225
226 XXX New or changed warnings emitted by the core's C<C> code go here.
227
228 =over 4
229
230 =item C<XXX>
231
232 XXX
233
234 =back
235
236 =head1 Changed Internals
237
238 XXX Changes which affect the interface available to C<XS> code go here.
239
240 =over 4
241
242 =item *
243
244 The C<find_rundefsvoffset> function has been deprecated. It appeared that
245 its design was insufficient to reliably get the lexical C<$_> at run-time.
246
247 Use the new C<find_rundefsv> function or the C<UNDERBAR> macro instead.
248 They directly return the right SV representing C<$_>, whether it's lexical
249 or dynamic.
250
251 =item *
252
253 The following new functions or macros have been added to the public API:
254 C<SvNV_nomg>,  C<sv_2nv_flags>, C<find_rundefsv>.
255
256 =item *
257
258 The C<UNDERBAR> macro now calls C<find_rundefsv>. C<dUNDERBAR> is now a
259 noop but should still be used to ensure past and future compatibility.
260
261 =back
262
263 =head1 New Tests
264
265 XXX Changes which create B<new> files in F<t/> go here. Changes to
266 existing files in F<t/> aren't worth summarising, although the bugs that
267 they represent may be.
268
269 =over 4
270
271 =item F<XXX>
272
273 XXX
274
275 =back
276
277 =head1 Known Problems
278
279 XXX Descriptions of platform agnostic bugs we know we can't fix go here. Any
280 tests that had to be C<TODO>ed for the release would be noted here, unless
281 they were specific to a particular platform (see below).
282
283 This is a list of some significant unfixed bugs, which are regressions
284 from either 5.XXX.XXX or 5.XXX.XXX.
285
286 =over 4
287
288 =item *
289
290 XXX
291
292 =back
293
294 =head1 Deprecations
295
296 XXX Add any new known deprecations here.
297
298 The following items are now deprecated.
299
300 =over 4
301
302 =item *
303
304 Omitting a space between a regex pattern or pattern modifiers and the following
305 word is deprecated.  For example, C<< m/foo/sand $bar >> will still be parsed
306 as C<< m/foo/s and $bar >> but will issue a warning.
307
308 =back
309
310 =head1 Platform Specific Notes
311
312 XXX Any changes specific to a particular platform. VMS and Win32 are the usual
313 stars here. It's probably best to group changes under the same section layout
314 as the main perldelta
315
316 =head1 Obituary
317
318 XXX If any significant core contributor has died, we've added a short obituary
319 here.
320
321 =head1 Acknowledgements
322
323 XXX The list of people to thank goes here.
324
325
326 =head1 Reporting Bugs
327
328 If you find what you think is a bug, you might check the articles
329 recently posted to the comp.lang.perl.misc newsgroup and the perl
330 bug database at http://rt.perl.org/perlbug/ .  There may also be
331 information at http://www.perl.org/ , the Perl Home Page.
332
333 If you believe you have an unreported bug, please run the B<perlbug>
334 program included with your release.  Be sure to trim your bug down
335 to a tiny but sufficient test case.  Your bug report, along with the
336 output of C<perl -V>, will be sent off to perlbug@perl.org to be
337 analysed by the Perl porting team.
338
339 If the bug you are reporting has security implications, which make it
340 inappropriate to send to a publicly archived mailing list, then please send
341 it to perl5-security-report@perl.org. This points to a closed subscription
342 unarchived mailing list, which includes all the core committers, who be able
343 to help assess the impact of issues, figure out a resolution, and help
344 co-ordinate the release of patches to mitigate or fix the problem across all
345 platforms on which Perl is supported. Please only use this address for
346 security issues in the Perl core, not for modules independently
347 distributed on CPAN.
348
349 =head1 SEE ALSO
350
351 The F<Changes> file for an explanation of how to view exhaustive details
352 on what changed.
353
354 The F<INSTALL> file for how to build Perl.
355
356 The F<README> file for general stuff.
357
358 The F<Artistic> and F<Copying> files for copyright information.
359
360 =cut