This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
additional tests for package block syntax
[perl5.git] / pod / perl5112delta.pod
CommitLineData
d5114285
NC
1=head1 NAME
2
e3d66814 3perl5112delta - what is new for perl v5.11.2
d5114285
NC
4
5=head1 DESCRIPTION
6
70c171b5
LB
7This document describes differences between the 5.11.1 release and the
85.11.2 release.
d5114285 9
d5114285
NC
10=head1 Core Enhancements
11
97352077
RGS
12=head2 qr overloading
13
70c171b5
LB
14It is now possible to overload the C<qr//> operator, that is,
15conversion to regexp, like it was already possible to overload
16conversion to boolean, string or number of objects. It is invoked when
17an object appears on the right hand side of the C<=~> operator, or when
18it is interpolated into a regexp. See L<overload>.
97352077 19
88e1f1a2
JV
20=head2 Pluggable keywords
21
70c171b5
LB
22Extension modules can now cleanly hook into the Perl parser to define
23new kinds of keyword-headed expression and compound statement. The
24syntax following the keyword is defined entirely by the extension. This
25allow a completely non-Perl sublanguage to be parsed inline, with the
26right ops cleanly generated. This feature is currently considered
27experimental.
88e1f1a2 28
70c171b5
LB
29See L<perlapi/PL_keyword_plugin> for the mechanism. The Perl core
30source distribution also includes a new module
31L<XS::APItest::KeywordRPN>, which implements reverse Polish notation
32arithmetic via pluggable keywords. This module is mainly used for test
33purposes, and is not normally installed, but also serves as an example
34of how to use the new mechanism.
88e1f1a2 35
580561a3
Z
36=head2 APIs for more internals
37
38The lowest layers of the lexer and parts of the pad system now have C
c54f4355
LB
39APIs available to XS extensions. These are necessary to support proper
40use of pluggable keywords, but have other uses too. The new APIs are
70c171b5
LB
41experimental, and only cover a small proportion of what would be
42necessary to take full advantage of the core's facilities in these
43areas. It is intended that the Perl 5.13 development cycle will see the
44addition of a full range of clean, supported interfaces.
580561a3 45
f7461760
Z
46=head2 Overridable function lookup
47
70c171b5
LB
48Where an extension module hooks the creation of rv2cv ops to modify the
49subroutine lookup process, this now works correctly for bareword
c54f4355
LB
50subroutine calls. This means that prototypes on subroutines referenced
51this way will be processed correctly. (Previously bareword subroutine
f7461760
Z
52names were initially looked up, for parsing purposes, by an unhookable
53mechanism, so extensions could only properly influence subroutine names
54that appeared with an C<&> sigil.)
55
d5114285
NC
56=head1 Modules and Pragmata
57
d5114285
NC
58=head2 New Modules and Pragmata
59
60=over 4
61
1fc7262d 62=item C<legacy>
d5114285 63
1fc7262d
LB
64Preserves legacy behaviors or enable new non-default behaviors.
65Currently the only behaviour concerns semantics for the 128 characters
66on ASCII systems that have the 8th bit set.
d5114285
NC
67
68=back
69
70=head2 Pragmata Changes
71
72=over 4
73
1fc7262d 74=item C<diagnostics>
d5114285 75
1fc7262d
LB
76Supports %.0f formatting internally.
77
78=item C<overload>
79
80Allow overloading of 'qr'.
d5114285
NC
81
82=back
83
84=head2 Updated Modules
85
86=over 4
87
1fc7262d 88=item C<B::Concise>
d5114285 89
70c171b5
LB
90Optimize reversing an array in-place, avoid using defined %hash in core
91code and tests.
d44d5874 92
1fc7262d
LB
93=item C<B::Deparse>
94
d44d5874
LB
95Teach B::Deparse about in-place reverse.
96
1fc7262d
LB
97=item C<Carp>
98
d44d5874
LB
99Refine Carp caller() fix and add tests.
100
1fc7262d
LB
101=item C<Compress::Zlib>
102
d44d5874
LB
103Updated to 2.022.
104
1fc7262d
LB
105=item C<CPANPLUS>
106
d44d5874 107Updated to 0.89_09.
1fc7262d
LB
108
109=item C<Encode>
110
d44d5874
LB
111Updated to 2.38.
112
1fc7262d
LB
113=item C<ExtUtils::CBuilder>
114
d44d5874
LB
115Updated to 0.27.
116
1fc7262d
LB
117=item C<Env>
118
d44d5874 119Add EXISTS and DELETE methods to Env.pm.
1fc7262d
LB
120
121=item C<File::Fetch>
122
d44d5874
LB
123Updated to 0.22.
124
1fc7262d
LB
125=item C<I8N::Langinfo>
126
d44d5874
LB
127Correctly document export of I18N::Langinfo.
128
1fc7262d
LB
129=item C<I8N::LangTags>
130
70c171b5
LB
131In I18N::LangTags::Detect, avoid using defined @array and defined
132%hash.
d44d5874 133
1fc7262d
LB
134=item C<IO::Compress>
135
d44d5874
LB
136Updated to 2.022.
137
1fc7262d
LB
138=item C<IPC::Cmd>
139
d44d5874
LB
140Updated to 0.54.
141
1fc7262d
LB
142=item C<List::Util>
143
d44d5874
LB
144Updated to 1.22.
145
1fc7262d
LB
146=item C<Locale::Maketext>
147
d44d5874
LB
148In Locale::Maketext, avoid using defined @array and defined %hash.
149Convert the odd Locale::Maketext test out from Test to Test::More.
150
1fc7262d
LB
151=item C<Module::Build>
152
72343ccb
LB
153Updated to 0.35_08.
154
1fc7262d
LB
155=item C<Module::CoreList>
156
d44d5874 157Implemented is_deprecated().
1fc7262d
LB
158
159=item C<Pod::Simple>
160
d44d5874
LB
161Updated to 3.10.
162
1fc7262d
LB
163=item C<Scalar::Util>
164
d44d5874
LB
165Updated to 1.22.
166
1fc7262d
LB
167=item C<Switch>
168
d44d5874 169Updated to 2.16.
d5114285
NC
170
171=back
172
173=head1 Utility Changes
174
d5114285
NC
175=over 4
176
72343ccb 177=item F<a2p>
d5114285 178
70c171b5
LB
179Fixed bugs with the match() operator in list context, remove mention of
180$[.
d5114285
NC
181
182=back
183
d5114285
NC
184=head1 Performance Enhancements
185
d5114285
NC
186=over 4
187
188=item *
189
70c171b5
LB
190Reversing an array to itself (as in C<@a = reverse @a>) in void context
191now happens in-place and is several orders of magnitude faster than it
192used to be. It will also preserve non-existent elements whenever
193possible, i.e. for non magical arrays or tied arrays with C<EXISTS> and
194C<DELETE> methods.
d5114285
NC
195
196=back
197
d5114285
NC
198=head1 New or Changed Diagnostics
199
72343ccb 200Several new diagnostics, see L<perldiag> for details.
d5114285
NC
201
202=over 4
203
72343ccb 204=item C<Bad plugin affecting keyword '%s'>
d5114285 205
72343ccb
LB
206=item C<gmtime(%.0f) too large>
207
208=item C<Lexing code attempted to stuff non-Latin-1 character into Latin-1 input>
209
210=item C<Lexing code internal error (%s)>
211
212=item C<localtime(%.0f) too large>
213
214=item C<Overloaded dereference did not return a reference>
215
216=item C<Overloaded qr did not return a REGEXP>
217
218=item C<Perl_pmflag() is deprecated, and will be removed from the XS API>
219
220=back
221
222One diagnostic has been removed:
223
224=over 4
225
226=item C<Runaway format>
d5114285
NC
227
228=back
229
230=head1 Changed Internals
231
d5114285
NC
232=over 4
233
234=item *
235
70c171b5
LB
236C<Perl_pmflag> has been removed from the public API. Calling it now
237generates a deprecation warning, and it will be removed in a future
238release. Although listed as part of the API, it was never documented,
239and only ever used in F<toke.c>, and prior to 5.10, F<regcomp.c>. In
240core, it has been replaced by a static function.
d5114285
NC
241
242=back
243
244=head1 New Tests
245
d5114285
NC
246=over 4
247
72343ccb 248=item F<t/op/while_readdir.t>
d5114285 249
72343ccb 250Test that a bare readdir in while loop sets $_.
d5114285
NC
251
252=back
253
254=head1 Known Problems
255
d5114285
NC
256=over 4
257
72343ccb 258=item Known test failures on VMS
d5114285 259
70c171b5
LB
260Perl 5.11.2 fails a small set of core and CPAN tests as of this
261release. With luck, that'll be sorted out for 5.11.3.
d5114285
NC
262
263=back
264
265=head1 Deprecations
266
d5114285
NC
267The following items are now deprecated.
268
72343ccb 269=head2 Use of C<:=> to mean an empty attribute list is now deprecated.
d5114285 270
70c171b5
LB
271An accident of Perl's parser meant that these constructions were all
272equivalent:
d5114285 273
72343ccb
LB
274 my $pi := 4;
275 my $pi : = 4;
276 my $pi : = 4;
d5114285 277
70c171b5
LB
278with the C<:> being treated as the start of an attribute list, which
279ends before the C<=>. As whitespace is not significant here, all are
280parsed as an empty attribute list, hence all the above are equivalent
281to, and better written as
72343ccb
LB
282
283 my $pi = 4;
284
285because no attribute processing is done for an empty list.
286
70c171b5
LB
287As is, this meant that C<:=> cannot be used as a new token, without
288silently changing the meaning of existing code. Hence that particular
289form is now deprecated, and will become a syntax error. If it is
290absolutely necessary to have empty attribute lists (for example,
291because of a code generator) then avoid the warning by adding a space
292before the C<=>.
d5114285 293
d5114285
NC
294=head1 Acknowledgements
295
70c171b5 296Perl 5.11.2 represents approximately 3 weeks development since Perl
bf5a8d4f 2975.11.1 and contains 29,992 lines of changes across 458 files from 38
70c171b5 298authors and committers:
72343ccb 299
70c171b5
LB
300Abhijit Menon-Sen, Abigail, Ben Morrow, Bo Borgerson, Brad Gilbert,
301Bram, Chris Williams, Craig A. Berry, Daniel Frederick Crisman, Dave
302Rolsky, David E. Wheeler, David Golden, Eric Brine, Father
303Chrysostomos, Frank Wiegand, Gerard Goossen, Gisle Aas, Graham Barr,
304Harmen, H.Merijn Brand, Jan Dubois, Jerry D. Hedden, Jesse Vincent,
305Karl Williamson, Kevin Ryde, Leon Brocard, Nicholas Clark, Paul
306Marquess, Philippe Bruhat, Rafael Garcia-Suarez, Sisyphus, Steffen
307Mueller, Steve Hay, Steve Peters, Vincent Pit, Yuval Kogman, Yves
308Orton, and Zefram.
d5114285 309
72343ccb
LB
310Many of the changes included in this version originated in the CPAN
311modules included in Perl's core. We're grateful to the entire CPAN
312community for helping Perl to flourish.
d5114285
NC
313
314=head1 Reporting Bugs
315
316If you find what you think is a bug, you might check the articles
70c171b5
LB
317recently posted to the comp.lang.perl.misc newsgroup and the perl bug
318database at http://rt.perl.org/perlbug/ . There may also be information
319at http://www.perl.org/ , the Perl Home Page.
d5114285
NC
320
321If you believe you have an unreported bug, please run the B<perlbug>
70c171b5
LB
322program included with your release. Be sure to trim your bug down to a
323tiny but sufficient test case. Your bug report, along with the output
324of C<perl -V>, will be sent off to perlbug@perl.org to be analysed by
325the Perl porting team.
d5114285
NC
326
327If the bug you are reporting has security implications, which make it
70c171b5
LB
328inappropriate to send to a publicly archived mailing list, then please
329send it to perl5-security-report@perl.org. This points to a closed
330subscription unarchived mailing list, which includes all the core
331committers, who be able to help assess the impact of issues, figure out
332a resolution, and help co-ordinate the release of patches to mitigate
333or fix the problem across all platforms on which Perl is supported.
334Please only use this address for security issues in the Perl core, not
335for modules independently distributed on CPAN.
d5114285
NC
336
337=head1 SEE ALSO
338
70c171b5
LB
339The F<Changes> file for an explanation of how to view exhaustive
340details on what changed.
d5114285
NC
341
342The F<INSTALL> file for how to build Perl.
343
344The F<README> file for general stuff.
345
346The F<Artistic> and F<Copying> files for copyright information.
347
348=cut