0.9.0 (2025-12-09)
Added
- feat: add server-side
BatchCheck()method using/batch-checkAPI endpoint- See Batch Check documentation for usage examples and configuration
Changed
- BREAKING: Existing
BatchCheck()renamed toClientBatchCheck()
Fixed
- fix: ApiToken credentials no longer cause reserved header exception (#146)
Warning
BREAKING CHANGES:
BatchCheck() renamed: The existing client-side batch check method has been renamed from BatchCheck() to ClientBatchCheck(). The BatchCheck() method name is now reserved for the new server-side check which requires OpenFGA server v1.8.0+. If you are using the existing client-side logic, you must update your method calls:
Before:
var response = await client.BatchCheck(checkRequests, options);
After:
var response = await client.ClientBatchCheck(checkRequests, options);
For configuration options and behavior details, see README documentation