Tags: openfga/python-sdk
Tags
release: v0.10.3 (#286) * chore: release 0.10.3 Release-As: 0.10.3 * release: v0.10.3 * fix: Update CHANGELOG to remove miscellaneous section Removed miscellaneous section and release note for version 0.10.3 from CHANGELOG. --------- Co-authored-by: openfga-releaser-bot <contact@openfga.dev> Co-authored-by: openfga-releaser-bot[bot] <274031225+openfga-releaser-bot[bot]@users.noreply.github.com> Co-authored-by: Anurag Bandyopadhyay <angbpy@gmail.com>
release: v0.10.2 (#278) * chore: release 0.10.2 Release-As: 0.10.2 * release: v0.10.2 * fix: Update CHANGELOG by removing miscellaneous section Removed miscellaneous section and release note for version 0.10.2 from CHANGELOG. --------- Co-authored-by: openfga-releaser-bot <contact@openfga.dev> Co-authored-by: openfga-releaser-bot[bot] <274031225+openfga-releaser-bot[bot]@users.noreply.github.com> Co-authored-by: Anurag Bandyopadhyay <angbpy@gmail.com>
release: v0.10.1 (#275) * chore: release 0.10.1 Release-As: 0.10.1 * release: v0.10.1 * fix: Update CHANGELOG to remove Miscellaneous section Removed Miscellaneous section and related release note from CHANGELOG. --------- Co-authored-by: openfga-releaser-bot <contact@openfga.dev> Co-authored-by: openfga-releaser-bot[bot] <274031225+openfga-releaser-bot[bot]@users.noreply.github.com> Co-authored-by: Anurag Bandyopadhyay <angbpy@gmail.com>
v0.10.0 - feat: add `execute_api_request` and `execute_streamed_api_request` methods to `OpenFgaClient` and `OpenFgaApi` for making arbitrary HTTP requests to any OpenFGA API endpoint with full auth, retry, and telemetry support (#252) - thanks @kcbiradar Breaking Changes - The `_return_http_data_only`, `_preload_content`, `_request_auth`, `async_req`, and `_request_timeout` kwargs have been removed from all `OpenFgaApi` and `SyncOpenFgaApi` endpoint methods. These were internal implementation details not intended for external use. `_return_http_data_only` is now hardcoded to `True`; all endpoint methods return the deserialized response object directly. Users relying on `_with_http_info` methods returning a `(data, status, headers)` tuple should use `execute_api_request` instead.
v0.9.8 - feat: add support for conflict options for Write operations: (#235) The client now supports setting `ConflictOptions` on `ClientWriteOptions` to control behavior when writing duplicate tuples or deleting non-existent tuples. This feature requires OpenFGA server [v1.10.0](https://github.com/openfga/openfga/releases/tag/v1.10.0) or later. See [Conflict Options for Write Operations](https://github.com/openfga/python-sdk/blob/main/README.md#conflict-options-for-write-operations) for more. - `on_duplicate` for handling duplicate tuple writes (ERROR or IGNORE) - `on_missing` for handling deletes of non-existent tuples (ERROR or IGNORE)
PreviousNext