You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- feat!: add support for server-side [`batchCheck`](https://openfga.dev/docs/interacting/relationship-queries#batch-check) method (#141) - thanks @piotrooo!!
10
+
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.
11
+
The existing `batchCheck` method has been renamed to `clientBatchCheck`.
12
+
The existing `BatchCheckResponse` has been renamed to `ClientBatchCheckResponse`.
13
+
- feat: add support for `start_time` parameter in `ReadChanges` endpoint (#137)
9
14
15
+
BREAKING CHANGES:
10
16
- Usage of the existing `batchCheck` method should now use the `clientBatchCheck` method.
Copy file name to clipboardExpand all lines: publish.gradle
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ publishing {
6
6
pom {
7
7
group ='dev.openfga'
8
8
name ='openfga-sdk'
9
-
version ='0.7.2'
9
+
version ='0.8.0'
10
10
description ='This is an autogenerated Java SDK for OpenFGA. It provides a wrapper around the [OpenFGA API definition](https://openfga.dev/api).'
0 commit comments