scimgateway 5.2.4 → 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 +18 -3
- 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 +122 -29
- 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
|
|
@@ -175,7 +176,8 @@ Upgrade to latest minor version:
|
|
|
175
176
|
|
|
176
177
|
Note, always backup/copy c:\\my-scimgateway before upgrading. Custom plugins and corresponding configuration files will not be affected.
|
|
177
178
|
|
|
178
|
-
To force a major upgrade (version x.\*.\* => y.\*.\*) that will brake compability with any existing custom plugins, we have to include the `@latest` suffix in the install command:
|
|
179
|
+
To force a major upgrade (version x.\*.\* => y.\*.\*) that will brake compability with any existing custom plugins, we have to include the `@latest` suffix in the install command:
|
|
180
|
+
`bun install scimgateway@latest`
|
|
179
181
|
|
|
180
182
|
##### Avoid (re-)adding the files created during `postinstall`
|
|
181
183
|
|
|
@@ -1403,6 +1405,19 @@ MIT © [Jarle Elshaug](https://www.elshaug.xyz)
|
|
|
1403
1405
|
|
|
1404
1406
|
## Change log
|
|
1405
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
|
+
|
|
1415
|
+
### v5.2.5
|
|
1416
|
+
|
|
1417
|
+
[Fixed]
|
|
1418
|
+
|
|
1419
|
+
- endpointMapper (used by plugin-entra-id and plugin-ldap) in v5 when using mapping type=array, the first element was excluded on outbound mapping in some use cases
|
|
1420
|
+
|
|
1406
1421
|
### v5.2.4
|
|
1407
1422
|
|
|
1408
1423
|
[Improved]
|