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 .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.4.0"
".": "0.4.1"
}
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Changelog

## [0.4.0](https://github.com/openfga/spring-boot-starter/compare/v0.3.3...v0.4.0) (2026-08-12)
## [0.4.1](https://github.com/openfga/spring-boot-starter/compare/v0.3.3...v0.4.1) (2026-08-12)
Comment thread
SoulPancake marked this conversation as resolved.


> [!NOTE]
> This release establishes the Spring Boot 3.4 baseline for the upcoming Jackson 3 / Spring Boot 4 work. Spring Boot 4 is **not yet supported** — the PropertyMapper fix below only removes one binary incompatibility. Progress is tracked in [#184](https://github.com/openfga/spring-boot-starter/issues/184).
Expand All @@ -25,6 +26,7 @@

* document openfga.initialization properties in README ([e3403b9](https://github.com/openfga/spring-boot-starter/commit/e3403b942886f90db4f2112778af679539e0831d))


## [0.3.3](https://github.com/openfga/spring-boot-starter/compare/v0.3.1...v0.3.3) (2026-07-22)

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

```groovy
implementation 'dev.openfga:openfga-spring-boot-starter:0.4.0' // x-release-please-version
implementation 'dev.openfga:openfga-spring-boot-starter:0.4.1' // x-release-please-version
```

* Gradle (Kotlin)

```kotlin
implementation("dev.openfga:openfga-spring-boot-starter:0.4.0") // x-release-please-version
implementation("dev.openfga:openfga-spring-boot-starter:0.4.1") // x-release-please-version
```

* Apache Maven
Expand All @@ -52,7 +52,7 @@ implementation("dev.openfga:openfga-spring-boot-starter:0.4.0") // x-release-ple
<dependency>
<groupId>dev.openfga</groupId>
<artifactId>openfga-spring-boot-starter</artifactId>
<version>0.4.0</version> <!-- x-release-please-version -->
<version>0.4.1</version> <!-- x-release-please-version -->
</dependency>
```

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

group = 'dev.openfga'
version = '0.4.0' // x-release-please-version
version = '0.4.1' // x-release-please-version

wrapper {
gradleVersion = '9.6.1'
Expand Down
2 changes: 1 addition & 1 deletion examples/servlet/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ dependencies {
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-security'
implementation 'org.springframework.boot:spring-boot-starter-oauth2-resource-server'
implementation 'dev.openfga:openfga-spring-boot-starter:0.4.0' // x-release-please-version
implementation 'dev.openfga:openfga-spring-boot-starter:0.4.1' // x-release-please-version

testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
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-spring-boot-starter'
version = '0.4.0' // x-release-please-version
version = '0.4.1' // x-release-please-version
description = 'This is the Spring Boot Starter for OpenFGA.'
url = 'https://openfga.dev'
licenses {
Expand Down