chore(main): release 0.10.0#602
Merged
Merged
Conversation
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #602 +/- ##
=======================================
Coverage 98.34% 98.34%
=======================================
Files 45 45
Lines 2483 2483
=======================================
Hits 2442 2442
Misses 41 41
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
653d351 to
06f72d0
Compare
4333106 to
d919f55
Compare
Member
|
I will release this next week unless I hear objections. |
d919f55 to
af7f705
Compare
Signed-off-by: OpenFeature Bot <[email protected]>
af7f705 to
8edbe53
Compare
toddbaert
approved these changes
Jun 1, 2026
gruebel
approved these changes
Jun 1, 2026
jonathannorris
approved these changes
Jun 1, 2026
Signed-off-by: Todd Baert <[email protected]>
f0151f6 to
af2a9f9
Compare
Contributor
Author
|
🤖 Created releases: 🌻 |
gruebel
pushed a commit
to balgaly/python-sdk
that referenced
this pull request
Jun 6, 2026
* chore(main): release 0.10.0 Signed-off-by: OpenFeature Bot <[email protected]> * docs: clarify non-blocking set_provider behavior in changelog Signed-off-by: Todd Baert <[email protected]> --------- Signed-off-by: OpenFeature Bot <[email protected]> Signed-off-by: Todd Baert <[email protected]> Co-authored-by: Todd Baert <[email protected]> Signed-off-by: gruebel <[email protected]>
gruebel
added a commit
that referenced
this pull request
Jun 7, 2026
* test(e2e): add Behave step definitions for context merging Add the missing E2E step definitions so the contextMerging.feature scenarios from the OpenFeature spec run against python-sdk. Fixes #500 Changes: - Bump spec submodule to 130df3eb so contextMerging.feature is copied in during the `poe e2e` task. - Add tests/features/environment.py with a before_scenario hook that resets provider/hook/API-context/transaction-context state, so scenarios cannot leak state between features. - Add tests/features/steps/context_merging_steps.py: - RetrievableContextProvider captures the merged EvaluationContext it receives, so assertions can inspect what the SDK merged. - Step definitions for all scenarios in contextMerging.feature: single-level insert, multi-level insert, and per-key overwrite precedence across API / Transaction / Client / Invocation / Before Hooks. - Client-level context is set via direct attribute assignment on OpenFeatureClient.context (no new setter), since merging already honors client.context (openfeature/client.py:422-429). Runs clean: 4 features / 50 scenarios / 233 steps. Signed-off-by: gruebel <[email protected]> * docs: fix inaccuracies in README code examples (#592) Signed-off-by: Jonathan Norris <[email protected]> Signed-off-by: gruebel <[email protected]> * fix: correctly reset api state on shutdown (#589) correctly reset api state on shutdown Signed-off-by: gruebel <[email protected]> * chore(main): release 0.9.0 (#555) Signed-off-by: OpenFeature Bot <[email protected]> Signed-off-by: gruebel <[email protected]> * chore(deps): update pre-commit hook tox-dev/pyproject-fmt to v2.21.2 (#601) * chore(deps): update pre-commit hook tox-dev/pyproject-fmt to v2.21.2 * upper bound toml-fmt-common till fixed Signed-off-by: gruebel <[email protected]> --------- Signed-off-by: gruebel <[email protected]> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: gruebel <[email protected]> Signed-off-by: gruebel <[email protected]> * chore(deps): update astral-sh/setup-uv action to v8 (#603) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Signed-off-by: gruebel <[email protected]> * chore(deps): update codecov/codecov-action action to v6 (#604) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Signed-off-by: gruebel <[email protected]> * chore(deps): update googleapis/release-please-action action to v5 (#605) * chore(deps): update googleapis/release-please-action action to v5 * fix config Signed-off-by: gruebel <[email protected]> --------- Signed-off-by: gruebel <[email protected]> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: gruebel <[email protected]> Signed-off-by: gruebel <[email protected]> * chore(deps): update pre-commit hook pre-commit/mirrors-mypy to v2 (#606) * chore(deps): update pre-commit hook pre-commit/mirrors-mypy to v2 * update config Signed-off-by: gruebel <[email protected]> --------- Signed-off-by: gruebel <[email protected]> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: gruebel <[email protected]> Signed-off-by: gruebel <[email protected]> * chore(deps): update dependency prek to >=0.4.3,<0.5.0 (#607) * chore(deps): update dependency prek to >=0.4.3,<0.5.0 * adjust CI Signed-off-by: gruebel <[email protected]> --------- Signed-off-by: gruebel <[email protected]> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: gruebel <[email protected]> Signed-off-by: gruebel <[email protected]> * feat!: make set_provider non-blocking, add set_provider_and_wait (#595) * feat!: make set_provider non-blocking, add set_provider_and_wait Signed-off-by: Jonathan Norris <[email protected]> * fix: ruff format signature collapse in api.py Signed-off-by: Jonathan Norris <[email protected]> * fix: use threading.Event in error event test to avoid flaky busy-wait Signed-off-by: Jonathan Norris <[email protected]> * fixup: pr feedback and additional checks Signed-off-by: Todd Baert <[email protected]> * fix: check active registration in stale-init guard, not _provider_status Signed-off-by: Jonathan Norris <[email protected]> * fixup: edge shutdown race Signed-off-by: Todd Baert <[email protected]> --------- Signed-off-by: Jonathan Norris <[email protected]> Signed-off-by: Todd Baert <[email protected]> Co-authored-by: Todd Baert <[email protected]> Signed-off-by: gruebel <[email protected]> * fix: isolate provider event handler dispatch (#599) * Isolate provider event handlers Signed-off-by: Lucas-FManager <[email protected]> * Address event handler review feedback Signed-off-by: Lucas-FManager <[email protected]> * test: cover event dispatch noop path Signed-off-by: Lucas-FManager <[email protected]> * fixup: drain executor at exit and relax non-blocking test timing margin Signed-off-by: Todd Baert <[email protected]> --------- Signed-off-by: Lucas-FManager <[email protected]> Signed-off-by: Todd Baert <[email protected]> Co-authored-by: Lucas-FManager <[email protected]> Co-authored-by: Todd Baert <[email protected]> Signed-off-by: gruebel <[email protected]> * test: fix flaky event handler test (#609) fix flaky event handler test Signed-off-by: gruebel <[email protected]> * chore(deps): update pre-commit hook astral-sh/ruff-pre-commit to v0.15.15 (#608) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Signed-off-by: gruebel <[email protected]> * chore(main): release 0.10.0 (#602) * chore(main): release 0.10.0 Signed-off-by: OpenFeature Bot <[email protected]> * docs: clarify non-blocking set_provider behavior in changelog Signed-off-by: Todd Baert <[email protected]> --------- Signed-off-by: OpenFeature Bot <[email protected]> Signed-off-by: Todd Baert <[email protected]> Co-authored-by: Todd Baert <[email protected]> Signed-off-by: gruebel <[email protected]> * fix CR comments Signed-off-by: gruebel <[email protected]> * cleanup Signed-off-by: gruebel <[email protected]> --------- Signed-off-by: gruebel <[email protected]> Signed-off-by: Jonathan Norris <[email protected]> Signed-off-by: OpenFeature Bot <[email protected]> Signed-off-by: Todd Baert <[email protected]> Signed-off-by: Lucas-FManager <[email protected]> Co-authored-by: Jonathan Norris <[email protected]> Co-authored-by: Anton Grübel <[email protected]> Co-authored-by: OpenFeature Bot <[email protected]> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Todd Baert <[email protected]> Co-authored-by: Nguyen Cat Luong <[email protected]> Co-authored-by: Lucas-FManager <[email protected]>
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.
🤖 I have created a release beep boop
0.10.0 (2026-06-01)
⚠ BREAKING CHANGES
Important
set_provider()no longer blocks until the provider is ready; provider initialization runs in the background. If your workload needs to wait until thePROVIDER_READYevent has fired before proceeding (for example, to avoidPROVIDER_NOT_READYevaluations during startup), useset_provider_and_wait()instead.🐛 Bug Fixes
✨ New Features
🧹 Chore
This PR was generated with Release Please. See documentation.