release 1.013 v1.013
Peter Karman [Wed, 9 Jan 2013 14:59:02 +0000 (14:59 +0000)]
Changes
lib/Catalyst/Authentication/Store/LDAP.pm
lib/Catalyst/Authentication/Store/LDAP/Backend.pm
lib/Catalyst/Authentication/Store/LDAP/User.pm

diff --git a/Changes b/Changes
index 25f3951..1d8f27d 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,3 +1,6 @@
+1.013  9 January 2013
+  - fix for https://rt.cpan.org/Ticket/Display.html?id=81908 security hole.
+
 1.012  5 October 2010
   - add methods conforming to the Catalyst::Authentication::User API
     as required here:
index 38c1487..8742ae8 100644 (file)
@@ -3,7 +3,7 @@ package Catalyst::Authentication::Store::LDAP;
 use strict;
 use warnings;
 
-our $VERSION = '1.012';
+our $VERSION = '1.013';
 
 use Catalyst::Authentication::Store::LDAP::Backend;
 
index 43819f9..a0be77a 100644 (file)
@@ -72,7 +72,7 @@ use base qw( Class::Accessor::Fast );
 use strict;
 use warnings;
 
-our $VERSION = '1.012';
+our $VERSION = '1.013';
 
 use Catalyst::Authentication::Store::LDAP::User;
 use Net::LDAP;
index 82a24da..de1a8ca 100644 (file)
@@ -50,7 +50,7 @@ use strict;
 use warnings;
 use Scalar::Util qw/refaddr/;
 
-our $VERSION = '1.012';
+our $VERSION = '1.013';
 
 BEGIN { __PACKAGE__->mk_accessors(qw/user store/) }