Skip to content
This repository was archived by the owner on Jun 1, 2023. It is now read-only.

Commit 1d6cbb6

Browse files
committed
add perl5263delta+perl5281delta releases
1 parent 135869d commit 1d6cbb6

File tree

14 files changed

+445
-14
lines changed

14 files changed

+445
-14
lines changed

MANIFEST

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5200,10 +5200,12 @@ pod/perl5261delta.pod Perl changes in version 5.26.1
52005200
pod/perl5262cdelta.pod cperl changes in version 5.26.2c
52015201
pod/perl5262delta.pod Perl changes in version 5.26.2
52025202
pod/perl5263cdelta.pod cperl changes in version 5.26.3c
5203+
pod/perl5263delta.pod Perl changes in version 5.26.3
52035204
pod/perl5264cdelta.pod cperl changes in version 5.26.4c
52045205
pod/perl5280cdelta.pod cperl changes in version 5.28.0c
52055206
pod/perl5280delta.pod Perl changes in version 5.28.0
52065207
pod/perl5281cdelta.pod cperl changes in version 5.28.1c
5208+
pod/perl5281delta.pod Perl changes in version 5.28.1
52075209
pod/perl5290cdelta.pod cperl changes in version 5.29.0c
52085210
pod/perl5290delta.pod Perl changes in version 5.29.0
52095211
pod/perl5291delta.pod Perl changes in version 5.29.1

Makefile.SH

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -599,7 +599,7 @@ perlmain_dep = $(perlmain_objs)
599599
esac
600600

601601
$spitshell >>$Makefile <<'!NO!SUBS!'
602-
perltoc_pod_prereqs = extra.pods pod/perl5263delta.pod pod/perl5265cdelta.pod pod/perlapi.pod pod/perlintern.pod pod/perlmodlib.pod pod/perluniprops.pod
602+
perltoc_pod_prereqs = extra.pods pod/perl5264delta.pod pod/perl5265cdelta.pod pod/perlapi.pod pod/perlintern.pod pod/perlmodlib.pod pod/perluniprops.pod
603603
604604
generated_pods = pod/perltoc.pod $(perltoc_pod_prereqs)
605605
generated_headers = uudmap.h bitcount.h mg_data.h
@@ -1216,7 +1216,7 @@ pod/perlintern.pod: $(MINIPERL_EXE) autodoc.pl embed.fnc
12161216
pod/perlmodlib.pod: $(MINIPERL_EXE) pod/perlmodlib.PL MANIFEST
12171217
$(MINIPERL) pod/perlmodlib.PL -q
12181218
1219-
pod/perl5263delta.pod: pod/perldelta.pod
1219+
pod/perl5264delta.pod: pod/perldelta.pod
12201220
$(RMS) $@
12211221
$(LNS) perldelta.pod $@
12221222

dist/Module-CoreList/lib/Module/CoreList.pm

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -359,6 +359,9 @@ our %released :const = (
359359
5.029002 => '2018-08-20',
360360
5.029003 => '2018-09-20',
361361
5.029004 => '2018-10-20',
362+
5.029005 => '2018-11-20',
363+
5.026003 => '2018-11-29',
364+
5.028001 => '2018-11-29',
362365
'5.026005c' => '2019-03-??',
363366
);
364367

@@ -18276,6 +18279,59 @@ our %delta :const = (
1827618279
removed => {
1827718280
}
1827818281
},
18282+
5.029005 => {
18283+
delta_from => 5.029004,
18284+
changed => {
18285+
'B::Op_private' => '5.029005',
18286+
'Config' => '5.029005',
18287+
'Cwd' => '3.76',
18288+
'Data::Dumper' => '2.173',
18289+
'Errno' => '1.30',
18290+
'File::Spec' => '3.76',
18291+
'File::Spec::AmigaOS' => '3.76',
18292+
'File::Spec::Cygwin' => '3.76',
18293+
'File::Spec::Epoc' => '3.76',
18294+
'File::Spec::Functions' => '3.76',
18295+
'File::Spec::Mac' => '3.76',
18296+
'File::Spec::OS2' => '3.76',
18297+
'File::Spec::Unix' => '3.76',
18298+
'File::Spec::VMS' => '3.76',
18299+
'File::Spec::Win32' => '3.76',
18300+
'GDBM_File' => '1.18',
18301+
'Module::CoreList' => '5.20181120',
18302+
'Module::CoreList::Utils'=> '5.20181120',
18303+
'NDBM_File' => '1.15',
18304+
'ODBM_File' => '1.16',
18305+
'SDBM_File' => '1.15',
18306+
're' => '0.37',
18307+
},
18308+
removed => {
18309+
}
18310+
},
18311+
5.026003 => {
18312+
delta_from => 5.026002,
18313+
changed => {
18314+
'Archive::Tar' => '2.24_01',
18315+
'B::Op_private' => '5.026003',
18316+
'Config' => '5.026003',
18317+
'Module::CoreList' => '5.20181129_26',
18318+
'Module::CoreList::TieHashDelta'=> '5.20181129_26',
18319+
'Module::CoreList::Utils'=> '5.20181129_26',
18320+
},
18321+
removed => {
18322+
}
18323+
},
18324+
5.028001 => {
18325+
delta_from => 5.028,
18326+
changed => {
18327+
'B::Op_private' => '5.028001',
18328+
'Config' => '5.028001',
18329+
'Module::CoreList' => '5.20181129_28',
18330+
'Module::CoreList::Utils'=> '5.20181129_28',
18331+
},
18332+
removed => {
18333+
}
18334+
},
1827918335
'5.026005c' => {
1828018336
delta_from => '5.026004c',
1828118337
changed => {

dist/Module-CoreList/lib/Module/CoreList/Utils.pm

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1591,6 +1591,27 @@ our %delta :const = (
15911591
changed => {},
15921592
removed => {}
15931593
},
1594+
5.029005 => {
1595+
delta_from => 5.029004,
1596+
changed => {
1597+
},
1598+
removed => {
1599+
}
1600+
},
1601+
5.026003 => {
1602+
delta_from => 5.026002,
1603+
changed => {
1604+
},
1605+
removed => {
1606+
}
1607+
},
1608+
5.028001 => {
1609+
delta_from => 5.028000,
1610+
changed => {
1611+
},
1612+
removed => {
1613+
}
1614+
},
15941615
'5.026005c' => {
15951616
delta_from => '5.026004c',
15961617
changed => {},

pod/.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
/roffitall
5151

5252
# generated
53-
/perl5263delta.pod
53+
/perl5264delta.pod
5454
/perl5265cdelta.pod
5555
/perlapi.pod
5656
/perlintern.pod

pod/perl.pod

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,9 @@ aux c2ph h2ph h2xs cperlbug pl2pm pod2html pod2man splain xsubpp
185185
perl5292delta Perl changes in version 5.29.2
186186
perl5291delta Perl changes in version 5.29.1
187187
perl5290delta Perl changes in version 5.29.0
188+
perl5281delta Perl changes in version 5.28.1
188189
perl5280delta Perl changes in version 5.28.0
190+
perl5263delta Perl changes in version 5.26.3
189191
perl5262delta Perl changes in version 5.26.2
190192
perl5261delta Perl changes in version 5.26.1
191193
perl5260delta Perl changes in version 5.26.0

pod/perl5263delta.pod

Lines changed: 201 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,201 @@
1+
=encoding utf8
2+
3+
=head1 NAME
4+
5+
perl5263delta - what is new for perl v5.26.3
6+
7+
=head1 DESCRIPTION
8+
9+
This document describes differences between the 5.26.2 release and the 5.26.3
10+
release.
11+
12+
If you are upgrading from an earlier release such as 5.26.1, first read
13+
L<perl5262delta>, which describes differences between 5.26.1 and 5.26.2.
14+
15+
=head1 Security
16+
17+
=head2 [CVE-2018-12015] Directory traversal in module Archive::Tar
18+
19+
By default, L<Archive::Tar> doesn't allow extracting files outside the current
20+
working directory. However, this secure extraction mode could be bypassed by
21+
putting a symlink and a regular file with the same name into the tar file.
22+
23+
L<[perl #133250]|https://rt.perl.org/Ticket/Display.html?id=133250>
24+
L<[cpan #125523]|https://rt.cpan.org/Ticket/Display.html?id=125523>
25+
26+
=head2 [CVE-2018-18311] Integer overflow leading to buffer overflow and segmentation fault
27+
28+
Integer arithmetic in C<Perl_my_setenv()> could wrap when the combined length
29+
of the environment variable name and value exceeded around 0x7fffffff. This
30+
could lead to writing beyond the end of an allocated buffer with attacker
31+
supplied data.
32+
33+
L<[perl #133204]|https://rt.perl.org/Ticket/Display.html?id=133204>
34+
35+
=head2 [CVE-2018-18312] Heap-buffer-overflow write in S_regatom (regcomp.c)
36+
37+
A crafted regular expression could cause heap-buffer-overflow write during
38+
compilation, potentially allowing arbitrary code execution.
39+
40+
L<[perl #133423]|https://rt.perl.org/Ticket/Display.html?id=133423>
41+
42+
=head2 [CVE-2018-18313] Heap-buffer-overflow read in S_grok_bslash_N (regcomp.c)
43+
44+
A crafted regular expression could cause heap-buffer-overflow read during
45+
compilation, potentially leading to sensitive information being leaked.
46+
47+
L<[perl #133192]|https://rt.perl.org/Ticket/Display.html?id=133192>
48+
49+
=head2 [CVE-2018-18314] Heap-buffer-overflow write in S_regatom (regcomp.c)
50+
51+
A crafted regular expression could cause heap-buffer-overflow write during
52+
compilation, potentially allowing arbitrary code execution.
53+
54+
L<[perl #131649]|https://rt.perl.org/Ticket/Display.html?id=131649>
55+
56+
=head1 Incompatible Changes
57+
58+
There are no changes intentionally incompatible with 5.26.2. If any exist,
59+
they are bugs, and we request that you submit a report. See
60+
L</Reporting Bugs> below.
61+
62+
=head1 Modules and Pragmata
63+
64+
=head2 Updated Modules and Pragmata
65+
66+
=over 4
67+
68+
=item *
69+
70+
L<Archive::Tar> has been upgraded from version 2.24 to 2.24_01.
71+
72+
=item *
73+
74+
L<Module::CoreList> has been upgraded from version 5.20180414_26 to 5.20181129_26.
75+
76+
=back
77+
78+
=head1 Diagnostics
79+
80+
The following additions or changes have been made to diagnostic output,
81+
including warnings and fatal error messages. For the complete list of
82+
diagnostic messages, see L<perldiag>.
83+
84+
=head2 New Diagnostics
85+
86+
=head3 New Errors
87+
88+
=over 4
89+
90+
=item *
91+
92+
L<Unexpected ']' with no following ')' in (?[... in regex; marked by E<lt>-- HERE in mE<sol>%sE<sol>|perldiag/"Unexpected ']' with no following ')' in (?[... in regex; marked by E<lt>-- HERE in mE<sol>%sE<sol>">
93+
94+
(F) While parsing an extended character class a ']' character was encountered
95+
at a point in the definition where the only legal use of ']' is to close the
96+
character class definition as part of a '])', you may have forgotten the close
97+
paren, or otherwise confused the parser.
98+
99+
=item *
100+
101+
L<Expecting close paren for nested extended charclass in regex; marked by E<lt>-- HERE in mE<sol>%sE<sol>|perldiag/"Expecting close paren for nested extended charclass in regex; marked by E<lt>-- HERE in mE<sol>%sE<sol>">
102+
103+
(F) While parsing a nested extended character class like:
104+
105+
(?[ ... (?flags:(?[ ... ])) ... ])
106+
^
107+
108+
we expected to see a close paren ')' (marked by ^) but did not.
109+
110+
=item *
111+
112+
L<Expecting close paren for wrapper for nested extended charclass in regex; marked by E<lt>-- HERE in mE<sol>%sE<sol>|perldiag/"Expecting close paren for wrapper for nested extended charclass in regex; marked by E<lt>-- HERE in mE<sol>%sE<sol>">
113+
114+
(F) While parsing a nested extended character class like:
115+
116+
(?[ ... (?flags:(?[ ... ])) ... ])
117+
^
118+
119+
we expected to see a close paren ')' (marked by ^) but did not.
120+
121+
=back
122+
123+
=head2 Changes to Existing Diagnostics
124+
125+
=over 4
126+
127+
=item *
128+
129+
L<Syntax error in (?[...]) in regex; marked by E<lt>-- HERE in mE<sol>%sE<sol>|perldiag/"Syntax error in (?[...]) in regex; marked by E<lt>-- HERE in mE<sol>%sE<sol>">
130+
131+
This fatal error message has been slightly expanded (from "Syntax error in
132+
(?[...]) in regex mE<sol>%sE<sol>") for greater clarity.
133+
134+
=back
135+
136+
=head1 Acknowledgements
137+
138+
Perl 5.26.3 represents approximately 8 months of development since Perl 5.26.2
139+
and contains approximately 4,500 lines of changes across 51 files from 15
140+
authors.
141+
142+
Excluding auto-generated files, documentation and release tools, there were
143+
approximately 770 lines of changes to 10 .pm, .t, .c and .h files.
144+
145+
Perl continues to flourish into its third decade thanks to a vibrant community
146+
of users and developers. The following people are known to have contributed
147+
the improvements that became Perl 5.26.3:
148+
149+
Aaron Crane, Abigail, Chris 'BinGOs' Williams, Dagfinn Ilmari Mannsåker, David
150+
Mitchell, H.Merijn Brand, James E Keenan, John SJ Anderson, Karen Etheridge,
151+
Karl Williamson, Sawyer X, Steve Hay, Todd Rinaldo, Tony Cook, Yves Orton.
152+
153+
The list above is almost certainly incomplete as it is automatically generated
154+
from version control history. In particular, it does not include the names of
155+
the (very much appreciated) contributors who reported issues to the Perl bug
156+
tracker.
157+
158+
Many of the changes included in this version originated in the CPAN modules
159+
included in Perl's core. We're grateful to the entire CPAN community for
160+
helping Perl to flourish.
161+
162+
For a more complete list of all of Perl's historical contributors, please see
163+
the F<AUTHORS> file in the Perl source distribution.
164+
165+
=head1 Reporting Bugs
166+
167+
If you find what you think is a bug, you might check the perl bug database
168+
at L<https://rt.perl.org/> . There may also be information at
169+
L<http://www.perl.org/> , the Perl Home Page.
170+
171+
If you believe you have an unreported bug, please run the L<perlbug> program
172+
included with your release. Be sure to trim your bug down to a tiny but
173+
sufficient test case. Your bug report, along with the output of C<perl -V>,
174+
will be sent off to perlbug@perl.org to be analysed by the Perl porting team.
175+
176+
If the bug you are reporting has security implications which make it
177+
inappropriate to send to a publicly archived mailing list, then see
178+
L<perlsec/SECURITY VULNERABILITY CONTACT INFORMATION>
179+
for details of how to report the issue.
180+
181+
=head1 Give Thanks
182+
183+
If you wish to thank the Perl 5 Porters for the work we had done in Perl 5,
184+
you can do so by running the C<perlthanks> program:
185+
186+
perlthanks
187+
188+
This will send an email to the Perl 5 Porters list with your show of thanks.
189+
190+
=head1 SEE ALSO
191+
192+
The F<Changes> file for an explanation of how to view exhaustive details on
193+
what changed.
194+
195+
The F<INSTALL> file for how to build Perl.
196+
197+
The F<README> file for general stuff.
198+
199+
The F<Artistic> and F<Copying> files for copyright information.
200+
201+
=cut

0 commit comments

Comments
 (0)