File tree 6 files changed +21
-11
lines changed
main/java/dev/openfga/sdk/api/configuration
test/java/dev/openfga/sdk/api/configuration
6 files changed +21
-11
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## v0.4.1
4
+
5
+ ### [ 0.4.1] ( https://github.com/openfga/java-sdk/compare/v0.4.0...v0.4.1 ) (2024-04-09)
6
+
7
+ - feat: support setting context on ListObjects - thanks @Didier-SimpleCommeDev
8
+ - feat: support setting context and contextual tuples on ListRelations
9
+ - feat: add retries to OAuth2 Client Credentials request
10
+ - feat: support modular models metadata
11
+ - fix: avoid clone of object mapper - thanks @paulosuzart
12
+
3
13
## v0.4.0
4
14
5
15
### [ 0.4.0] ( https://github.com/openfga/java-sdk/compare/v0.3.2...v0.4.0 ) (2024-03-04)
Original file line number Diff line number Diff line change @@ -75,13 +75,13 @@ It can be used with the following:
75
75
* Gradle (Groovy)
76
76
77
77
``` groovy
78
- implementation 'dev.openfga:openfga-sdk:0.4.0 '
78
+ implementation 'dev.openfga:openfga-sdk:0.4.1 '
79
79
```
80
80
81
81
* Gradle (Kotlin)
82
82
83
83
``` kotlin
84
- implementation(" dev.openfga:openfga-sdk:0.4.0 " )
84
+ implementation(" dev.openfga:openfga-sdk:0.4.1 " )
85
85
```
86
86
87
87
* Apache Maven
@@ -90,26 +90,26 @@ implementation("dev.openfga:openfga-sdk:0.4.0")
90
90
<dependency >
91
91
<groupId >dev.openfga</groupId >
92
92
<artifactId >openfga-sdk</artifactId >
93
- <version >0.4.0 </version >
93
+ <version >0.4.1 </version >
94
94
</dependency >
95
95
```
96
96
97
97
* Ivy
98
98
99
99
``` xml
100
- <dependency org =" dev.openfga" name =" openfga-sdk" rev =" 0.4.0 " />
100
+ <dependency org =" dev.openfga" name =" openfga-sdk" rev =" 0.4.1 " />
101
101
```
102
102
103
103
* SBT
104
104
105
105
``` scala
106
- libraryDependencies += " dev.openfga" % " openfga-sdk" % " 0.4.0 "
106
+ libraryDependencies += " dev.openfga" % " openfga-sdk" % " 0.4.1 "
107
107
```
108
108
109
109
* Leiningen
110
110
111
111
``` edn
112
- [dev.openfga/openfga-sdk " 0.4.0 " ]
112
+ [dev.openfga/openfga-sdk " 0.4.1 " ]
113
113
```
114
114
115
115
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ plugins {
19
19
apply from : ' publish.gradle'
20
20
21
21
group = ' dev.openfga'
22
- version = ' 0.4.0 '
22
+ version = ' 0.4.1 '
23
23
24
24
repositories {
25
25
mavenCentral()
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.4.0 '
9
+ version = ' 0.4.1 '
10
10
description = ' This is an autogenerated Java SDK for OpenFGA. It provides a wrapper around the [OpenFGA API definition](https://openfga.dev/api).'
11
11
url = ' https://openfga.dev'
12
12
licenses {
Original file line number Diff line number Diff line change 30
30
* Configurations for an api client.
31
31
*/
32
32
public class Configuration implements BaseConfiguration {
33
- public static final String VERSION = "0.4.0 " ;
33
+ public static final String VERSION = "0.4.1 " ;
34
34
35
35
private static final String DEFAULT_API_URL = "http://localhost:8080" ;
36
- private static final String DEFAULT_USER_AGENT = "openfga-sdk java/0.4.0 " ;
36
+ private static final String DEFAULT_USER_AGENT = "openfga-sdk java/0.4.1 " ;
37
37
private static final Duration DEFAULT_READ_TIMEOUT = Duration .ofSeconds (10 );
38
38
private static final Duration DEFAULT_CONNECT_TIMEOUT = Duration .ofSeconds (10 );
39
39
Original file line number Diff line number Diff line change 22
22
23
23
class ConfigurationTest {
24
24
private static final String DEFAULT_API_URL = "http://localhost:8080" ;
25
- private static final String DEFAULT_USER_AGENT = "openfga-sdk java/0.4.0 " ;
25
+ private static final String DEFAULT_USER_AGENT = "openfga-sdk java/0.4.1 " ;
26
26
private static final Duration DEFAULT_READ_TIMEOUT = Duration .ofSeconds (10 );
27
27
private static final Duration DEFAULT_CONNECT_TIMEOUT = Duration .ofSeconds (10 );
28
28
private static final Map <String , String > DEFAULT_HEADERS = Map .of ();
You can’t perform that action at this time.
0 commit comments