Socket
Socket
Sign inDemoInstall

ldapts

Package Overview
Dependencies
Maintainers
0
Versions
100
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ldapts - npm Package Compare versions

Comparing version 7.2.0 to 7.2.1

5

dist/index.d.ts

@@ -919,2 +919,7 @@ import { BerWriter, BerReader } from 'asn1';

}
declare global {
interface SymbolConstructor {
readonly asyncDispose: unique symbol;
}
}
declare class Client {

@@ -921,0 +926,0 @@ private clientOptions;

24

package.json
{
"name": "ldapts",
"version": "7.2.0",
"version": "7.2.1",
"description": "LDAP client",

@@ -33,4 +33,4 @@ "main": "./dist/index.cjs",

"lint-staged": "lint-staged",
"docker:up": "docker-compose up -d",
"docker:down": "docker-compose down",
"docker:up": "docker compose up -d",
"docker:down": "docker compose down",
"beta": "npm publish --tag beta",

@@ -80,6 +80,6 @@ "prepublishOnly": "npm run lint && npm run build && npm run test && pinst --disable",

"devDependencies": {
"@types/chai": "~4.3.19",
"@types/chai-as-promised": "~8.0.0",
"@types/chai": "~5.0.0",
"@types/chai-as-promised": "~8.0.1",
"@types/debug": "~4.1.12",
"@types/mocha": "~10.0.7",
"@types/mocha": "~10.0.8",
"@types/node": ">=22",

@@ -91,7 +91,7 @@ "@types/sinon": "~17.0.3",

"chai-as-promised": "~8.0.0",
"eslint": "~9.10.0",
"eslint-config-decent": "^2.2.1",
"husky": "~9.1.5",
"eslint": "~9.11.1",
"eslint-config-decent": "^2.2.2",
"husky": "~9.1.6",
"lint-staged": "~15.2.10",
"markdownlint-cli": "~0.41.0",
"markdownlint-cli": "~0.42.0",
"mocha": "~10.7.3",

@@ -101,5 +101,5 @@ "npm-run-all": "~4.1.5",

"prettier": "~3.3.3",
"sinon": "~18.0.0",
"sinon": "~19.0.2",
"ts-mockito": "~2.6.1",
"tsx": "~4.19.0",
"tsx": "~4.19.1",
"typescript": "~5.6.2",

@@ -106,0 +106,0 @@ "unbuild": "2.0.0"

@@ -595,3 +595,3 @@ # LDAPts

```shell
docker-compose up -d
docker compose up -d
```

@@ -602,3 +602,3 @@

```shell
docker-compose down
docker compose down
```

@@ -139,2 +139,11 @@ import * as net from 'net';

// @ts-expect-error - Polyfill Symbol.asyncDispose
Symbol.asyncDispose ??= Symbol('Symbol.asyncDispose');
declare global {
interface SymbolConstructor {
readonly asyncDispose: unique symbol;
}
}
export class Client {

@@ -141,0 +150,0 @@ private clientOptions: ClientOptions;

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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