0.7.0 (2025-04-02)
- feat: fix and improve retries and rate limit handling. (#176)
The SDK now retries on network errors and the default retry handling has been fixed
for both the calls to the OpenFGA API and the API Token Issuer for those using ClientCredentials
The SDK now also respects the rate limit headers (Retry-After
) returned by the server and will retry the request after the specified time.
If the header is not sent or on network errors, it will fall back to exponential backoff. - feat: retry on network errors when calling the token issuer (#182)
- feat: add support for server-side BatchCheck (#187)
- fix: use defaults when transaction options were only partially set (#183)
- chore: log retry attempts when debug mode is enabled (#182)
Warning
BREAKING CHANGES:
This release contains a breaking change around its handling of BatchCheck
- The new
BatchCheck
requires OpenFGA v1.8.0+ server. - The existing
BatchCheck
method has been renamed toClientBatchCheck
. The existingBatchCheckResponse
has been renamed toClientBatchCheckResponse
.
NOTE:
This release was previously released as v0.6.6
, but has been re-released as v0.7.0
due to the breaking changes.