Socket
Socket
Sign inDemoInstall

@mashroom/mashroom-security-provider-ldap

Package Overview
Dependencies
Maintainers
1
Versions
92
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@mashroom/mashroom-security-provider-ldap - npm Package Compare versions

Comparing version 1.7.5 to 1.7.6

17

dist/LdapClientImpl.js

@@ -158,3 +158,3 @@ "use strict";

async _createLdapJsClient(reconnect = false) {
async _createLdapJsClient(keepForever = false) {
const clientOptions = {

@@ -164,12 +164,9 @@ url: `${this._serverUrl}/${this._baseDN}`,

connectTimeout: this._connectTimeout,
timeout: this._timeout
timeout: this._timeout,
reconnect: {
initialDelay: 100,
maxDelay: 10000,
failAfter: keepForever ? Infinity : 3
}
};
if (reconnect) {
clientOptions.reconnect = {
initialDelay: 100,
maxDelay: 10000
};
}
return new Promise((resolve, reject) => {

@@ -176,0 +173,0 @@ let resolved = false;

@@ -7,3 +7,3 @@ {

"license": "MIT",
"version": "1.7.5",
"version": "1.7.6",
"files": [

@@ -17,5 +17,5 @@ "dist/**"

"@babel/cli": "^7.12.16",
"@mashroom/mashroom": "1.7.5",
"@mashroom/mashroom-security": "1.7.5",
"@mashroom/mashroom-utils": "1.7.5",
"@mashroom/mashroom": "1.7.6",
"@mashroom/mashroom-security": "1.7.6",
"@mashroom/mashroom-utils": "1.7.6",
"@types/express": "^4.17.11",

@@ -22,0 +22,0 @@ "@types/jest": "^26.0.20",

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