scimgateway 5.3.3 → 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 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,36 @@ 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
+
1415
+ ### v5.3.4
1416
+
1417
+ [Fixed]
1418
+
1419
+ - PATCH operations (modifyUser/modifyGroup) that includes `null` values, will now be converted to empty string `""`
1420
+
1421
+ {
1422
+ "schemas": [
1423
+ "urn:ietf:params:scim:api:messages:2.0:PatchOp"
1424
+ ],
1425
+ "Operations": [{
1426
+ "op": "replace",
1427
+ "value": {
1428
+ "name": {
1429
+ "formatted": "Smith, John",
1430
+ "honorificPrefix": null
1431
+ }
1432
+ }}
1433
+ ]
1434
+ }
1435
+
1436
+ In the example above, following will be sent to plugin:
1437
+ { "name": { "formatted": "Smith, John", "honorificPrefix": "" } }
1438
+
1408
1439
  ### v5.3.3
1409
1440
 
1410
1441
  [Fixed]