Skip to content

Commit f9b9641

Browse files
authored
Merge pull request #88 from openfga/release/v0.5.0
release: v0.5.0
2 parents 1ff6471 + 0e29b41 commit f9b9641

File tree

6 files changed

+21
-11
lines changed

6 files changed

+21
-11
lines changed

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Changelog
22

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+
313
## v0.4.2
414

515
### [0.4.2](https://github.com/openfga/java-sdk/compare/v0.4.1...v0.4.2) (2024-05-02)

README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -76,13 +76,13 @@ It can be used with the following:
7676
* Gradle (Groovy)
7777

7878
```groovy
79-
implementation 'dev.openfga:openfga-sdk:0.4.2'
79+
implementation 'dev.openfga:openfga-sdk:0.5.0'
8080
```
8181

8282
* Gradle (Kotlin)
8383

8484
```kotlin
85-
implementation("dev.openfga:openfga-sdk:0.4.2")
85+
implementation("dev.openfga:openfga-sdk:0.5.0")
8686
```
8787

8888
* Apache Maven
@@ -91,26 +91,26 @@ implementation("dev.openfga:openfga-sdk:0.4.2")
9191
<dependency>
9292
<groupId>dev.openfga</groupId>
9393
<artifactId>openfga-sdk</artifactId>
94-
<version>0.4.2</version>
94+
<version>0.5.0</version>
9595
</dependency>
9696
```
9797

9898
* Ivy
9999

100100
```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"/>
102102
```
103103

104104
* SBT
105105

106106
```scala
107-
libraryDependencies += "dev.openfga" % "openfga-sdk" % "0.4.2"
107+
libraryDependencies += "dev.openfga" % "openfga-sdk" % "0.5.0"
108108
```
109109

110110
* Leiningen
111111

112112
```edn
113-
[dev.openfga/openfga-sdk "0.4.2"]
113+
[dev.openfga/openfga-sdk "0.5.0"]
114114
```
115115

116116

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ plugins {
1919
apply from: 'publish.gradle'
2020

2121
group = 'dev.openfga'
22-
version = '0.4.2'
22+
version = '0.5.0'
2323

2424
repositories {
2525
mavenCentral()

publish.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ publishing {
66
pom {
77
group = 'dev.openfga'
88
name = 'openfga-sdk'
9-
version = '0.4.2'
9+
version = '0.5.0'
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 {

src/main/java/dev/openfga/sdk/api/configuration/Configuration.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@
3030
* Configurations for an api client.
3131
*/
3232
public class Configuration implements BaseConfiguration {
33-
public static final String VERSION = "0.4.2";
33+
public static final String VERSION = "0.5.0";
3434

3535
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";
3737
private static final Duration DEFAULT_READ_TIMEOUT = Duration.ofSeconds(10);
3838
private static final Duration DEFAULT_CONNECT_TIMEOUT = Duration.ofSeconds(10);
3939

src/test/java/dev/openfga/sdk/api/configuration/ConfigurationTest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
class ConfigurationTest {
2424
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";
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();

0 commit comments

Comments
 (0)