File tree Expand file tree Collapse file tree 7 files changed +19
-13
lines changed
main/java/dev/openfga/sdk/api/configuration
test/java/dev/openfga/sdk/api/configuration Expand file tree Collapse file tree 7 files changed +19
-13
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3- ## [ Unreleased] ( https://github.com/openfga/java-sdk/compare/v0.8.1...HEAD )
3+ ## [ Unreleased] ( https://github.com/openfga/java-sdk/compare/v0.8.2-beta.1...HEAD )
4+
5+ ## v0.8.2-beta.1
6+
7+ ### [ 0.8.2-beta.1] ( https://github.com/openfga/java-sdk/compare/v0.8.1...v0.8.2-beta.1 ) (2025-07-01)
8+
9+ - fix(client): fix passing model ID in BatchCheck (#177 )
410
511## v0.8.1
612
Original file line number Diff line number Diff line change @@ -79,13 +79,13 @@ It can be used with the following:
7979* Gradle (Groovy)
8080
8181``` groovy
82- implementation 'dev.openfga:openfga-sdk:0.8.1'
82+ implementation 'dev.openfga:openfga-sdk:0.8.2-beta. 1'
8383```
8484
8585* Gradle (Kotlin)
8686
8787``` kotlin
88- implementation(" dev.openfga:openfga-sdk:0.8.1" )
88+ implementation(" dev.openfga:openfga-sdk:0.8.2-beta. 1" )
8989```
9090
9191* Apache Maven
@@ -94,26 +94,26 @@ implementation("dev.openfga:openfga-sdk:0.8.1")
9494<dependency >
9595 <groupId >dev.openfga</groupId >
9696 <artifactId >openfga-sdk</artifactId >
97- <version >0.8.1</version >
97+ <version >0.8.2-beta. 1</version >
9898</dependency >
9999```
100100
101101* Ivy
102102
103103``` xml
104- <dependency org =" dev.openfga" name =" openfga-sdk" rev =" 0.8.1" />
104+ <dependency org =" dev.openfga" name =" openfga-sdk" rev =" 0.8.2-beta. 1" />
105105```
106106
107107* SBT
108108
109109``` scala
110- libraryDependencies += " dev.openfga" % " openfga-sdk" % " 0.8.1"
110+ libraryDependencies += " dev.openfga" % " openfga-sdk" % " 0.8.2-beta. 1"
111111```
112112
113113* Leiningen
114114
115115``` edn
116- [dev.openfga/openfga-sdk " 0.8.1" ]
116+ [dev.openfga/openfga-sdk " 0.8.2-beta. 1" ]
117117```
118118
119119
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ plugins {
1919apply from : ' publish.gradle'
2020
2121group = ' dev.openfga'
22- version = ' 0.8.1'
22+ version = ' 0.8.2-beta. 1'
2323
2424repositories {
2525 mavenCentral()
Original file line number Diff line number Diff line change 2323}
2424
2525dependencies {
26- implementation(" dev.openfga:openfga-sdk:0.8.1" )
26+ implementation(" dev.openfga:openfga-sdk:0.8.2-beta. 1" )
2727
2828 // Serialization
2929 implementation(" com.fasterxml.jackson.core:jackson-core:$jacksonVersion " )
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ publishing {
66 pom {
77 group = ' dev.openfga'
88 name = ' openfga-sdk'
9- version = ' 0.8.1'
9+ version = ' 0.8.2-beta. 1'
1010 description = ' This is an autogenerated Java SDK for OpenFGA. It provides a wrapper around the [OpenFGA API definition](https://openfga.dev/api).'
1111 url = ' https://openfga.dev'
1212 licenses {
Original file line number Diff line number Diff line change 3030 * Configurations for an api client.
3131 */
3232public class Configuration implements BaseConfiguration {
33- public static final String VERSION = "0.8.1" ;
33+ public static final String VERSION = "0.8.2-beta. 1" ;
3434
3535 private static final String DEFAULT_API_URL = "http://localhost:8080" ;
36- private static final String DEFAULT_USER_AGENT = "openfga-sdk java/0.8.1" ;
36+ private static final String DEFAULT_USER_AGENT = "openfga-sdk java/0.8.2-beta. 1" ;
3737 private static final Duration DEFAULT_READ_TIMEOUT = Duration .ofSeconds (10 );
3838 private static final Duration DEFAULT_CONNECT_TIMEOUT = Duration .ofSeconds (10 );
3939
Original file line number Diff line number Diff line change 2222
2323class ConfigurationTest {
2424 private static final String DEFAULT_API_URL = "http://localhost:8080" ;
25- private static final String DEFAULT_USER_AGENT = "openfga-sdk java/0.8.1" ;
25+ private static final String DEFAULT_USER_AGENT = "openfga-sdk java/0.8.2-beta. 1" ;
2626 private static final Duration DEFAULT_READ_TIMEOUT = Duration .ofSeconds (10 );
2727 private static final Duration DEFAULT_CONNECT_TIMEOUT = Duration .ofSeconds (10 );
2828 private static final Map <String , String > DEFAULT_HEADERS = Map .of ();
You can’t perform that action at this time.
0 commit comments