- Notifications
You must be signed in to change notification settings - Fork 32
release: v0.9.8 #244
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
release: v0.9.8 #244
Conversation
WalkthroughThis PR updates the SDK version from 0.9.7 to 0.9.8 across all configuration, constant, and documentation files. Changes include version bumps in version configuration, package metadata, SDK constants, example dependencies, and changelog updates. Changes
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~3 minutes All changes are homogeneous version number updates with consistent patterns across multiple files. No logic modifications, API changes, or behavioral implications. Possibly related PRs
Suggested labels
Suggested reviewers
Pre-merge checks and finishing touches✅ Passed checks (2 passed)
✨ Finishing touches
🧪 Generate unit tests (beta)
📜 Recent review detailsConfiguration used: CodeRabbit UI Review profile: CHILL Plan: Pro ⛔ Files ignored due to path filters (1)
📒 Files selected for processing (7)
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (1)
🔇 Additional comments (7)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@ ## main #244 +/- ## ======================================= Coverage 70.99% 70.99% ======================================= Files 137 137 Lines 11038 11038 ======================================= Hits 7836 7836 Misses 3202 3202 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR bumps the OpenFGA Python SDK version from 0.9.7 to 0.9.8 to release support for conflict options in Write operations.
Key Changes
- Version updated from 0.9.7 to 0.9.8 across all project files
- CHANGELOG.md updated with v0.9.8 release notes documenting the conflict options feature
- Dependencies updated to reference the new version
Reviewed Changes
Copilot reviewed 7 out of 8 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| uv.lock | Updated package version in lock file |
| pyproject.toml | Updated project version in package metadata |
| openfga_sdk/constants.py | Updated SDK_VERSION and USER_AGENT constants |
| example/example1/setup.py | Updated minimum version requirement for openfga-sdk |
| example/example1/requirements.txt | Updated openfga-sdk dependency version |
| VERSION.txt | Updated version string |
| README.md | Updated Socket Badge URL to reference new version |
| CHANGELOG.md | Added v0.9.8 release section with release date and feature notes |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Description
Changes:
The client now supports setting
ConflictOptionsonClientWriteOptionsto control behavior when writing duplicate tuples or deleting non-existent tuples. This feature requires OpenFGA server v1.10.0 or later.See Conflict Options for Write Operations for more.
on_duplicatefor handling duplicate tuple writes (ERROR or IGNORE)on_missingfor handling deletes of non-existent tuples (ERROR or IGNORE)What problem is being solved?
How is it being solved?
What changes are made to solve it?
References
Review Checklist
mainSummary by CodeRabbit
New Features
Documentation