Skip to content

Commit 68cdd4b

Browse files
committed
Upgrade Module-Metadata from 1.000014 to 1.000016
1 parent 6200d5a commit 68cdd4b

File tree

3 files changed

+14
-5
lines changed

3 files changed

+14
-5
lines changed

Porting/Maintainers.pl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1226,7 +1226,7 @@ package Maintainers;
12261226

12271227
'Module::Metadata' => {
12281228
'MAINTAINER' => 'dagolden',
1229-
'DISTRIBUTION' => 'BOBTFISH/Module-Metadata-1.000014.tar.gz',
1229+
'DISTRIBUTION' => 'ETHER/Module-Metadata-1.000016.tar.gz',
12301230
'FILES' => q[cpan/Module-Metadata],
12311231
'EXCLUDED' => [
12321232
qr{^maint},

cpan/Module-Metadata/lib/Module/Metadata.pm

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ package Module::Metadata;
1111

1212
use strict;
1313
use vars qw($VERSION);
14-
$VERSION = '1.000014';
14+
$VERSION = '1.000016';
1515
$VERSION = eval $VERSION;
1616

1717
use Carp qw/croak/;
@@ -345,7 +345,7 @@ sub new_from_module {
345345
}
346346

347347
# Normalize versions. Can't use exists() here because of bug in YAML::Node.
348-
# XXX "bug in YAML::Node" comment seems irrelvant -- dagolden, 2009-05-18
348+
# XXX "bug in YAML::Node" comment seems irrelevant -- dagolden, 2009-05-18
349349
for (grep defined $_->{version}, values %prime) {
350350
$_->{version} = $normalize_version->( $_->{version} );
351351
}
@@ -800,8 +800,10 @@ Module::Metadata - Gather package and POD information from perl module files
800800
801801
=head1 DESCRIPTION
802802
803-
This module provides a standard way to gather metadata about a .pm file
804-
without executing unsafe code.
803+
This module provides a standard way to gather metadata about a .pm file through
804+
(mostly) static analysis and (some) code execution. When determining the
805+
version of a module, the C<$VERSION> assignment is C<eval>ed, as is traditional
806+
in the CPAN toolchain.
805807
806808
=head1 USAGE
807809

pod/perldelta.pod

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,13 @@ L<Module::CoreList> has been upgraded from version 2.97 to 2.98.
130130

131131
The list of Perl versions covered has been updated.
132132

133+
=item *
134+
135+
L<Module::Metadata> has been upgraded from version 1.000014 to 1.000016.
136+
137+
The module's DESCRIPTION has been re-worded regarding safety/security to
138+
satisfy CVE-2013-1437.
139+
133140
=back
134141

135142
=head2 Removed Modules and Pragmata

0 commit comments

Comments
 (0)