This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
5.30 utf8_to_uvchr_buf still has wrong retval
[perl5.git] / pod / perl5299delta.pod
CommitLineData
ab6f2e91
ZE
1=encoding utf8
2
3=head1 NAME
4
5perl5299delta - what is new for perl v5.29.9
6
7=head1 DESCRIPTION
8
9This document describes differences between the 5.29.8 release and the 5.29.9
10release.
11
12If you are upgrading from an earlier release such as 5.29.7, first read
13L<perl5298delta>, which describes differences between 5.29.7 and 5.29.8.
14
15=head1 Core Enhancements
16
17=head2 Wildcards in Unicode property value specifications are now
18partially supported
19
20You can now do something like this in a regular expression pattern
21
22 qr! \p{nv= /(?x) \A [0-5] \z / }!
23
24which matches all Unicode code points which have numeric value is
25between 0 and 5 inclusive.
26
27This marks another step in implementing the regular expression features
28the Unicode Consortium suggests.
29
30Most properties are supported, with the remainder planned for 5.32.
31Details are in L<perlunicode/Wildcards in Property Values>.
32
33=head2 qr'\N{name}' is now supported
34
35Previously it was an error to evaluate a named character C<\N{...}>
36within a single quoted regular expression pattern (whose evaluation is
37deferred from the normal place). This restriction is now removed.
38
39=head2 Unicode 12.0 is supported
40
41For details, see L<https://www.unicode.org/versions/Unicode12.0.0/>.
42
43Because of a change in Unicode release cycles, Perl jumps from Unicode
4410.0 in Perl 5.28 to Unicode 12.0 in Perl 5.30.
45
46=head2 It is now possible to compile perl to always use thread-safe
47locale operations.
48
49Previously, these calls were only used when the perl was compiled to be
50multi-threaded. To always enable them, add
51
52 -Accflags='-DUSE_THREAD_SAFE_LOCALE'
53
54to your F<Configure> flags.
55
5e6a22d7 56=head2 Limited variable length lookbehind in regular expression pattern matching
ab6f2e91
ZE
57is now experimentally supported
58
f6f85064 59Using a lookbehind assertion (like C<(?<=foo?)> or C<(?<!ba{1,9}r)> previously
ab6f2e91
ZE
60would generate an error and refuse to compile. Now it compiles (if the
61maximum lookbehind is at most 255 characters), but raises a warning in
62the new C<experimental::vlb> warnings category. This is to caution you
63that the precise behavior is subject to change based on feedback from
64use in the field.
65
66See L<perlre/(?<=pattern)> and L<perlre/(?<!pattern)>.
67
68=head1 Incompatible Changes
69
70=head2 C<pack()> no longer can return malformed UTF-8
71
72It croaks if it would otherwise return a UTF-8 string that contains
73malformed UTF-8. This protects agains potential security threats. This
74is considered a bug fix as well ([perl #131642]).
75
76=head2 Any set of digits in the Common script are legal in a script run
77of another script
78
79There are several sets of digits in the Common script. C<[0-9]> is the
80most familiar. But there are also C<[\x{FF10}-\x{FF19}]> (FULLWIDTH
81DIGIT ZERO - FULLWIDTH DIGIT NINE), and several sets for use in
82mathematical notation, such as the MATHEMATICAL DOUBLE-STRUCK DIGITs.
83Any of these sets should be able to appear in script runs of, say,
84Greek. But the design of 5.30 overlooked all but the ASCII digits
85C<[0-9]>, so the design was flawed. This has been fixed, so is both a
86bug fix and an incompatibility. [perl #133547]
87
88All digits in a run still have to come from the same set of ten digits.
89
90=head1 Modules and Pragmata
91
92=head2 Updated Modules and Pragmata
93
94=over 4
95
96=item *
97
98L<Devel::PPPort> has been upgraded from version 3.44 to 3.45.
99
100=item *
101
102L<Encode> has been upgraded from version 3.00 to 3.01.
103
104=item *
105
106L<ExtUtils::Manifest> has been upgraded from version 1.71 to 1.72.
107
108=item *
109
110L<JSON::PP> has been upgraded from version 4.00 to 4.02.
111
112=item *
113
114L<Module::CoreList> has been upgraded from version 5.20190220 to 5.20190320.
115
116=item *
117
118L<perl5db.pl> has been upgraded from version 1.54 to 1.55.
119
120Debugging threaded code no longer deadlocks in C<DB::sub> nor
121C<DB::lsub>.
122
123=item *
124
125L<PerlIO::encoding> has been upgraded from version 0.26 to 0.27.
126
127Warnings enabled by setting the C<WARN_ON_ERR> flag in
128C<$PerlIO::encoding::fallback> are now only produced if warnings are
129enabled with C<use warnings "utf8";> or setting C<$^W>.
130
131=item *
132
133L<threads::shared> has been upgraded from version 1.59 to 1.60.
134
135Added support for extra tracing of locking, this requires a
136C<-DDEBUGGING> and extra compilation flags.
137
138=item *
139
140L<utf8> has been upgraded from version 1.21 to 1.22.
141
142=item *
143
144L<warnings> has been upgraded from version 1.43 to 1.44.
145
455565b9
JK
146=item *
147
148L<ExtUtils::CBuilder> has been upgraded from version 0.280230 to 0.280231.
149
ab6f2e91
ZE
150=back
151
152=head1 Diagnostics
153
154The following additions or changes have been made to diagnostic output,
155including warnings and fatal error messages. For the complete list of
156diagnostic messages, see L<perldiag>.
157
158=head2 Changes to Existing Diagnostics
159
160=over 4
161
162=item *
163
164Specifying C<\o{}> without anything between the braces now yields the
165fatal error message "Empty \o{}". Previously it was "Number with no
166digits". This means the same wording is used for this kind of error as
167with similar constructs such as C<\p{}>.
168
169=item *
170
171Within the scope of the experimental feature C<use re 'strict'>,
172specifying C<\x{}> without anything between the braces now yields the
173fatal error message "Empty \x{}". Previously it was "Number with no
174digits". This means the same wording is used for this kind of error as
175with similar constructs such as C<\p{}>. It is legal, though not wise
176to have an empty C<\x> outside of C<re 'strict'>; it silently generates
177a NUL character.
178
179=back
180
181=head1 Internal Changes
182
183=over 4
184
185=item *
186
187Added C<newSVsv_nomg()> to copy a SV without processing get magic on
188the source. [perl #132964]
189
190=back
191
192=head1 Selected Bug Fixes
193
194=over 4
195
196=item *
197
198C<pack()> no longer can return malformed UTF-8. It croaks if it would
199otherwise return a UTF-8 string that contains malformed UTF-8. This
200protects agains potential security threats. [perl #131642]
201
202=item *
203
204See L</Any set of digits in the Common script are legal in a script run
205of another script>.
206
207=back
208
209=head1 Acknowledgements
210
211Perl 5.29.9 represents approximately 4 weeks of development since Perl
2125.29.8 and contains approximately 47,000 lines of changes across 210 files
213from 11 authors.
214
215Excluding auto-generated files, documentation and release tools, there were
216approximately 38,000 lines of changes to 71 .pm, .t, .c and .h files.
217
218Perl continues to flourish into its fourth decade thanks to a vibrant
219community of users and developers. The following people are known to have
220contributed the improvements that became Perl 5.29.9:
221
222Chris 'BinGOs' Williams, Craig A. Berry, Dagfinn Ilmari Mannsåker, Dan
223Kogai, David Mitchell, Karen Etheridge, Karl Williamson, Nicolas R., Pali,
224Tony Cook, Unicode Consortium.
225
226The list above is almost certainly incomplete as it is automatically
227generated from version control history. In particular, it does not include
228the names of the (very much appreciated) contributors who reported issues to
229the Perl bug tracker.
230
231Many of the changes included in this version originated in the CPAN modules
232included in Perl's core. We're grateful to the entire CPAN community for
233helping Perl to flourish.
234
235For a more complete list of all of Perl's historical contributors, please
236see the F<AUTHORS> file in the Perl source distribution.
237
238=head1 Reporting Bugs
239
240If you find what you think is a bug, you might check the perl bug database
241at L<https://rt.perl.org/>. There may also be information at
242L<http://www.perl.org/>, the Perl Home Page.
243
244If you believe you have an unreported bug, please run the L<perlbug> program
245included with your release. Be sure to trim your bug down to a tiny but
246sufficient test case. Your bug report, along with the output of C<perl -V>,
247will be sent off to perlbug@perl.org to be analysed by the Perl porting team.
248
249If the bug you are reporting has security implications which make it
250inappropriate to send to a publicly archived mailing list, then see
251L<perlsec/SECURITY VULNERABILITY CONTACT INFORMATION>
252for details of how to report the issue.
253
254=head1 Give Thanks
255
256If you wish to thank the Perl 5 Porters for the work we had done in Perl 5,
257you can do so by running the C<perlthanks> program:
258
259 perlthanks
260
261This will send an email to the Perl 5 Porters list with your show of thanks.
262
263=head1 SEE ALSO
264
265The F<Changes> file for an explanation of how to view exhaustive details on
266what changed.
267
268The F<INSTALL> file for how to build Perl.
269
270The F<README> file for general stuff.
271
272The F<Artistic> and F<Copying> files for copyright information.
273
274=cut