Skip to content

Commit 4c55350

Browse files
authored
release: v0.9.1 (#233)
* chore: misc updates based on api doc changes and file changes * release: v0.9.1
1 parent a84d17c commit 4c55350

File tree

10 files changed

+45
-37
lines changed

10 files changed

+45
-37
lines changed

.openapi-generator/FILES

Lines changed: 11 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,10 @@
44
.github/ISSUE_TEMPLATE/bug_report.yaml
55
.github/ISSUE_TEMPLATE/config.yaml
66
.github/ISSUE_TEMPLATE/feature_request.yaml
7-
.github/dependabot.yaml
87
.gitignore
98
CHANGELOG.md
109
CONTRIBUTING.md
1110
LICENSE
12-
NOTICE.txt
1311
README.md
1412
VERSION.txt
1513
api/openapi.yaml
@@ -102,18 +100,17 @@ docs/WriteAuthorizationModelResponse.md
102100
docs/WriteRequest.md
103101
docs/WriteRequestDeletes.md
104102
docs/WriteRequestWrites.md
105-
example/Makefile
106-
example/README.md
107-
example/example1/README.md
108-
example/example1/build.gradle
109-
example/example1/gradle.properties
110-
example/example1/gradle/wrapper/gradle-wrapper.jar
111-
example/example1/gradle/wrapper/gradle-wrapper.properties
112-
example/example1/gradlew
113-
example/example1/settings.gradle
114-
example/example1/src/main/java/dev/openfga/sdk/example/Example1.java
115-
example/example1/src/main/kotlin/dev/openfga/sdk/example/KotlinExample1.kt
116-
example/example1/src/main/resources/example1-auth-model.json
103+
examples/README.md
104+
examples/basic-examples/README.md
105+
examples/basic-examples/build.gradle
106+
examples/basic-examples/gradle.properties
107+
examples/basic-examples/gradle/wrapper/gradle-wrapper.jar
108+
examples/basic-examples/gradle/wrapper/gradle-wrapper.properties
109+
examples/basic-examples/gradlew
110+
examples/basic-examples/settings.gradle
111+
examples/basic-examples/src/main/java/dev/openfga/sdk/example/Example1.java
112+
examples/basic-examples/src/main/kotlin/dev/openfga/sdk/example/KotlinExample1.kt
113+
examples/basic-examples/src/main/resources/example1-auth-model.json
117114
gradle.properties
118115
gradle/wrapper/gradle-wrapper.jar
119116
gradle/wrapper/gradle-wrapper.properties

CHANGELOG.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,16 @@
11
# Changelog
22

3-
## [Unreleased](https://github.com/openfga/java-sdk/compare/v0.9.0...HEAD)
3+
## [Unreleased](https://github.com/openfga/java-sdk/compare/v0.9.1...HEAD)
4+
5+
## v0.9.1
6+
7+
### [0.9.1](https://github.com/openfga/java-sdk/compare/v0.9.0...v0.9.1) (2025-10-07)
8+
9+
### Fixed
10+
11+
- Override `defaultHeaders` in `ClientConfiguration` to return correct type when using method (#226)
12+
- Correctly handle options with no modelID set in `readAuthorizationModel` (#226)
13+
- Include headers when converting from `ClientListRelationsOptions` to `ClientBatchCheckOptions` (#226)
414

515
## v0.9.0
616

README.md

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
[![FOSSA Status](https://app.fossa.com/api/projects/git%2Bgithub.com%2Fopenfga%2Fjava-sdk.svg?type=shield)](https://app.fossa.com/projects/git%2Bgithub.com%2Fopenfga%2Fjava-sdk?ref=badge_shield)
99
[![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/openfga/java-sdk/badge)](https://securityscorecards.dev/viewer/?uri=github.com/openfga/java-sdk)
1010
[![Join our community](https://img.shields.io/badge/slack-cncf_%23openfga-40abb8.svg?logo=slack)](https://openfga.dev/community)
11-
[![X](https://img.shields.io/twitter/follow/openfga?color=%23179CF0&logo=twitter&style=flat-square "@openfga on Twitter")](https://x.com/openfga)
11+
[![X](https://img.shields.io/twitter/follow/openfga?color=%23179CF0&logo=x&style=flat-square "@openfga on X")](https://x.com/openfga)
1212

1313
This is an autogenerated Java SDK for OpenFGA. It provides a wrapper around the [OpenFGA API definition](https://openfga.dev/api).
1414

@@ -66,7 +66,7 @@ OpenFGA is designed to make it easy for application builders to model their perm
6666

6767
- [OpenFGA Documentation](https://openfga.dev/docs)
6868
- [OpenFGA API Documentation](https://openfga.dev/api/service)
69-
- [Twitter](https://twitter.com/openfga)
69+
- [X](https://x.com/openfga)
7070
- [OpenFGA Community](https://openfga.dev/community)
7171
- [Zanzibar Academy](https://zanzibar.academy)
7272
- [Google's Zanzibar Paper (2019)](https://research.google/pubs/pub48190/)
@@ -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.0'
85+
implementation 'dev.openfga:openfga-sdk:0.9.1'
8686
```
8787

8888
* Gradle (Kotlin)
8989

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

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

104104
* Ivy
105105

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

110110
* SBT
111111

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

116116
* Leiningen
117117

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

122122

@@ -300,6 +300,7 @@ public class Example {
300300
}
301301
```
302302

303+
303304
### Get your Store ID
304305

305306
You need your store id to call the OpenFGA API (unless it is to call the [CreateStore](#create-store) or [ListStores](#list-stores) methods).

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.0'
22+
version = '0.9.1'
2323

2424
repositories {
2525
mavenCentral()

0 commit comments

Comments
 (0)