From: Peter Karman Date: Wed, 9 Jan 2013 14:59:02 +0000 (+0000) Subject: release 1.013 X-Git-Tag: v1.013^0 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=4d784742b52f19a6975c4c3b72c51134e7725f8e;p=catagits%2FCatalyst-Authentication-Store-LDAP.git release 1.013 --- diff --git a/Changes b/Changes index 25f3951..1d8f27d 100644 --- 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: diff --git a/lib/Catalyst/Authentication/Store/LDAP.pm b/lib/Catalyst/Authentication/Store/LDAP.pm index 38c1487..8742ae8 100644 --- a/lib/Catalyst/Authentication/Store/LDAP.pm +++ b/lib/Catalyst/Authentication/Store/LDAP.pm @@ -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; diff --git a/lib/Catalyst/Authentication/Store/LDAP/Backend.pm b/lib/Catalyst/Authentication/Store/LDAP/Backend.pm index 43819f9..a0be77a 100644 --- a/lib/Catalyst/Authentication/Store/LDAP/Backend.pm +++ b/lib/Catalyst/Authentication/Store/LDAP/Backend.pm @@ -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; diff --git a/lib/Catalyst/Authentication/Store/LDAP/User.pm b/lib/Catalyst/Authentication/Store/LDAP/User.pm index 82a24da..de1a8ca 100644 --- a/lib/Catalyst/Authentication/Store/LDAP/User.pm +++ b/lib/Catalyst/Authentication/Store/LDAP/User.pm @@ -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/) }