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.5.0
4
+
5
+ ### [ 0.5.0] ( https://github.com/openfga/java-sdk/compare/v0.4.0...v0.5.0 ) (2024-06-14)
6
+ - chore!: remove excluded users from ListUsers response
7
+
8
+ BREAKING CHANGE:
9
+
10
+ This version removes ` getExcludedUsers ` and ` setExcludedUsers ` from the ` ListUsersResponse ` and ` ClientListUsersResponse ` classes,
11
+ for more details see the [ associated API change] ( https://github.com/openfga/api/pull/171 ) .
12
+
3
13
## v0.4.2
4
14
5
15
### [ 0.4.2] ( https://github.com/openfga/java-sdk/compare/v0.4.1...v0.4.2 ) (2024-05-02)
Original file line number Diff line number Diff line change @@ -76,13 +76,13 @@ It can be used with the following:
76
76
* Gradle (Groovy)
77
77
78
78
``` groovy
79
- implementation 'dev.openfga:openfga-sdk:0.4.2 '
79
+ implementation 'dev.openfga:openfga-sdk:0.5.0 '
80
80
```
81
81
82
82
* Gradle (Kotlin)
83
83
84
84
``` kotlin
85
- implementation(" dev.openfga:openfga-sdk:0.4.2 " )
85
+ implementation(" dev.openfga:openfga-sdk:0.5.0 " )
86
86
```
87
87
88
88
* Apache Maven
@@ -91,26 +91,26 @@ implementation("dev.openfga:openfga-sdk:0.4.2")
91
91
<dependency >
92
92
<groupId >dev.openfga</groupId >
93
93
<artifactId >openfga-sdk</artifactId >
94
- <version >0.4.2 </version >
94
+ <version >0.5.0 </version >
95
95
</dependency >
96
96
```
97
97
98
98
* Ivy
99
99
100
100
``` xml
101
- <dependency org =" dev.openfga" name =" openfga-sdk" rev =" 0.4.2 " />
101
+ <dependency org =" dev.openfga" name =" openfga-sdk" rev =" 0.5.0 " />
102
102
```
103
103
104
104
* SBT
105
105
106
106
``` scala
107
- libraryDependencies += " dev.openfga" % " openfga-sdk" % " 0.4.2 "
107
+ libraryDependencies += " dev.openfga" % " openfga-sdk" % " 0.5.0 "
108
108
```
109
109
110
110
* Leiningen
111
111
112
112
``` edn
113
- [dev.openfga/openfga-sdk " 0.4.2 " ]
113
+ [dev.openfga/openfga-sdk " 0.5.0 " ]
114
114
```
115
115
116
116
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.2 '
22
+ version = ' 0.5.0 '
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.2 '
9
+ version = ' 0.5.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).'
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.2 " ;
33
+ public static final String VERSION = "0.5.0 " ;
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.2 " ;
36
+ private static final String DEFAULT_USER_AGENT = "openfga-sdk java/0.5.0 " ;
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.2 " ;
25
+ private static final String DEFAULT_USER_AGENT = "openfga-sdk java/0.5.0 " ;
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