r70310 - in /trunk/libio-socket-ssl-perl: Changes META.yml SSL.pm debian/changelog debian/control debian/copyright
angelabad-guest at users.alioth.debian.org
angelabad-guest at users.alioth.debian.org
Thu Mar 3 16:58:01 UTC 2011
Author: angelabad-guest
Date: Thu Mar 3 16:57:50 2011
New Revision: 70310
URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=70310
Log:
New upstream release
Modified:
trunk/libio-socket-ssl-perl/Changes
trunk/libio-socket-ssl-perl/META.yml
trunk/libio-socket-ssl-perl/SSL.pm
trunk/libio-socket-ssl-perl/debian/changelog
trunk/libio-socket-ssl-perl/debian/control
trunk/libio-socket-ssl-perl/debian/copyright
Modified: trunk/libio-socket-ssl-perl/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libio-socket-ssl-perl/Changes?rev=70310&op=diff
==============================================================================
--- trunk/libio-socket-ssl-perl/Changes (original)
+++ trunk/libio-socket-ssl-perl/Changes Thu Mar 3 16:57:50 2011
@@ -1,4 +1,9 @@
+v1.39 2011.03.03
+- fixed documentation of http verification: wildcards in cn is allowed
+v1.38_1 2011.01.24
+- close should undef _SSL_fileno, because the fileno is no longer
+ valid (SSL connection and socket are closed)
v1.38 2011.01.18
- fixed wildcards_in_cn setting for http (wrongly set in 1.34 to 1
instead of anywhere). Thanks to dagolden[AT]cpan[DOT]org for
Modified: trunk/libio-socket-ssl-perl/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libio-socket-ssl-perl/META.yml?rev=70310&op=diff
==============================================================================
--- trunk/libio-socket-ssl-perl/META.yml (original)
+++ trunk/libio-socket-ssl-perl/META.yml Thu Mar 3 16:57:50 2011
@@ -1,6 +1,6 @@
--- #YAML:1.0
name: IO-Socket-SSL
-version: 1.38
+version: 1.39
abstract: Nearly transparent SSL encapsulation for IO::Socket::INET.
author:
- Steffen Ullrich & Peter Behroozi & Marko Asplund
Modified: trunk/libio-socket-ssl-perl/SSL.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libio-socket-ssl-perl/SSL.pm?rev=70310&op=diff
==============================================================================
--- trunk/libio-socket-ssl-perl/SSL.pm (original)
+++ trunk/libio-socket-ssl-perl/SSL.pm Thu Mar 3 16:57:50 2011
@@ -78,7 +78,7 @@
}) {
@ISA = qw(IO::Socket::INET);
}
- $VERSION = '1.38';
+ $VERSION = '1.39';
$GLOBAL_CONTEXT_ARGS = {};
#Make $DEBUG another name for $Net::SSLeay::trace
@@ -801,6 +801,7 @@
if ( ! $close_args->{_SSL_in_DESTROY} ) {
untie( *$self );
+ undef ${*$self}{_SSL_fileno};
return $self->SUPER::close;
}
return 1;
@@ -1950,8 +1951,8 @@
=item http (rfc2818), alias is www
-Extended wildcards in subjectAltNames are possible, e.g. *.example.org or
-even www*.example.org. Wildcards in the common name are not allowed. The common
+Extended wildcards in subjectAltNames and common name are possible, e.g.
+*.example.org or even www*.example.org. The common
name will be only checked if no names are given in subjectAltNames.
=item smtp (rfc3207)
Modified: trunk/libio-socket-ssl-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libio-socket-ssl-perl/debian/changelog?rev=70310&op=diff
==============================================================================
--- trunk/libio-socket-ssl-perl/debian/changelog (original)
+++ trunk/libio-socket-ssl-perl/debian/changelog Thu Mar 3 16:57:50 2011
@@ -1,3 +1,9 @@
+libio-socket-ssl-perl (1.39-1) unstable; urgency=low
+
+ * New upstream release
+
+ -- Angel Abad <angelabad at gmail.com> Thu, 03 Mar 2011 17:57:38 +0100
+
libio-socket-ssl-perl (1.38-1) unstable; urgency=low
* New upstream release
Modified: trunk/libio-socket-ssl-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libio-socket-ssl-perl/debian/control?rev=70310&op=diff
==============================================================================
--- trunk/libio-socket-ssl-perl/debian/control (original)
+++ trunk/libio-socket-ssl-perl/debian/control Thu Mar 3 16:57:50 2011
@@ -1,15 +1,19 @@
Source: libio-socket-ssl-perl
Section: perl
Priority: optional
+Build-Depends: debhelper (>= 7)
+Build-Depends-Indep: libio-socket-inet6-perl,
+ libnet-libidn-perl,
+ libnet-ssleay-perl (>= 1.35),
+ netbase,
+ perl
Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
Uploaders: gregor herrmann <gregoa at debian.org>,
- Ansgar Burchardt <ansgar at debian.org>, Rene Mayorga <rmayorga at debian.org>,
+ Ansgar Burchardt <ansgar at debian.org>,
+ Rene Mayorga <rmayorga at debian.org>,
Antonio Radici <antonio at dyne.org>,
Salvatore Bonaccorso <carnil at debian.org>,
Angel Abad <angelabad at gmail.com>
-Build-Depends: debhelper (>= 7)
-Build-Depends-Indep: libio-socket-inet6-perl, libnet-libidn-perl,
- libnet-ssleay-perl (>= 1.35), netbase, perl
Standards-Version: 3.9.1
Homepage: http://search.cpan.org/dist/IO-Socket-SSL/
Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libio-socket-ssl-perl/
@@ -17,7 +21,9 @@
Package: libio-socket-ssl-perl
Architecture: all
-Depends: ${misc:Depends}, ${perl:Depends}, libnet-ssleay-perl (>= 1.35), netbase
+Depends: ${misc:Depends}, ${perl:Depends},
+ libnet-ssleay-perl (>= 1.35),
+ netbase
Recommends: libnet-libidn-perl
Suggests: libio-socket-inet6-perl
Description: Perl module implementing object oriented interface to SSL sockets
Modified: trunk/libio-socket-ssl-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libio-socket-ssl-perl/debian/copyright?rev=70310&op=diff
==============================================================================
--- trunk/libio-socket-ssl-perl/debian/copyright (original)
+++ trunk/libio-socket-ssl-perl/debian/copyright Thu Mar 3 16:57:50 2011
@@ -19,8 +19,8 @@
2008, Mark Hymers <mhy at debian.org>
2008, Rene Mayorga <rmayorga at debian.org.sv>
2009, Antonio Radici <antonio at dyne.org>
- 2009, 2010, 2011, Salvatore Bonaccorso <carnil at debian.org>
- 2010, Angel Abad <angelabad at gmail.com>
+ 2009-2011, Salvatore Bonaccorso <carnil at debian.org>
+ 2010-2011, Angel Abad <angelabad at gmail.com>
License: Artistic or GPL-1+
License: Artistic
@@ -36,5 +36,5 @@
the Free Software Foundation; either version 1, or (at your option)
any later version.
.
- On Debian systems, the complete text of version 1 of the General
+ On Debian systems, the complete text of version 1 of the GNU General
Public License can be found in `/usr/share/common-licenses/GPL-1'.
More information about the Pkg-perl-cvs-commits
mailing list