scimgateway 5.2.5 → 5.3.0
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 +10 -2
- package/bun.lock +178 -30
- package/config/plugin-api.json +1 -1
- package/config/plugin-scim.json +1 -1
- package/lib/scim-stream.js +1 -1
- package/lib/scimdef-v1.json +2 -2
- package/lib/scimdef-v2.json +1 -1
- package/lib/scimgateway.ts +187 -6
- package/lib/utils-scim.ts +121 -28
- package/package.json +9 -9
- package/test/lib/plugin-loki_test.ts +73 -0
package/README.md
CHANGED
|
@@ -16,9 +16,10 @@ Validated through IdP's:
|
|
|
16
16
|
|
|
17
17
|
Latest news:
|
|
18
18
|
|
|
19
|
+
- [SCIM Bulk Operations](https://datatracker.ietf.org/doc/html/rfc7644#section-3.7) now supported
|
|
19
20
|
- Remote real-time log subscription for monitoring and centralized logging
|
|
20
|
-
using browser and url: https
|
|
21
|
-
curl -N https
|
|
21
|
+
using browser and url: `https://<host>/logger`
|
|
22
|
+
`curl -N https://<host>/logger -u user:password`
|
|
22
23
|
custom client API, see configuration notes
|
|
23
24
|
- By configuring the chainingBaseUrl, it is now possible to chain multiple gateways in sequence, such as `gateway1->gateway2->gateway3->endpoint`. In this setup, gateway beave much like a reverse proxy, validating authorization at each step unless PassThrough mode is enabled. Chaining is also supported in stream subscriber mode
|
|
24
25
|
- Email, onError and sendMail() supports more secure RESTful OAuth for Microsoft Exchange Online (ExO) and Google Workspace Gmail, alongside traditional SMTP Auth for all mail systems. HelperRest supports a wide range of common authentication methods, including basicAuth, bearerAuth, tokenAuth, oauth, oauthSamlBearer, oauthJwtBearer and Auth PassTrough
|
|
@@ -1404,6 +1405,13 @@ MIT © [Jarle Elshaug](https://www.elshaug.xyz)
|
|
|
1404
1405
|
|
|
1405
1406
|
## Change log
|
|
1406
1407
|
|
|
1408
|
+
### v5.3.0
|
|
1409
|
+
|
|
1410
|
+
[Improved]
|
|
1411
|
+
|
|
1412
|
+
- [SCIM Bulk Operations](https://datatracker.ietf.org/doc/html/rfc7644#section-3.7) now supported
|
|
1413
|
+
- Dependencies bump
|
|
1414
|
+
|
|
1407
1415
|
### v5.2.5
|
|
1408
1416
|
|
|
1409
1417
|
[Fixed]
|