Rsk.AspNetCore.Scim 7.0.0
Supported
- Date Posted
- 18 December 2024
- Version
- 7.0.0
Features
- .NET Support
- In this release, we have added support for .NET 9 and have dropped support for .NET 6
- Improved Patching
- This release aims to improve the patching experience by including an in-memory patching solution in the SCIM component. The documentation provides more details.
- Request and Response Logging
- To facilitate the logging of SCIM requests/responses to assist in debugging. The
EnableRequestAndResponseLogging
property has been added to theScimServiceProviderConfigOptions
. See the documentation for more details.
- To facilitate the logging of SCIM requests/responses to assist in debugging. The
Bug Fixes
- 'Replace' Patch Operations
- Added support for patch requests that contain a 'replace' operation where the replacement value is empty. E.g.
{
"Operations": [
{
"op": "replace",
"path": "displayName",
"value": ""
}
],
"schemas": [
"urn:ietf:params:scim:api:messages:2.0:PatchOp"
]
}