Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 11 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
# Changelog

## [Unreleased](https://github.com/openfga/java-sdk/compare/v0.9.5...HEAD)
## [Unreleased](https://github.com/openfga/java-sdk/compare/v0.9.6...HEAD)

## v0.9.6

### [0.9.6](https://github.com/openfga/java-sdk/compare/v0.9.5...v0.9.6) (2026-02-18)

### Added
- Introduced `ApiExecutor` for executing custom HTTP requests to OpenFGA API endpoints (#273, #277)

### Breaking Changes
- Minimum Java version requirement increased to Java 17 (#282) - Java 11 support removed (#282)

## v0.9.5

Expand All @@ -9,8 +19,6 @@
### Added
- feat: support for streamed list objects (#252, #272)

### Added
- Introduced `ApiExecutor` for executing custom HTTP requests to OpenFGA API endpoints

## v0.9.4

Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,13 +83,13 @@ It can be used with the following:
* Gradle (Groovy)

```groovy
implementation 'dev.openfga:openfga-sdk:0.9.5'
implementation 'dev.openfga:openfga-sdk:0.9.6'
```

* Gradle (Kotlin)

```kotlin
implementation("dev.openfga:openfga-sdk:0.9.5")
implementation("dev.openfga:openfga-sdk:0.9.6")
```

* Apache Maven
Expand All @@ -98,26 +98,26 @@ implementation("dev.openfga:openfga-sdk:0.9.5")
<dependency>
<groupId>dev.openfga</groupId>
<artifactId>openfga-sdk</artifactId>
<version>0.9.5</version>
<version>0.9.6</version>
</dependency>
```

* Ivy

```xml
<dependency org="dev.openfga" name="openfga-sdk" rev="0.9.5"/>
<dependency org="dev.openfga" name="openfga-sdk" rev="0.9.6"/>
```

* SBT

```scala
libraryDependencies += "dev.openfga" % "openfga-sdk" % "0.9.5"
libraryDependencies += "dev.openfga" % "openfga-sdk" % "0.9.6"
```

* Leiningen

```edn
[dev.openfga/openfga-sdk "0.9.5"]
[dev.openfga/openfga-sdk "0.9.6"]
```


Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ plugins {
apply from: 'publish.gradle'

group = 'dev.openfga'
version = '0.9.5'
version = '0.9.6'

repositories {
mavenCentral()
Expand Down
2 changes: 1 addition & 1 deletion examples/basic-examples/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ ext {
}

dependencies {
implementation("dev.openfga:openfga-sdk:0.9.5")
implementation("dev.openfga:openfga-sdk:0.9.6")

// Serialization
implementation("com.fasterxml.jackson.core:jackson-core:$jacksonVersion")
Expand Down
2 changes: 1 addition & 1 deletion examples/opentelemetry/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ repositories {
}

ext {
fgaSdkVersion = "0.9.5"
fgaSdkVersion = "0.9.6"
openTelemetryVersion = "1.58.0"
openTelemetryAlphaVersion = "1.58.0-alpha"
}
Expand Down
2 changes: 1 addition & 1 deletion examples/streamed-list-objects/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ ext {

dependencies {
// Use local build of SDK
implementation files('../../build/libs/openfga-sdk-0.9.5.jar')
implementation files('../../build/libs/openfga-sdk-0.9.6.jar')
Copy link

Copilot AI Feb 18, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This example references a specific local JAR filename that includes the SDK version. That requires manual updates every release and will break if the built artifact name/version differs (e.g., snapshots or classifiers). Consider deriving the filename from a single version property, using a fileTree pattern, or switching the example to resolve the SDK via Maven (e.g., mavenLocal() or a normal dependency) to avoid frequent edits.

Suggested change
implementation files('../../build/libs/openfga-sdk-0.9.6.jar')
implementation fileTree(dir: '../../build/libs', include: 'openfga-sdk-*.jar')

Copilot uses AI. Check for mistakes.

// OpenFGA Language SDK for DSL transformation
implementation("dev.openfga:openfga-language:v0.2.0-beta.1")
Expand Down
2 changes: 1 addition & 1 deletion publish.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ publishing {
pom {
group = 'dev.openfga'
name = 'openfga-sdk'
version = '0.9.5'
version = '0.9.6'
description = 'This is an autogenerated Java SDK for OpenFGA. It provides a wrapper around the [OpenFGA API definition](https://openfga.dev/api).'
Comment on lines 7 to 10
Copy link

Copilot AI Feb 18, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In the pom {} metadata block, group/version are hardcoded and duplicated with the project coordinates (group/version in the root build.gradle). This can drift across releases and is a bit misleading since publication coordinates are typically controlled on the MavenPublication (or inherited from the project). Consider removing the hardcoded version (and group if possible) and relying on project.version/project.group, or setting the publication’s coordinates explicitly on the MavenPublication instead of inside pom {}.

Copilot uses AI. Check for mistakes.
url = 'https://openfga.dev'
licenses {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
public final class FgaConstants {

/** Version of the OpenFGA Java SDK. */
public static final String SDK_VERSION = "0.9.5";
public static final String SDK_VERSION = "0.9.6";

/** User agent used in HTTP requests. */
public static final String USER_AGENT = "openfga-sdk java/" + SDK_VERSION;
Expand Down
Loading