Skip to content

Tags: openfga/js-sdk

Tags

v0.9.2

Toggle v0.9.2's commit message

Verified

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

- feat: add support for [streamedListObjects](https://openfga.dev/api/service#/Relationship%20Queries/StreamedListObjects). See [documentation](#streamed-list-objects)
- chore: remove node url dependency blocking browser usage (#300)
- feat: Report a per-http call metric (#303)

Verified

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

Verified

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

Verified

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

v0.9.2-beta.2

Toggle v0.9.2-beta.2's commit message

Verified

This tag was signed with the committer’s verified signature.
SoulPancake Anurag Bandyopadhyay
v0.9.2-beta.2

- feat: add support for [streamedListObjects](https://openfga.dev/api/service#/Relationship%20Queries/StreamedListObjects). See [documentation](#streamed-list-objects)
- chore: remove node url dependency blocking browser usage (#300)
- feat: Report a per-http call metric (#303)

v0.9.2-beta.1

Toggle v0.9.2-beta.1's commit message

Verified

This tag was signed with the committer’s verified signature.
SoulPancake Anurag Bandyopadhyay
v0.9.2-beta.1

- feat: add support for [streamedListObjects](https://openfga.dev/api/service#/Relationship%20Queries/StreamedListObjects). See [documentation](#streamed-list-objects)
- chore: remove node url dependency blocking browser usage (#300)
- feat: Report a per-http call metric (#303)

v0.9.1

Toggle v0.9.1's commit message

Verified

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

- feat: add support for handling Retry-After header (#267)
- feat: add support for conflict options for Write operations: (#276)
  The client now supports setting `conflict` on `ClientWriteRequestOpts` 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](./README.md#conflict-options-for-write-operations) for more.

v0.9.0

Toggle v0.9.0's commit message

Verified

This tag was signed with the committer’s verified signature.
ewanharris Ewan Harris
v0.9.0

- feat: support client assertion for client credentials authentication (#228)

v0.8.1

Toggle v0.8.1's commit message

Verified

This tag was signed with the committer’s verified signature.
ewanharris Ewan Harris
v0.8.1

- fix: change check for Node.js environment to fix issue where `process.title` cannot be read (#222)

v0.8.0

Toggle v0.8.0's commit message

Verified

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

- feat!: add support for server-side `BatchCheck` method. This is a more efficient way to check on multiple tuples than calling the existing client-side `BatchCheck`. Using this method requires an OpenFGA [v1.8.0+](https://github.com/openfga/openfga/releases/tag/v1.8.0) server.
    - The existing `BatchCheck` method has been renamed to `clientBatchCheck` and it now bundles the results in a field called `result` instead of `responses`.
    - The existing `BatchCheckResponse` has been renamed to `ClientBatchCheckResponse`.
- feat: add support for  startTime` parameter in `ReadChanges` endpoint
- feat: support contextual tuples and context in assertions
- feat: support contextual tuples in Expand
- fix: error correctly if apiUrl is not provided - thanks @Waheedsys (#161)
- fix: use provided axios instance in credentials refresh - thanks @Siddhant-K-code (#193)
- fix!: The minimum node version required by this SDK is now v16.15.0
- chore(docs): various cleanup and improvements - thanks @tmsagarofficial (#164), @vil02 (openfga/sdk-generator#424, openfga/sdk-generator#422), @sccalabr (openfga/sdk-generator#433)

BREAKING CHANGES:
- The minimum node version required by this SDK is now v16.15.0
- Usage of the existing `batchCheck` method should now use the `clientBatchCheck` method. The existing `BatchCheckResponse` has been renamed to `ClientBatchCheckResponse` and it now bundles the results in a field called `result` instead of `responses`.