ldapauth-fork
Advanced tools
Comparing version 2.5.1 to 2.5.2
# node-ldapauth-fork Changelog | ||
## 2.5.2 | ||
- [pull request #31] Forward reconnect option to ldapjs | ||
## 2.5.1 | ||
@@ -4,0 +8,0 @@ |
@@ -103,3 +103,5 @@ /** | ||
* containing the original buffers to the returned user object. | ||
* Useful when you need to handle binary attributes. | ||
* Useful when you need to handle binary attributes | ||
* reconnect {object} | ||
* Optional, node-ldap reconnect option. | ||
*/ | ||
@@ -133,3 +135,4 @@ function LdapAuth(opts) { | ||
checkInterval: opts.checkInterval, | ||
maxIdleTime: opts.maxIdleTime | ||
maxIdleTime: opts.maxIdleTime, | ||
reconnect: opts.reconnect | ||
}; | ||
@@ -136,0 +139,0 @@ |
{ | ||
"name": "ldapauth-fork", | ||
"version": "2.5.1", | ||
"version": "2.5.2", | ||
"main": "./lib/ldapauth.js", | ||
@@ -5,0 +5,0 @@ "description": "Authenticate against an LDAP server", |
@@ -36,3 +36,3 @@ Fork of [node-ldapauth](https://github.com/trentm/node-ldapauth) - A simple node.js lib to authenticate against an LDAP server. | ||
[Use the source Luke](https://github.com/vesse/node-ldapauth-fork/blob/master/lib/ldapauth.js#L35-L103) | ||
[Use the source Luke](https://github.com/vesse/node-ldapauth-fork/blob/master/lib/ldapauth.js#L35-L105) | ||
@@ -39,0 +39,0 @@ |
70751
1014