Socket
Socket
Sign inDemoInstall

ldapts

Package Overview
Dependencies
10
Maintainers
1
Versions
96
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 3.2.1 to 3.2.2

5

CHANGELOG.md
# Change Log
## 3.2.2 - 2022-02-22
- Update npms
- Update husky to support Apple silicon homebrew package links
## 3.2.1 - 2021-12-30

@@ -4,0 +9,0 @@

42

package.json
{
"name": "ldapts",
"version": "3.2.1",
"version": "3.2.2",
"description": "LDAP client",

@@ -50,5 +50,5 @@ "main": "index.js",

"dependencies": {
"@types/asn1": ">= 0.2.0",
"@types/node": ">= 12.13",
"@types/uuid": ">= 8",
"@types/asn1": ">=0.2.0",
"@types/node": ">=12.13",
"@types/uuid": ">=8",
"asn1": "~0.2.6",

@@ -61,16 +61,16 @@ "debug": "~4.3.3",

"@types/chai": "~4.3.0",
"@types/chai-as-promised": "~7.1.4",
"@types/chai-as-promised": "~7.1.5",
"@types/debug": "~4.1.7",
"@types/mocha": "~9.0.0",
"@types/sinon": "~10.0.6",
"@typescript-eslint/eslint-plugin": "~5.8.1",
"@typescript-eslint/parser": "~5.8.1",
"chai": "~4.3.4",
"@types/mocha": "~9.1.0",
"@types/sinon": "~10.0.11",
"@typescript-eslint/eslint-plugin": "~5.12.1",
"@typescript-eslint/parser": "~5.12.1",
"chai": "~4.3.6",
"chai-as-promised": "~7.1.1",
"eslint": "~8.5.0",
"eslint": "~8.9.0",
"eslint-config-airbnb-base": "~15.0.0",
"eslint-config-airbnb-typescript": "~16.1.0",
"eslint-config-prettier": "~8.3.0",
"eslint-plugin-import": "~2.25.3",
"eslint-plugin-jsdoc": "~37.4.2",
"eslint-config-prettier": "~8.4.0",
"eslint-plugin-import": "~2.25.4",
"eslint-plugin-jsdoc": "~37.9.4",
"eslint-plugin-mocha": "~10.0.3",

@@ -81,13 +81,13 @@ "eslint-plugin-prettier": "~4.0.0",

"husky": "~7.0.4",
"lint-staged": "~12.1.4",
"markdownlint-cli": "~0.30.0",
"mocha": "~9.1.3",
"lint-staged": "~12.3.4",
"markdownlint-cli": "~0.31.1",
"mocha": "~9.2.1",
"npm-run-all": "~4.1.5",
"pinst": "~2.1.6",
"pinst": "~3.0.0",
"prettier": "~2.5.1",
"sinon": "~12.0.1",
"sinon": "~13.0.1",
"ts-mockito": "~2.6.1",
"ts-node": "~10.4.0",
"typescript": "~4.5.4"
"ts-node": "~10.5.0",
"typescript": "~4.5.5"
}
}

@@ -86,10 +86,6 @@ # LDAPts

`bind(dn, password, [controls])`
`bind(dnOrSaslMechanism, [password], [controls])`
Performs a bind operation against the LDAP server.
The bind API only allows LDAP 'simple' binds (equivalent to HTTP Basic
Authentication) for now. Note that all client APIs can optionally take a single `Control` object or array
of `Control` objects. You probably don't need them though...
Arguments:

@@ -100,3 +96,3 @@

| `dnOrSaslMechanism` (string) | The name (DN) of the directory object that the client wishes to bind as or the SASL mechanism (PLAIN, EXTERNAL) |
| `[password]` (string) | Password for the target bind DN |
| `[password]` (string) | Password for the target bind DN. For SASL this is instead an optional set of encoded SASL credentials. |
| `[controls]` (Control|Control[]) | Optional `Control` object or array of `Control` objects |

@@ -230,3 +226,3 @@

Example (performs an LDAP 'whois' extended op):
Example (performs an LDAP 'whoami' extended op):

@@ -233,0 +229,0 @@ ```ts

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc