scimgateway 5.3.4 → 5.3.5
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 +7 -0
- package/bun.lock +57 -171
- package/lib/scimdef-v1.json +1 -1
- package/lib/scimdef-v2.json +1 -1
- package/lib/scimgateway.ts +110 -31
- package/lib/utils-scim.ts +1 -0
- package/lib/utils.ts +27 -2
- package/package.json +10 -10
- package/test/lib/plugin-loki_test.ts +53 -8
- package/test/lib/plugin-scim_test.ts +8 -6
package/README.md
CHANGED
|
@@ -16,6 +16,7 @@ Validated through IdP's:
|
|
|
16
16
|
|
|
17
17
|
Latest news:
|
|
18
18
|
|
|
19
|
+
- [ETag](https://datatracker.ietf.org/doc/html/rfc7644#section-3.14) now supported
|
|
19
20
|
- [Bulk Operations](https://datatracker.ietf.org/doc/html/rfc7644#section-3.7) now supported
|
|
20
21
|
- Remote real-time log subscription for monitoring and centralized logging
|
|
21
22
|
using browser and url: `https://<host>/logger`
|
|
@@ -1405,6 +1406,12 @@ MIT © [Jarle Elshaug](https://www.elshaug.xyz)
|
|
|
1405
1406
|
|
|
1406
1407
|
## Change log
|
|
1407
1408
|
|
|
1409
|
+
### v5.3.5
|
|
1410
|
+
|
|
1411
|
+
[Improved]
|
|
1412
|
+
|
|
1413
|
+
- ETag now supported and default included for all requests. Plugin may use custom ETag by returning meta.version.
|
|
1414
|
+
|
|
1408
1415
|
### v5.3.4
|
|
1409
1416
|
|
|
1410
1417
|
[Fixed]
|