Socket
Socket
Sign inDemoInstall

ldapjs

Package Overview
Dependencies
Maintainers
5
Versions
79
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ldapjs - npm Package Compare versions

Comparing version 2.0.0-pre.5 to 2.0.0

lib/corked_emitter.js

4

CHANGES.md
# ldapjs Changelog
## 2.0.0
- Going foward, please see https://github.com/ldapjs/node-ldapjs/releases
## 1.0.2

@@ -4,0 +8,0 @@

3

lib/client/client.js

@@ -28,2 +28,3 @@ 'use strict'

var url = require('../url')
var CorkedEmitter = require('../corked_emitter')

@@ -636,3 +637,3 @@ /// --- Globals

} else {
sendRequest(controls, new EventEmitter(), callback)
sendRequest(controls, new CorkedEmitter(), callback)
}

@@ -639,0 +640,0 @@ }

@@ -108,3 +108,9 @@ // Copyright 2011 Mark Cavage, Inc. All rights reserved.

ber.writeString(this.baseObject.toString())
// Format only with commas, since that is what RFC 4514 mandates.
// There's a gotcha here: even though it's called baseObject,
// it can be a string or a DN object.
var formattedDN = dn.DN.isDN(this.baseObject)
? this.baseObject.format({ skipSpace: true })
: this.baseObject.toString()
ber.writeString(formattedDN)
ber.writeEnumeration(this._scope)

@@ -111,0 +117,0 @@ ber.writeEnumeration(this.derefAliases)

@@ -700,2 +700,6 @@ // Copyright 2011 Mark Cavage, Inc. All rights reserved.

Server.prototype.getConnections = function (callback) {
return this.server.getConnections(callback)
}
Server.prototype._getRoute = function (_dn, backend) {

@@ -702,0 +706,0 @@ assert.ok(dn)

@@ -6,3 +6,3 @@ {

"description": "LDAP client and server APIs",
"version": "2.0.0-pre.5",
"version": "2.0.0",
"license": "MIT",

@@ -31,2 +31,3 @@ "repository": {

"devDependencies": {
"get-port": "^5.1.1",
"husky": "^3.0.4",

@@ -33,0 +34,0 @@ "snazzy": "^8.0.0",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc