From: Dagfinn Ilmari Mannsåker Date: Thu, 11 Feb 2016 17:46:30 +0000 (+0000) Subject: Version 0.016 X-Git-Tag: v1.016 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=refs%2Ftags%2Fv1.016;hp=a8ab36c0eaea53b49022878e4a21ccca7cb0bb54;p=catagits%2FCatalyst-Authentication-Store-LDAP.git Version 0.016 --- diff --git a/Changes b/Changes index 153914e..3056927 100644 --- a/Changes +++ b/Changes @@ -1,3 +1,4 @@ +1.016 11 Februrary 2016 - Document how to limit the attributes returned from the LDAP search - Add persist_in_session config option to allow storing of user and its roles in the session without hitting the LDAP store on each request diff --git a/lib/Catalyst/Authentication/Store/LDAP.pm b/lib/Catalyst/Authentication/Store/LDAP.pm index 196f180..4769ede 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.015'; +our $VERSION = '1.016'; 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 bd7bae0..75e2a0f 100644 --- a/lib/Catalyst/Authentication/Store/LDAP/Backend.pm +++ b/lib/Catalyst/Authentication/Store/LDAP/Backend.pm @@ -74,7 +74,7 @@ use base qw( Class::Accessor::Fast ); use strict; use warnings; -our $VERSION = '1.015'; +our $VERSION = '1.016'; 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 547e7c9..e391de3 100644 --- a/lib/Catalyst/Authentication/Store/LDAP/User.pm +++ b/lib/Catalyst/Authentication/Store/LDAP/User.pm @@ -51,7 +51,7 @@ use warnings; use Scalar::Util qw/refaddr/; use Net::LDAP::Entry; -our $VERSION = '1.015'; +our $VERSION = '1.016'; BEGIN { __PACKAGE__->mk_accessors(qw/user store/) }