From: Dagfinn Ilmari Mannsåker Date: Fri, 20 Feb 2015 18:05:40 +0000 (+0000) Subject: Version 1.015 X-Git-Tag: v1.015^0 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Authentication-Store-LDAP.git;a=commitdiff_plain;h=dfead577d0091c13ab636431aefca08d0ff7330b Version 1.015 --- diff --git a/Changes b/Changes index d69ffa5..31a28fe 100644 --- a/Changes +++ b/Changes @@ -1,3 +1,4 @@ +1.015 20 February 2015 - Escape special characters in user/role names - Use the stored user credentials to look up roles - Split credential checking into a separate method from generic binding diff --git a/lib/Catalyst/Authentication/Store/LDAP.pm b/lib/Catalyst/Authentication/Store/LDAP.pm index cdd025d..9045807 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.014'; +our $VERSION = '1.015'; 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 a6c46ab..5942d6d 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.014'; +our $VERSION = '1.015'; 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 8089331..3dc1a78 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.014'; +our $VERSION = '1.015'; BEGIN { __PACKAGE__->mk_accessors(qw/user store/) }