[libnet-dns-sec-perl] 01/02: New upstream version 0.20

Ondrej Sury ondrej at moszumanska.debian.org
Mon Aug 18 11:43:36 UTC 2014


This is an automated email from the git hooks/post-receive script.

ondrej pushed a commit to branch master
in repository libnet-dns-sec-perl.

commit f36d3c2efd39f71fb2519a78c52e8a2bdbb21971
Author: Ondřej Surý <ondrej at sury.org>
Date:   Mon Aug 18 13:25:25 2014 +0200

    New upstream version 0.20
---
 Changes     | 10 ++++++++--
 META.json   |  2 +-
 META.yml    |  2 +-
 RR/NSEC3.pm |  8 +++++---
 SEC.pm      |  6 +++---
 5 files changed, 18 insertions(+), 10 deletions(-)

diff --git a/Changes b/Changes
index 4ad3b53..1e9cf10 100644
--- a/Changes
+++ b/Changes
@@ -1,5 +1,11 @@
 Revision history for Perl extension Net::DNS::SEC.
 
+***0.20 August 15, 2014
+
+   Fix: rt.cpan.org #97457
+   !hex! error when parsing NSEC3 with empty salt
+
+
 ***0.19 Jun 6, 2014
 
    Remove inappropriate deprecation warning in DNSKEY.pm
@@ -463,7 +469,7 @@ Net::DNS. The history of those is documented below.
 
 0.19-DNSSEC-0.3: 
   Solved patch problems that where due to the 
-  $Id: Changes 1217 2014-06-06 11:54:19Z willem $ in headers not 
+  $Id: Changes 1248 2014-08-15 08:44:56Z willem $ in headers not 
   being from the original distribution.
 
   Added DSA signature creation
@@ -495,4 +501,4 @@ Net::DNS. The history of those is documented below.
 
 
 ---------------------------------------------------------------------------
-$Id: Changes 1217 2014-06-06 11:54:19Z willem $
+$Id: Changes 1248 2014-08-15 08:44:56Z willem $
diff --git a/META.json b/META.json
index 57adb95..0a23bc6 100644
--- a/META.json
+++ b/META.json
@@ -49,5 +49,5 @@
       }
    },
    "release_status" : "stable",
-   "version" : "0.19"
+   "version" : "0.20"
 }
diff --git a/META.yml b/META.yml
index 772a0eb..842c8fd 100644
--- a/META.yml
+++ b/META.yml
@@ -31,4 +31,4 @@ requires:
   Test::More: 0.47
   Time::Local: 0
   perl: 5.006
-version: 0.19
+version: 0.20
diff --git a/RR/NSEC3.pm b/RR/NSEC3.pm
index dc7491d..4994770 100644
--- a/RR/NSEC3.pm
+++ b/RR/NSEC3.pm
@@ -1,10 +1,10 @@
 package Net::DNS::RR::NSEC3;
 
 #
-# $Id: NSEC3.pm 1193 2014-04-28 07:11:19Z willem $
+# $Id: NSEC3.pm 1236 2014-07-29 08:00:49Z willem $
 #
 use vars qw($VERSION);
-$VERSION = (qw$LastChangedRevision: 1193 $)[1];
+$VERSION = (qw$LastChangedRevision: 1236 $)[1];
 
 
 use strict;
@@ -18,6 +18,7 @@ Net::DNS::RR::NSEC3 - DNS NSEC3 resource record
 
 
 use integer;
+
 use warnings;
 use Carp;
 use MIME::Base32;
@@ -108,7 +109,8 @@ sub parse_rdata {			## populate RR from rdata in argument list
 	$self->algorithm(shift);
 	$self->flags(shift);
 	$self->iterations(shift);
-	$self->salt(shift);
+	my $salt = shift;
+	$self->salt( defined($salt) && ( $salt ne '-' ) ? $salt : '' );
 	$self->hnxtname(shift);
 	$self->typelist(@_);
 }
diff --git a/SEC.pm b/SEC.pm
index a1c08db..23a5370 100644
--- a/SEC.pm
+++ b/SEC.pm
@@ -1,11 +1,11 @@
 package Net::DNS::SEC;
 
 #
-# $Id: SEC.pm 1217 2014-06-06 11:54:19Z willem $
+# $Id: SEC.pm 1248 2014-08-15 08:44:56Z willem $
 #
 use vars qw($VERSION $SVNVERSION);
-$VERSION    = '0.19';
-$SVNVERSION = (qw$LastChangedRevision: 1217 $)[1];
+$VERSION    = '0.20';
+$SVNVERSION = (qw$LastChangedRevision: 1248 $)[1];
 
 
 =head1 NAME

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libnet-dns-sec-perl.git



More information about the Pkg-perl-cvs-commits mailing list