This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Fix up \cX for 5.14
[perl5.git] / pod / perl5123delta.pod
CommitLineData
f1d4662f
RS
1=encoding utf8
2
3=head1 NAME
4
5perldelta - what is new for perl v5.12.3
6
7=head1 DESCRIPTION
8
9This document describes differences between the 5.12.2 release and
10the 5.12.3 release.
11
12If you are upgrading from an earlier release such as 5.12.1, first read
13L<perl5122delta>, which describes differences between 5.12.1 and
145.12.2. The major changes made in 5.12.0 are described in L<perl5120delta>.
15
16=head1 Incompatible Changes
17
18 There are no changes intentionally incompatible with 5.12.2. If any
19 exist, they are bugs and reports are welcome.
20
21=head1 Core Enhancements
22
23=head2 C<keys>, C<values> work on arrays
24
25You can now use the C<keys>, C<values>, C<each> builtin functions on arrays
26(previously you could only use them on hashes). See L<perlfunc> for details.
27This is actually a change introduced in perl 5.12.0, but it was missed from
28that release's perldelta.
29
30=head1 Bug Fixes
31
32"no VERSION" will now correctly deparse with B::Deparse, as will certain
33constant expressions.
34
35Module::Build should be more reliably pass its tests under cygwin.
36
37lvalue sub return values are now COW.
38
39=head1 Platform Specific Notes
40
41=over 4
42
43=item Solaris
44
45A separate DTrace is now build for miniperl, which means that perl can be
46compiled with -Dusedtrace on Solaris again.
47
48=item VMS
49
50A number of regressions on VMS have been fixed. In addition to minor cleanup
51of questionable expressions in F<vms.c>, file permissions should no longer be
52garbled by the PerlIO layer, and spurious record boundaries should no longer be
53introduced by the PerlIO layer during output.
54
55For more details and discussion on the latter, see:
56
57 http://www.nntp.perl.org/group/perl.vmsperl/2010/11/msg15419.html
58
59=item VOS
60
61A few very small changes were made to the build process on VOS to better
62support the platform. Longer-than-32-character filenames are now supported on
63OpenVOS, and build properly without IPv6 support.
64
65=back
66
67=head1 Acknowledgements
68
69Perl 5.12.3 represents approximately four months of development since
70Perl 5.12.2 and contains approximately 2500 lines of changes across
7154 files from 16 authors.
72
73Perl continues to flourish into its third decade thanks to a vibrant
74community of users and developers. The following people are known to
75have contributed the improvements that became Perl 5.12.3:
76
77Craig A. Berry, David Golden, David Leadbeater, Father Chrysostomos, Florian
78Ragwitz, Jesse Vincent, Karl Williamson, Nick Johnston, Nicolas Kaiser, Paul
79Green, Rafael Garcia-Suarez, Rainer Tammer, Ricardo Signes, Steffen Mueller,
80Zsbán Ambrus, Ævar Arnfjörð Bjarmason
81
82=head1 Reporting Bugs
83
84If you find what you think is a bug, you might check the articles
85recently posted to the comp.lang.perl.misc newsgroup and the perl
86bug database at http://rt.perl.org/perlbug/ . There may also be
87information at http://www.perl.org/ , the Perl Home Page.
88
89If you believe you have an unreported bug, please run the B<perlbug>
90program included with your release. Be sure to trim your bug down
91to a tiny but sufficient test case. Your bug report, along with the
92output of C<perl -V>, will be sent off to perlbug@perl.org to be
93analysed by the Perl porting team.
94
95If the bug you are reporting has security implications, which make it
96inappropriate to send to a publicly archived mailing list, then please send
97it to perl5-security-report@perl.org. This points to a closed subscription
98unarchived mailing list, which includes all the core committers, who be able
99to help assess the impact of issues, figure out a resolution, and help
100co-ordinate the release of patches to mitigate or fix the problem across all
101platforms on which Perl is supported. Please only use this address for
102security issues in the Perl core, not for modules independently
103distributed on CPAN.
104
105=head1 SEE ALSO
106
107The F<Changes> file for an explanation of how to view exhaustive details
108on what changed.
109
110The F<INSTALL> file for how to build Perl.
111
112The F<README> file for general stuff.
113
114The F<Artistic> and F<Copying> files for copyright information.
115
116=cut