3 perldelta - what is new for perl v5.9.4
7 This document describes differences between the 5.9.3 and the 5.9.4
8 developement releases. See L<perl590delta>, L<perl591delta>, L<perl592delta>
9 and L<perl593delta> for the differences between 5.8.0 and 5.9.3.
11 =head1 Incompatible Changes
15 A bareword argument to chdir() is now recognized as a file handle.
16 Earlier releases interpreted the bareword as a directory name.
18 =head2 Handling of pmc files
20 And old feature of perl is that before C<require> or C<use> look for a
21 file with a F<.pm> extension, they will first look for a similar filename
22 with a F<.pmc> extension. If this file is found, it will be loaded in
23 place of any potentially existing file ending in a F<.pm> extension.
25 Previously, F<.pmc> files were loaded only if more recent than the
26 matching F<.pm> file. Starting with 5.9.4, they'll be always loaded if
27 they exist. (This trick is used by Pugs.)
29 =head2 @- and @+ in patterns
31 The special arrays C<@-> and C<@+> are no longer interpolated in regular
34 =head2 $AUTOLOAD can now be tainted
36 If you call a subroutine by a tainted name, and if it defers to an
37 AUTOLOAD function, then $AUTOLOAD will be (correctly) tainted.
39 =head1 Core Enhancements
41 =head2 state() variables
43 A new class of variables has been introduced. State variables are similar
44 to C<my> variables, but are declared with the C<state> keyword in place of
45 C<my>. They're visible only in their lexical scope, but their value in
46 persistent: unlike C<my> variables, they're not undefined at scope entry,
47 and retain their previous value.
49 To use state variables, one needs to enable them by using
53 or by using the C<-E> command-line switch in one-liners.
55 See L<perlsub/"Persistent variables via state()">.
57 =head2 UNIVERSAL:DOES()
59 The C<UNIVERSAL> class has a new method, C<DOES()>. It has been added to
60 solve semantic problems with the C<isa()> method. C<isa()> checks for
61 inheritance, while C<DOES()> has been designed to be overriden when
62 module authors use other types of relations between classes (in addition
65 See L<< UNIVERSAL/"$obj->DOES( ROLE )" >>.
67 =head1 Modules and Pragmata
69 C<encoding::warnings> is now a lexical pragma. (Although on older perls,
70 which don't have support for lexical pragmas, it keeps its global
75 =head2 New Core Modules
81 C<Module::Build> has been added. It's an alternative to
82 C<ExtUtils::MakeMaker> to build and install perl modules.
86 C<Module::Load> has been added. It's used to load indistinctively modules
91 C<Hash::Util::FieldHash> has been added. This module provides support for
92 I<field hashes>: hashes that maintain an association of a reference with a
93 value, in a thread-safe garbage-collected way.
97 C<Win32API::File> has been added (for Windows builds). This module
98 provides low-level access to Win32 system API calls for files/dirs.
102 =head1 Utility Changes
106 C<config_data> is a new utility that comes with C<Module::Build>. It
107 provides a command-line interface to the configuration of Perl modules
108 that use Module::Build's framework of configurability (that is,
109 C<*::ConfigData> modules, that contain local configuration information for
110 their parent modules.)
114 =head2 New manpage, perlpragma
116 The L<perlpragma> manpage documents how to write one's own lexical
117 pragmas in pure Perl.
119 =head2 New manpage, perlreguts
121 The L<perlreguts> manpage, due to Yves Orton, describes internals of the
122 Perl regular expression engine.
124 =head2 New manpage, perlunitut
126 The L<perlunitut> manpage is an tutorial for programming with Unicode and
127 string encodings in Perl, due to Juerd Waalboer.
129 =head1 Performance Enhancements
133 Regular expressions (Yves)
135 =head1 Installation and Configuration Improvements
139 Many improvements have been made towards making Perl work correctly on
142 Perl has been reported to work on DragonFlyBSD.
144 =head2 Compilation improvements
146 All F<ppport.h> files in the XS modules bundled with perl are now
147 autogenerated at build time.
151 The configuration process now detects whether strlcat() and strlcpy() are
152 available. When they are not available, perl's own version is used (from
153 Russ Allbery's public domain implementation). Various places in the perl
154 interpreter now uses them.
156 =head1 Selected Bug Fixes
158 =head2 PERL5SHELL and tainting
160 On Windows, PERL5SHELL is now checked for taintedness.
162 =head2 Using *FILE{IO}
164 C<stat()> and C<-X> filetests now treat *FILE{IO} filehandles like *FILE
167 =head1 New or Changed Diagnostics
169 =head1 Changed Internals
171 A new file, F<mathoms.c>, contains functions that aren't used anymore in
172 the perl core, but that remain around because modules out there might
173 still use them. They come from a factorization effort: for example, many
174 PP functions are now shared for several ops.
176 =head1 Known Problems
178 One warning test (number 263 in F<lib/warnings.t>) fails under UTF-8
181 Bytecode tests fails under several platforms. Support for byteloader and
182 compiler is considered to be removed before the 5.10.0 release.
184 =head1 Reporting Bugs
186 If you find what you think is a bug, you might check the articles
187 recently posted to the comp.lang.perl.misc newsgroup and the perl
188 bug database at http://bugs.perl.org/ . There may also be
189 information at http://www.perl.org/ , the Perl Home Page.
191 If you believe you have an unreported bug, please run the B<perlbug>
192 program included with your release. Be sure to trim your bug down
193 to a tiny but sufficient test case. Your bug report, along with the
194 output of C<perl -V>, will be sent off to perlbug@perl.org to be
195 analysed by the Perl porting team.
199 The F<Changes> file for exhaustive details on what changed.
201 The F<INSTALL> file for how to build Perl.
203 The F<README> file for general stuff.
205 The F<Artistic> and F<Copying> files for copyright information.