File tree Expand file tree Collapse file tree
src/main/java/dev/openfga/sdk/constants Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# Changelog
22
3- ## [ Unreleased] ( https://github.com/openfga/java-sdk/compare/v0.9.5...HEAD )
3+ ## [ Unreleased] ( https://github.com/openfga/java-sdk/compare/v0.9.6...HEAD )
4+
5+ ## v0.9.6
6+
7+ ### [ 0.9.6] ( https://github.com/openfga/java-sdk/compare/v0.9.5...v0.9.6 ) (2026-02-18)
8+
9+ ### Added
10+ - Introduced ` ApiExecutor ` for executing custom HTTP requests to OpenFGA API endpoints (#273 , #277 )
11+
12+ ### Breaking Changes
13+ - Minimum Java version requirement increased to Java 17 (#282 ) - Java 11 support removed (#282 )
414
515## v0.9.5
616
919### Added
1020- feat: support for streamed list objects (#252 , #272 )
1121
12- ### Added
13- - Introduced ` ApiExecutor ` for executing custom HTTP requests to OpenFGA API endpoints
1422
1523## v0.9.4
1624
Original file line number Diff line number Diff line change @@ -83,13 +83,13 @@ It can be used with the following:
8383* Gradle (Groovy)
8484
8585``` groovy
86- implementation 'dev.openfga:openfga-sdk:0.9.5 '
86+ implementation 'dev.openfga:openfga-sdk:0.9.6 '
8787```
8888
8989* Gradle (Kotlin)
9090
9191``` kotlin
92- implementation(" dev.openfga:openfga-sdk:0.9.5 " )
92+ implementation(" dev.openfga:openfga-sdk:0.9.6 " )
9393```
9494
9595* Apache Maven
@@ -98,26 +98,26 @@ implementation("dev.openfga:openfga-sdk:0.9.5")
9898<dependency >
9999 <groupId >dev.openfga</groupId >
100100 <artifactId >openfga-sdk</artifactId >
101- <version >0.9.5 </version >
101+ <version >0.9.6 </version >
102102</dependency >
103103```
104104
105105* Ivy
106106
107107``` xml
108- <dependency org =" dev.openfga" name =" openfga-sdk" rev =" 0.9.5 " />
108+ <dependency org =" dev.openfga" name =" openfga-sdk" rev =" 0.9.6 " />
109109```
110110
111111* SBT
112112
113113``` scala
114- libraryDependencies += " dev.openfga" % " openfga-sdk" % " 0.9.5 "
114+ libraryDependencies += " dev.openfga" % " openfga-sdk" % " 0.9.6 "
115115```
116116
117117* Leiningen
118118
119119``` edn
120- [dev.openfga/openfga-sdk " 0.9.5 " ]
120+ [dev.openfga/openfga-sdk " 0.9.6 " ]
121121```
122122
123123
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ plugins {
1919apply from : ' publish.gradle'
2020
2121group = ' dev.openfga'
22- version = ' 0.9.5 '
22+ version = ' 0.9.6 '
2323
2424repositories {
2525 mavenCentral()
Original file line number Diff line number Diff line change 2323}
2424
2525dependencies {
26- implementation(" dev.openfga:openfga-sdk:0.9.5 " )
26+ implementation(" dev.openfga:openfga-sdk:0.9.6 " )
2727
2828 // Serialization
2929 implementation(" com.fasterxml.jackson.core:jackson-core:$jacksonVersion " )
Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ repositories {
7474}
7575
7676ext {
77- fgaSdkVersion = " 0.9.5 "
77+ fgaSdkVersion = " 0.9.6 "
7878 openTelemetryVersion = " 1.58.0"
7979 openTelemetryAlphaVersion = " 1.58.0-alpha"
8080}
Original file line number Diff line number Diff line change 1717
1818dependencies {
1919 // Use local build of SDK
20- implementation files(' ../../build/libs/openfga-sdk-0.9.5 .jar' )
20+ implementation files(' ../../build/libs/openfga-sdk-0.9.6 .jar' )
2121
2222 // OpenFGA Language SDK for DSL transformation
2323 implementation(" dev.openfga:openfga-language:v0.2.0-beta.1" )
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ publishing {
66 pom {
77 group = ' dev.openfga'
88 name = ' openfga-sdk'
9- version = ' 0.9.5 '
9+ version = ' 0.9.6 '
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 {
Original file line number Diff line number Diff line change 1919public final class FgaConstants {
2020
2121 /** Version of the OpenFGA Java SDK. */
22- public static final String SDK_VERSION = "0.9.5 " ;
22+ public static final String SDK_VERSION = "0.9.6 " ;
2323
2424 /** User agent used in HTTP requests. */
2525 public static final String USER_AGENT = "openfga-sdk java/" + SDK_VERSION ;
You can’t perform that action at this time.
0 commit comments