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
2 changes: 1 addition & 1 deletion .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

strategy:
matrix:
java: [11, 17, 21, 24]
java: [11, 17, 21]

steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
Expand Down
12 changes: 11 additions & 1 deletion 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.8.1...HEAD)
## [Unreleased](https://github.com/openfga/java-sdk/compare/v0.8.2...HEAD)

## v0.8.2

### [0.8.2](https://github.com/openfga/java-sdk/compare/v0.8.1...v0.8.2) (2025-07-02)

Added:
- client: allow accessing the internal api client via `getApi` (#178)

Fixed:
- client: fix BatchCheck ignoring passed in model ID override (#177)

## v0.8.1

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

```groovy
implementation 'dev.openfga:openfga-sdk:0.8.1'
implementation 'dev.openfga:openfga-sdk:0.8.2'
```

* Gradle (Kotlin)

```kotlin
implementation("dev.openfga:openfga-sdk:0.8.1")
implementation("dev.openfga:openfga-sdk:0.8.2")
```

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

* Ivy

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

* SBT

```scala
libraryDependencies += "dev.openfga" % "openfga-sdk" % "0.8.1"
libraryDependencies += "dev.openfga" % "openfga-sdk" % "0.8.2"
```

* Leiningen

```edn
[dev.openfga/openfga-sdk "0.8.1"]
[dev.openfga/openfga-sdk "0.8.2"]
```


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.8.1'
version = '0.8.2'

repositories {
mavenCentral()
Expand Down
2 changes: 1 addition & 1 deletion example/example1/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.8.1")
implementation("dev.openfga:openfga-sdk:0.8.2")

// Serialization
implementation("com.fasterxml.jackson.core:jackson-core:$jacksonVersion")
Expand Down
6 changes: 3 additions & 3 deletions 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.8.1'
version = '0.8.2'
description = 'This is an autogenerated Java SDK for OpenFGA. It provides a wrapper around the [OpenFGA API definition](https://openfga.dev/api).'
url = 'https://openfga.dev'
licenses {
Expand Down Expand Up @@ -51,8 +51,8 @@ signing {
nexusPublishing {
repositories {
sonatype {
nexusUrl.set(uri('https://s01.oss.sonatype.org/service/local/'))
snapshotRepositoryUrl.set(uri('https://s01.oss.sonatype.org/content/repositories/snapshots/'))
nexusUrl.set(uri('https://ossrh-staging-api.central.sonatype.com/service/local/'))
snapshotRepositoryUrl.set(uri('https://central.sonatype.com/repository/maven-snapshots/'))
username.set(System.getenv('MAVEN_USERNAME'))
password.set(System.getenv('MAVEN_PASSWORD'))
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@
* Configurations for an api client.
*/
public class Configuration implements BaseConfiguration {
public static final String VERSION = "0.8.1";
public static final String VERSION = "0.8.2";

private static final String DEFAULT_API_URL = "http://localhost:8080";
private static final String DEFAULT_USER_AGENT = "openfga-sdk java/0.8.1";
private static final String DEFAULT_USER_AGENT = "openfga-sdk java/0.8.2";
private static final Duration DEFAULT_READ_TIMEOUT = Duration.ofSeconds(10);
private static final Duration DEFAULT_CONNECT_TIMEOUT = Duration.ofSeconds(10);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

class ConfigurationTest {
private static final String DEFAULT_API_URL = "http://localhost:8080";
private static final String DEFAULT_USER_AGENT = "openfga-sdk java/0.8.1";
private static final String DEFAULT_USER_AGENT = "openfga-sdk java/0.8.2";
private static final Duration DEFAULT_READ_TIMEOUT = Duration.ofSeconds(10);
private static final Duration DEFAULT_CONNECT_TIMEOUT = Duration.ofSeconds(10);
private static final Map<String, String> DEFAULT_HEADERS = Map.of();
Expand Down