scimgateway 5.1.7 → 5.1.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +8 -2
- package/bun.lock +638 -638
- package/index.ts +1 -2
- package/lib/plugin-ldap.ts +5 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -190,8 +190,7 @@ For Node.js (and also Bun), we might set the property `scimgateway_postinstall_s
|
|
|
190
190
|
try {
|
|
191
191
|
await import(`./lib/plugin-${plugin}.ts`)
|
|
192
192
|
} catch (err: any) {
|
|
193
|
-
console.error(
|
|
194
|
-
console.log()
|
|
193
|
+
console.error(err)
|
|
195
194
|
}
|
|
196
195
|
}
|
|
197
196
|
|
|
@@ -1292,6 +1291,13 @@ MIT © [Jarle Elshaug](https://www.elshaug.xyz)
|
|
|
1292
1291
|
|
|
1293
1292
|
## Change log
|
|
1294
1293
|
|
|
1294
|
+
### v5.1.8
|
|
1295
|
+
|
|
1296
|
+
[Fixed]
|
|
1297
|
+
|
|
1298
|
+
- plugin-ldap, dn that includes double underscore `__` not correctly handled
|
|
1299
|
+
|
|
1300
|
+
|
|
1295
1301
|
### v5.1.7
|
|
1296
1302
|
|
|
1297
1303
|
[Fixed]
|