File tree 3 files changed +14
-5
lines changed
cpan/Module-Metadata/lib/Module
3 files changed +14
-5
lines changed Original file line number Diff line number Diff line change @@ -1226,7 +1226,7 @@ package Maintainers;
1226
1226
1227
1227
' Module::Metadata' => {
1228
1228
' MAINTAINER' => ' dagolden' ,
1229
- ' DISTRIBUTION' => ' BOBTFISH /Module-Metadata-1.000014 .tar.gz' ,
1229
+ ' DISTRIBUTION' => ' ETHER /Module-Metadata-1.000016 .tar.gz' ,
1230
1230
' FILES' => q[ cpan/Module-Metadata] ,
1231
1231
' EXCLUDED' => [
1232
1232
qr { ^maint} ,
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ package Module::Metadata;
11
11
12
12
use strict;
13
13
use vars qw( $VERSION) ;
14
- $VERSION = ' 1.000014 ' ;
14
+ $VERSION = ' 1.000016 ' ;
15
15
$VERSION = eval $VERSION ;
16
16
17
17
use Carp qw/ croak/ ;
@@ -345,7 +345,7 @@ sub new_from_module {
345
345
}
346
346
347
347
# 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
349
349
for (grep defined $_ -> {version }, values %prime ) {
350
350
$_ -> {version } = $normalize_version -> ( $_ -> {version } );
351
351
}
@@ -800,8 +800,10 @@ Module::Metadata - Gather package and POD information from perl module files
800
800
801
801
=head1 DESCRIPTION
802
802
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.
805
807
806
808
=head1 USAGE
807
809
Original file line number Diff line number Diff line change @@ -130,6 +130,13 @@ L<Module::CoreList> has been upgraded from version 2.97 to 2.98.
130
130
131
131
The list of Perl versions covered has been updated.
132
132
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
+
133
140
=back
134
141
135
142
=head2 Removed Modules and Pragmata
You can’t perform that action at this time.
0 commit comments