Skip to content

Commit b7a0078

Browse files
authoredFeb 18, 2025··
release: release v0.8.1 (#151)
1 parent 25b2c7d commit b7a0078

File tree

7 files changed

+21
-13
lines changed

7 files changed

+21
-13
lines changed
 

‎CHANGELOG.md

+9-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,15 @@
11
# Changelog
22

3-
## [Unreleased](https://github.com/openfga/java-sdk/compare/v0.8.0...HEAD)
3+
## [Unreleased](https://github.com/openfga/java-sdk/compare/v0.8.1...HEAD)
44

5+
## v0.8.1
6+
7+
### [0.8.1](https://github.com/openfga/java-sdk/compare/v0.8.0...v0.8.1) (2025-02-18)
8+
9+
- fix: use HTTP 1.1 by default (#148)
10+
- fix: ensure default telemetry attributes are sent (#145)
11+
- feat: add batch check telemetry attribute (#143)
12+
513
## v0.8.0
614

715
### [0.8.0](https://github.com/openfga/java-sdk/compare/v0.7.2...v0.8.0) (2025-02-07)

‎README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -79,13 +79,13 @@ It can be used with the following:
7979
* Gradle (Groovy)
8080

8181
```groovy
82-
implementation 'dev.openfga:openfga-sdk:0.8.0'
82+
implementation 'dev.openfga:openfga-sdk:0.8.1'
8383
```
8484

8585
* Gradle (Kotlin)
8686

8787
```kotlin
88-
implementation("dev.openfga:openfga-sdk:0.8.0")
88+
implementation("dev.openfga:openfga-sdk:0.8.1")
8989
```
9090

9191
* Apache Maven
@@ -94,26 +94,26 @@ implementation("dev.openfga:openfga-sdk:0.8.0")
9494
<dependency>
9595
<groupId>dev.openfga</groupId>
9696
<artifactId>openfga-sdk</artifactId>
97-
<version>0.8.0</version>
97+
<version>0.8.1</version>
9898
</dependency>
9999
```
100100

101101
* Ivy
102102

103103
```xml
104-
<dependency org="dev.openfga" name="openfga-sdk" rev="0.8.0"/>
104+
<dependency org="dev.openfga" name="openfga-sdk" rev="0.8.1"/>
105105
```
106106

107107
* SBT
108108

109109
```scala
110-
libraryDependencies += "dev.openfga" % "openfga-sdk" % "0.8.0"
110+
libraryDependencies += "dev.openfga" % "openfga-sdk" % "0.8.1"
111111
```
112112

113113
* Leiningen
114114

115115
```edn
116-
[dev.openfga/openfga-sdk "0.8.0"]
116+
[dev.openfga/openfga-sdk "0.8.1"]
117117
```
118118

119119

‎build.gradle

+1-1
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.8.0'
22+
version = '0.8.1'
2323

2424
repositories {
2525
mavenCentral()

‎example/example1/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ ext {
2323
}
2424

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

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

‎publish.gradle

+1-1
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.8.0'
9+
version = '0.8.1'
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/api/configuration/Configuration.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@
3030
* Configurations for an api client.
3131
*/
3232
public class Configuration implements BaseConfiguration {
33-
public static final String VERSION = "0.8.0";
33+
public static final String VERSION = "0.8.1";
3434

3535
private static final String DEFAULT_API_URL = "http://localhost:8080";
36-
private static final String DEFAULT_USER_AGENT = "openfga-sdk java/0.8.0";
36+
private static final String DEFAULT_USER_AGENT = "openfga-sdk java/0.8.1";
3737
private static final Duration DEFAULT_READ_TIMEOUT = Duration.ofSeconds(10);
3838
private static final Duration DEFAULT_CONNECT_TIMEOUT = Duration.ofSeconds(10);
3939

‎src/test/java/dev/openfga/sdk/api/configuration/ConfigurationTest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
class ConfigurationTest {
2424
private static final String DEFAULT_API_URL = "http://localhost:8080";
25-
private static final String DEFAULT_USER_AGENT = "openfga-sdk java/0.8.0";
25+
private static final String DEFAULT_USER_AGENT = "openfga-sdk java/0.8.1";
2626
private static final Duration DEFAULT_READ_TIMEOUT = Duration.ofSeconds(10);
2727
private static final Duration DEFAULT_CONNECT_TIMEOUT = Duration.ofSeconds(10);
2828
private static final Map<String, String> DEFAULT_HEADERS = Map.of();

0 commit comments

Comments
 (0)
Please sign in to comment.