Skip to content

Commit 0ec83c7

Browse files
committed
update to latest deps
1 parent 7a84a44 commit 0ec83c7

File tree

3 files changed

+7
-8
lines changed

3 files changed

+7
-8
lines changed

CHANGES.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# node-ldapauth Changelog
22

3-
## 2.1.1 (not yet released)
3+
## 2.2.0 (not yet released)
44

5-
(nothing yet)
5+
- Update to latest ldapjs (0.5.6) and other deps.
66

77

88
## 2.1.0

README.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ MIT. See "LICENSE" file.
3838
// Config from a .json or .ini file or whatever.
3939
var config = {
4040
ldap: {
41-
url: "ldaps://ldap.example.com:663",
41+
url: "ldaps://ldap.example.com:636",
4242
adminDn: "uid=myadminusername,ou=users,o=example.com",
4343
adminPassword: "mypassword",
4444
searchBase: "ou=users,o=example.com",
@@ -55,7 +55,7 @@ MIT. See "LICENSE" file.
5555
//log4js: require('log4js'),
5656
cache: true
5757
});
58-
58+
5959
var basicAuthMiddleware = connect.basicAuth(function (username, password, callback) {
6060
ldap.authenticate(username, password, function (err, user) {
6161
if (err) {
@@ -76,4 +76,3 @@ To cut a release (tagging, npm publish, etc., see
7676
<https://github.com/trentm/cutarelease> for details):
7777

7878
make cutarelease
79-

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
"url": "git://github.com/trentm/node-ldapauth.git"
1515
},
1616
"dependencies": {
17-
"ldapjs": "0.4",
18-
"bcrypt": "0.5",
19-
"lru-cache": "1.0.5"
17+
"ldapjs": "0.5.6",
18+
"bcrypt": "0.7.2",
19+
"lru-cache": "2.0.4"
2020
}
2121
}

0 commit comments

Comments
 (0)