scimgateway 4.5.3 → 4.5.4
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 +5 -3
- package/lib/scimgateway.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1163,6 +1163,11 @@ MIT © [Jarle Elshaug](https://www.elshaug.xyz)
|
|
|
1163
1163
|
|
|
1164
1164
|
## Change log
|
|
1165
1165
|
|
|
1166
|
+
### v4.5.4
|
|
1167
|
+
|
|
1168
|
+
[Fixed]
|
|
1169
|
+
|
|
1170
|
+
- Delete User missing url-decoding of id e.g. using ldap-dn as id
|
|
1166
1171
|
|
|
1167
1172
|
### v4.5.3
|
|
1168
1173
|
|
|
@@ -1170,9 +1175,6 @@ MIT © [Jarle Elshaug](https://www.elshaug.xyz)
|
|
|
1170
1175
|
|
|
1171
1176
|
- plugin-api configuration file having new credentials for dummy-json testing
|
|
1172
1177
|
|
|
1173
|
-
|
|
1174
|
-
### v4.5.2
|
|
1175
|
-
|
|
1176
1178
|
[Improved]
|
|
1177
1179
|
|
|
1178
1180
|
- Dependencies bump
|
package/lib/scimgateway.js
CHANGED
|
@@ -1353,7 +1353,7 @@ const ScimGateway = function () {
|
|
|
1353
1353
|
let u = ctx.request.originalUrl.substr(0, ctx.request.originalUrl.lastIndexOf('/'))
|
|
1354
1354
|
u = u.substr(u.lastIndexOf('/') + 1) // u = Users, Groups
|
|
1355
1355
|
const handle = handler[u]
|
|
1356
|
-
const id = ctx.params.id
|
|
1356
|
+
const id = decodeURIComponent(ctx.params.id)
|
|
1357
1357
|
logger.debug(`${gwName}[${pluginName}] [Delete ${handle.description}] id=${id}`)
|
|
1358
1358
|
|
|
1359
1359
|
try {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "scimgateway",
|
|
3
|
-
"version": "4.5.
|
|
3
|
+
"version": "4.5.4",
|
|
4
4
|
"description": "Using SCIM protocol as a gateway for user provisioning to other endpoints",
|
|
5
5
|
"author": "Jarle Elshaug <jarle.elshaug@gmail.com> (https://elshaug.xyz)",
|
|
6
6
|
"homepage": "https://elshaug.xyz",
|