Skip to content

Commit 3c4a107

Browse files
committed
release v0.9.4
1 parent 7e9a960 commit 3c4a107

File tree

6 files changed

+17
-14
lines changed

6 files changed

+17
-14
lines changed

CHANGELOG.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,21 @@
11
# Changelog
22

3-
## [Unreleased](https://github.com/openfga/java-sdk/compare/v0.9.3...HEAD)
3+
## [Unreleased](https://github.com/openfga/java-sdk/compare/v0.9.4...HEAD)
4+
5+
## v0.9.4
6+
7+
### [0.9.4](https://github.com/openfga/java-sdk/compare/v0.9.3...v0.9.4)) (2025-12-05)
48

59
### Changed
610
- Improved error handling and integration test coverage for FgaError and related classes. (#260)
711

812
## v0.9.3
913

10-
### [0.9.3](https://github.com/openfga/java-sdk/compare/v0.9.2...v0.9.3)) (2025-11-10)
14+
### [0.9.3](https://github.com/openfga/java-sdk/compare/v0.9.2...v0.9.3) (2025-11-10)
1115

1216
### Fixed
1317

1418
- fix: preserve response headers in transaction write operations (#254)
15-
- feat: Add `streamedListObjects` API endpoint with consumer callback support (#252)
1619

1720
## v0.9.2
1821

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff 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.3'
85+
implementation 'dev.openfga:openfga-sdk:0.9.4'
8686
```
8787

8888
* Gradle (Kotlin)
8989

9090
```kotlin
91-
implementation("dev.openfga:openfga-sdk:0.9.3")
91+
implementation("dev.openfga:openfga-sdk:0.9.4")
9292
```
9393

9494
* Apache Maven
@@ -97,26 +97,26 @@ implementation("dev.openfga:openfga-sdk:0.9.3")
9797
<dependency>
9898
<groupId>dev.openfga</groupId>
9999
<artifactId>openfga-sdk</artifactId>
100-
<version>0.9.3</version>
100+
<version>0.9.4</version>
101101
</dependency>
102102
```
103103

104104
* Ivy
105105

106106
```xml
107-
<dependency org="dev.openfga" name="openfga-sdk" rev="0.9.3"/>
107+
<dependency org="dev.openfga" name="openfga-sdk" rev="0.9.4"/>
108108
```
109109

110110
* SBT
111111

112112
```scala
113-
libraryDependencies += "dev.openfga" % "openfga-sdk" % "0.9.3"
113+
libraryDependencies += "dev.openfga" % "openfga-sdk" % "0.9.4"
114114
```
115115

116116
* Leiningen
117117

118118
```edn
119-
[dev.openfga/openfga-sdk "0.9.3"]
119+
[dev.openfga/openfga-sdk "0.9.4"]
120120
```
121121

122122

build.gradle

Lines changed: 1 addition & 1 deletion
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.9.3'
22+
version = '0.9.4'
2323

2424
repositories {
2525
mavenCentral()

examples/basic-examples/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ ext {
2323
}
2424

2525
dependencies {
26-
implementation("dev.openfga:openfga-sdk:0.9.3")
26+
implementation("dev.openfga:openfga-sdk:0.9.4")
2727

2828
// Serialization
2929
implementation("com.fasterxml.jackson.core:jackson-core:$jacksonVersion")

publish.gradle

Lines changed: 1 addition & 1 deletion
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.9.3'
9+
version = '0.9.4'
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/constants/FgaConstants.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@
1919
public final class FgaConstants {
2020

2121
/** Version of the OpenFGA Java SDK. */
22-
public static final String SDK_VERSION = "0.9.3";
22+
public static final String SDK_VERSION = "0.9.4";
2323

2424
/** User agent used in HTTP requests. */
25-
public static final String USER_AGENT = "openfga-sdk java/0.9.3";
25+
public static final String USER_AGENT = "openfga-sdk java/0.9.4";
2626

2727
/** Example API domain for documentation/tests. */
2828
public static final String SAMPLE_BASE_DOMAIN = "fga.example";

0 commit comments

Comments
 (0)