Skip to content

Tags: openfga/python-sdk

Tags

v0.10.4

Toggle v0.10.4's commit message

Verified

This tag was signed with the committer’s verified signature.
openfga-bot OpenFGA Bot
Release v0.10.4

v0.10.3

Toggle v0.10.3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
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>

v0.10.2

Toggle v0.10.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
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>

v0.10.1

Toggle v0.10.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
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

Toggle v0.10.0's commit message

Verified

This tag was signed with the committer’s verified signature.
SoulPancake Anurag Bandyopadhyay
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.9

Toggle v0.9.9's commit message

Verified

This tag was signed with the committer’s verified signature.
SoulPancake Anurag Bandyopadhyay
v0.9.9

- feat: improve error messaging (#245)

v0.9.8

Toggle v0.9.8's commit message

Verified

This tag was signed with the committer’s verified signature.
rhamzeh Raghd Hamzeh
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)

v0.9.7

Toggle v0.9.7's commit message

Verified

This tag was signed with the committer’s verified signature.
evansims Evan Sims
v0.9.7

Added:
- `headers` configuration property (#233)

Fixed:
- per-request custom header precedence (#230)

v0.9.6

Toggle v0.9.6's commit message

Verified

This tag was signed with the committer’s verified signature.
rhamzeh Raghd Hamzeh
v0.9.6

- fix: reuse ssl context in the sync client
- feat: add OAuth2 scopes parameter support to CredentialConfiguration

v0.9.5

Toggle v0.9.5's commit message

Verified

This tag was signed with the committer’s verified signature.
evansims Evan Sims
v0.9.5

Fixed:
- aiohttp.ClientResponse.data should be awaited (#197) - thanks @cmbernard333