File tree Expand file tree Collapse file tree
main/java/dev/openfga/sdk/api/configuration
test/java/dev/openfga/sdk/api/configuration Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# Changelog
22
3- ## [ Unreleased] ( https://github.com/openfga/java-sdk/compare/v0.9.0...HEAD )
3+ ## [ Unreleased] ( https://github.com/openfga/java-sdk/compare/v0.9.1...HEAD )
4+
5+ ## v0.9.1
6+
7+ ### [ 0.9.1] ( https://github.com/openfga/java-sdk/compare/v0.9.0...v0.9.1 ) (2025-10-07)
8+
9+ ### Fixed
10+
11+ - Override ` defaultHeaders ` in ` ClientConfiguration ` to return correct type when using method (#226 )
12+ - Correctly handle options with no modelID set in ` readAuthorizationModel ` (#226 )
13+ - Include headers when converting from ` ClientListRelationsOptions ` to ` ClientBatchCheckOptions ` (#226 )
414
515## v0.9.0
616
Original file line number Diff line number Diff line change @@ -82,13 +82,13 @@ It can be used with the following:
8282* Gradle (Groovy)
8383
8484``` groovy
85- implementation 'dev.openfga:openfga-sdk:0.9.0 '
85+ implementation 'dev.openfga:openfga-sdk:0.9.1 '
8686```
8787
8888* Gradle (Kotlin)
8989
9090``` kotlin
91- implementation(" dev.openfga:openfga-sdk:0.9.0 " )
91+ implementation(" dev.openfga:openfga-sdk:0.9.1 " )
9292```
9393
9494* Apache Maven
@@ -97,26 +97,26 @@ implementation("dev.openfga:openfga-sdk:0.9.0")
9797<dependency >
9898 <groupId >dev.openfga</groupId >
9999 <artifactId >openfga-sdk</artifactId >
100- <version >0.9.0 </version >
100+ <version >0.9.1 </version >
101101</dependency >
102102```
103103
104104* Ivy
105105
106106``` xml
107- <dependency org =" dev.openfga" name =" openfga-sdk" rev =" 0.9.0 " />
107+ <dependency org =" dev.openfga" name =" openfga-sdk" rev =" 0.9.1 " />
108108```
109109
110110* SBT
111111
112112``` scala
113- libraryDependencies += " dev.openfga" % " openfga-sdk" % " 0.9.0 "
113+ libraryDependencies += " dev.openfga" % " openfga-sdk" % " 0.9.1 "
114114```
115115
116116* Leiningen
117117
118118``` edn
119- [dev.openfga/openfga-sdk " 0.9.0 " ]
119+ [dev.openfga/openfga-sdk " 0.9.1 " ]
120120```
121121
122122
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.9.0 '
22+ version = ' 0.9.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.9.0 " )
26+ implementation(" dev.openfga:openfga-sdk:0.9.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.9.0 '
9+ version = ' 0.9.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.9.0 " ;
33+ public static final String VERSION = "0.9.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.9.0 " ;
36+ private static final String DEFAULT_USER_AGENT = "openfga-sdk java/0.9.1 " ;
3737 private static final Duration DEFAULT_READ_TIMEOUT = Duration .ofSeconds (10 );
3838 private static final Duration DEFAULT_CONNECT_TIMEOUT = Duration .ofSeconds (10 );
3939 private static final int DEFAULT_MAX_RETRIES = 3 ;
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.9.0 " ;
25+ private static final String DEFAULT_USER_AGENT = "openfga-sdk java/0.9.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