Skip to content

Commit f1ae839

Browse files
authored
Merge branch 'main' into feat-client-evaluation-context-setter
2 parents b1e3e56 + 869766b commit f1ae839

5 files changed

Lines changed: 37 additions & 7 deletions

File tree

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{".":"0.9.0"}
1+
{".":"0.10.0"}

CHANGELOG.md

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

3+
## [0.10.0](https://github.com/open-feature/python-sdk/compare/v0.9.0...v0.10.0) (2026-06-01)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* make set_provider non-blocking, add set_provider_and_wait ([#595](https://github.com/open-feature/python-sdk/issues/595))
9+
10+
> [!IMPORTANT]
11+
> `set_provider()` no longer blocks until the provider is ready; provider initialization runs in the background. If your workload needs to wait until the `PROVIDER_READY` event has fired before proceeding (for example, to avoid `PROVIDER_NOT_READY` evaluations during startup), use `set_provider_and_wait()` instead.
12+
13+
### 🐛 Bug Fixes
14+
15+
* isolate provider event handler dispatch ([#599](https://github.com/open-feature/python-sdk/issues/599)) ([0a96426](https://github.com/open-feature/python-sdk/commit/0a96426a3e1df497f376c08a499cfa9227c7e2c2))
16+
17+
18+
### ✨ New Features
19+
20+
* make set_provider non-blocking, add set_provider_and_wait ([#595](https://github.com/open-feature/python-sdk/issues/595)) ([cbacef0](https://github.com/open-feature/python-sdk/commit/cbacef0093c0ef44bc2ba8ad36de1c5497cf0cff))
21+
22+
23+
### 🧹 Chore
24+
25+
* **deps:** update astral-sh/setup-uv action to v8 ([#603](https://github.com/open-feature/python-sdk/issues/603)) ([4422fad](https://github.com/open-feature/python-sdk/commit/4422fad635199d11bfd820425bf8938a68cec1ee))
26+
* **deps:** update codecov/codecov-action action to v6 ([#604](https://github.com/open-feature/python-sdk/issues/604)) ([e00fab3](https://github.com/open-feature/python-sdk/commit/e00fab3f04d52b3d35258d87c68e3c8d3954af31))
27+
* **deps:** update dependency prek to >=0.4.3,<0.5.0 ([#607](https://github.com/open-feature/python-sdk/issues/607)) ([760d808](https://github.com/open-feature/python-sdk/commit/760d808009e4eddd2984723d8bb3e3382df180ec))
28+
* **deps:** update googleapis/release-please-action action to v5 ([#605](https://github.com/open-feature/python-sdk/issues/605)) ([aa1366a](https://github.com/open-feature/python-sdk/commit/aa1366abeccf8d4463e933fbba035891e0531125))
29+
* **deps:** update pre-commit hook astral-sh/ruff-pre-commit to v0.15.15 ([#608](https://github.com/open-feature/python-sdk/issues/608)) ([5f4e42d](https://github.com/open-feature/python-sdk/commit/5f4e42dee5fad734a39b459b08b94045a7210ec3))
30+
* **deps:** update pre-commit hook pre-commit/mirrors-mypy to v2 ([#606](https://github.com/open-feature/python-sdk/issues/606)) ([d18beef](https://github.com/open-feature/python-sdk/commit/d18beefeaebb717102c40b02acbedf6b3c0c16a8))
31+
* **deps:** update pre-commit hook tox-dev/pyproject-fmt to v2.21.2 ([#601](https://github.com/open-feature/python-sdk/issues/601)) ([5cc9534](https://github.com/open-feature/python-sdk/commit/5cc9534661a1901c5d3a0b328d65df6495c46b92))
32+
333
## [0.9.0](https://github.com/open-feature/python-sdk/compare/v0.8.4...v0.9.0) (2026-04-17)
434

535

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919

2020
<!-- x-release-please-start-version -->
2121

22-
<a href="https://github.com/open-feature/python-sdk/releases/tag/v0.9.0">
23-
<img alt="Latest version" src="https://img.shields.io/static/v1?label=release&message=v0.9.0&color=blue&style=for-the-badge" />
22+
<a href="https://github.com/open-feature/python-sdk/releases/tag/v0.10.0">
23+
<img alt="Latest version" src="https://img.shields.io/static/v1?label=release&message=v0.10.0&color=blue&style=for-the-badge" />
2424
</a>
2525

2626
<!-- x-release-please-end -->
@@ -60,13 +60,13 @@
6060
#### Pip install
6161

6262
```bash
63-
pip install openfeature-sdk==0.9.0
63+
pip install openfeature-sdk==0.10.0
6464
```
6565

6666
#### requirements.txt
6767

6868
```bash
69-
openfeature-sdk==0.9.0
69+
openfeature-sdk==0.10.0
7070
```
7171

7272
```python

openfeature/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.9.0"
1+
__version__ = "0.10.0"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ requires = [ "uv-build~=0.11.0" ]
44

55
[project]
66
name = "openfeature-sdk"
7-
version = "0.9.0"
7+
version = "0.10.0"
88
description = "Standardizing Feature Flagging for Everyone"
99
readme = "README.md"
1010
keywords = [

0 commit comments

Comments
 (0)