chore(deps): bump openfeature-sdk to 0.10.0 - #116
Merged
Conversation
suthar26
approved these changes
Aug 5, 2026
There was a problem hiding this comment.
Pull request overview
Updates the SDK’s OpenFeature dependency to openfeature-sdk ~= 0.10.0 and aligns the documentation/examples with the newer provider initialization behavior by switching to api.set_provider_and_wait() so initialization failures surface to callers.
Changes:
- Bumped
openfeature-sdkrequirement from~= 0.8to~= 0.10.0. - Updated README and OpenFeature guide to recommend
set_provider_and_wait()and explain the behavioral difference vsset_provider(). - Updated the OpenFeature example to use
set_provider_and_wait()and handleGeneralErroron initialization failure.
Reviewed changes
Copilot reviewed 3 out of 4 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| requirements.txt | Raises the OpenFeature SDK version floor to ~= 0.10.0. |
| README.md | Updates the quickstart snippet and adds guidance on why set_provider_and_wait() is preferred. |
| OpenFeature.md | Expands provider initialization guidance and includes error-handling recommendations for set_provider(). |
| example/openfeature_example.py | Uses set_provider_and_wait() and catches GeneralError to fail fast on provider init errors. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
JamieSinn
approved these changes
Aug 5, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
openfeature-sdkfloor inrequirements.txtfrom~= 0.8to~= 0.10.0set_provider_and_wait(), sinceset_provider()is non-blocking in 0.10 and ourinitialize()timeout error no longer reaches the callerFollow-up
track()isn't overridden onDevCycleProvider, so everyclient.track()call hits the base-class no-op and is silently discarded. Separate PR.