Skip to content

Commit 798cad8

Browse files
authored
release v0.3.0 (#138)
<!-- Thanks for opening a PR! Here are some quick tips: If this is your first time contributing, [read our Contributing Guidelines](https://github.com/openfga/.github/blob/main/CONTRIBUTING.md) to learn how to create an acceptable PR for this repo. By submitting a PR to this repository, you agree to the terms within the [OpenFGA Code of Conduct](https://github.com/openfga/.github/blob/main/CODE_OF_CONDUCT.md) If your PR is under active development, please submit it as a "draft". Once it's ready, open it up for review. --> <!-- Provide a brief summary of the changes --> ## Description <!-- Provide a detailed description of the changes --> #### What problem is being solved? #### How is it being solved? #### What changes are made to solve it? ## References <!-- Provide a list of any applicable references here (GitHub Issue, [OpenFGA RFC](https://github.com/openfga/rfcs), other PRs, etc..). We prefer an accompanying issue for all non-trivial PRs. When referencing links, follow these examples: * closes https://github.com/openfga/{repo}/issues/{issue_number} * reverts https://github.com/openfga/{repo}/pull/{pr_number} * followup https://github.com/openfga/{repo}/pull/{pr_number} * blocked by https://github.com/openfga/{repo}/pull/{pr_number} --> ## Review Checklist - [ ] I have clicked on ["allow edits by maintainers"](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/working-with-forks/allowing-changes-to-a-pull-request-branch-created-from-a-fork). - [ ] I have added documentation for new/changed functionality in this PR or in a PR to [openfga.dev](https://github.com/openfga/openfga.dev) [Provide a link to any relevant PRs in the references section above] - [ ] The correct base branch is being used, if not `main` - [ ] I have added tests to validate that the change in functionality is working as expected <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit * **New Features** * Improved error handling * **Chores** * Updated project dependencies * Version bump to v0.3.0 * **Documentation** * Updated documentation and version references <sub>✏️ Tip: You can customize this high-level summary in your review settings.</sub> <!-- end of auto-generated comment: release notes by coderabbit.ai -->
2 parents cf2e8f1 + 0ab896c commit 798cad8

File tree

5 files changed

+13
-6
lines changed

5 files changed

+13
-6
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## v0.3.0
4+
5+
### [0.3.0](https://github.com/openfga/spring-boot-starter/releases/tag/v0.3.0) (2025-12-15)
6+
7+
- feat: improved error handling
8+
- chore: update dependencies
9+
310
## v0.2.0
411

512
### [0.2.0](https://github.com/openfga/spring-boot-starter/releases/tag/v0.2.0) (2025-03-18)

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,13 @@ It can be used with the following:
3636
* Gradle (Groovy)
3737

3838
```groovy
39-
implementation 'dev.openfga:openfga-spring-boot-starter:0.2.0'
39+
implementation 'dev.openfga:openfga-spring-boot-starter:0.3.0'
4040
```
4141

4242
* Gradle (Kotlin)
4343

4444
```kotlin
45-
implementation("dev.openfga:openfga-spring-boot-starter:0.2.0")
45+
implementation("dev.openfga:openfga-spring-boot-starter:0.3.0")
4646
```
4747

4848
* Apache Maven
@@ -52,7 +52,7 @@ implementation("dev.openfga:openfga-spring-boot-starter:0.2.0")
5252
<dependency>
5353
<groupId>dev.openfga</groupId>
5454
<artifactId>openfga-spring-boot-starter</artifactId>
55-
<version>0.2.0</version>
55+
<version>0.3.0</version>
5656
</dependency>
5757
```
5858

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ plugins {
1616
apply from: 'publish.gradle'
1717

1818
group = 'dev.openfga'
19-
version = '0.2.0'
19+
version = '0.3.0'
2020

2121
java {
2222
sourceCompatibility = 17

examples/servlet/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ dependencies {
1919
implementation 'org.springframework.boot:spring-boot-starter-web'
2020
implementation 'org.springframework.boot:spring-boot-starter-security'
2121
implementation 'org.springframework.boot:spring-boot-starter-oauth2-resource-server'
22-
implementation 'dev.openfga:openfga-spring-boot-starter:0.2.0'
22+
implementation 'dev.openfga:openfga-spring-boot-starter:0.3.0'
2323
testImplementation 'org.springframework.boot:spring-boot-starter-test'
2424
testImplementation 'org.springframework.boot:spring-boot-testcontainers'
2525
testImplementation 'org.testcontainers:openfga:1.21.3'

publish.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ publishing {
66
pom {
77
group = 'dev.openfga'
88
name = 'openfga-spring-boot-starter'
9-
version = '0.2.0'
9+
version = '0.3.0'
1010
description = 'This is the Spring Boot Starter for OpenFGA.'
1111
url = 'https://openfga.dev'
1212
licenses {

0 commit comments

Comments
 (0)