Releases: Commifreak/yii2-ldap-auth
Releases · Commifreak/yii2-ldap-auth
1.1.10
- Added: Connection timeout check
- Supersed v1.1.9
1.1.9
- Fixed missing objectsid: Even if not explicit mentioned in $attributes, we add it nevertheless
1.1.8
- Reverted changes - samaccountname is ALWAYS needed as login attribute (ldap_bind)
1.1.5
Add LDAP_OPT_NETWORK_TIMEOUT
with 3 secs
1.1.4
- Hotfix for
searchUser
1.1.3
More logic and some fixes.
More default filters
v1.1.2 * Added more default filters
Just updating requirements and license
... nothing special
V1.1.0
Handle entries now properly. Omit the binary objectsid and filter some elements.
Breaking change: Change the code which reads the user data!:
$userData = Yii::$app->ldap->fetchUserData(); // leave as-is!
$user->email = $userData['mail']; // instead of $userData['entries']['mail'][0]
$user->firstname = $userData['givenname']; // instead of $userData['entries']['givenname'][0]
$user->lastname = $userData['sn']; // instead of $userData['entries']['sn'][0]
$user->phone = $userData['telephonenumber']; // instead of $userData['entries']['telephonenumber'][0]
1.0.1
Search public users