Comparing version 2.8.0 to 2.8.1
@@ -0,1 +1,4 @@ | ||
### 2.8.1 | ||
* Fix null/undefined values for attributes when calling add(). Fix #88 | ||
### 2.8.0 | ||
@@ -2,0 +5,0 @@ * Fix modifyDN to ignore escaped commas when determining NewSuperior. PR #87 Thanks @hasegawa-jun! |
@@ -173,2 +173,5 @@ "use strict"; | ||
} | ||
else if (value == null) { | ||
values = []; | ||
} | ||
else { | ||
@@ -175,0 +178,0 @@ values = [value]; |
{ | ||
"name": "ldapts", | ||
"version": "2.8.0", | ||
"version": "2.8.1", | ||
"description": "LDAP client", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
333764
5093