From: Tomas Doran Date: Fri, 19 Mar 2010 10:05:30 +0000 (+0000) Subject: Update ignore props X-Git-Tag: v1.007^0 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Authentication-Store-LDAP.git;a=commitdiff_plain;h=8840860e71e7b16e0d7fe0ae0251cae2396dcb82 Update ignore props --- diff --git a/Changes b/Changes index 8a826d2..d8aa7d9 100644 --- a/Changes +++ b/Changes @@ -1,3 +1,4 @@ +0.1007 19 Mar 2010 - Store the user password for the ldap_connection method in an inside out hash rather than a closure so that the user object can be serialized with Storable as people are putting them in the session (RT#53279) diff --git a/lib/Catalyst/Authentication/Store/LDAP.pm b/lib/Catalyst/Authentication/Store/LDAP.pm index b616d32..b6c5517 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.006'; +our $VERSION = '1.007'; 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 b3df731..9c97753 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.006'; +our $VERSION = '1.007'; 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 636728e..da6b885 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.006'; +our $VERSION = '1.007'; BEGIN { __PACKAGE__->mk_accessors(qw/user store/) }