Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{".":"0.8.2"}
{".":"0.8.3"}
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,28 @@
# Changelog

## [0.8.3](https://github.com/open-feature/python-sdk/compare/v0.8.2...v0.8.3) (2025-09-21)


### πŸ› Bug Fixes

* fix type hints of EvaluationContext and HookHints ([#535](https://github.com/open-feature/python-sdk/issues/535)) ([de37144](https://github.com/open-feature/python-sdk/commit/de371444b33b66ad0e6eb5c09224554c14aa5731))
* invalid type alias for EvaluationContextAttributes ([#534](https://github.com/open-feature/python-sdk/issues/534)) ([0e0f018](https://github.com/open-feature/python-sdk/commit/0e0f018272bdf987b1e50a9190cd3b4585d3f9b1)), closes [#532](https://github.com/open-feature/python-sdk/issues/532)


### ✨ New Features

* add hook data ([#533](https://github.com/open-feature/python-sdk/issues/533)) ([92f5da4](https://github.com/open-feature/python-sdk/commit/92f5da492ebc75d28a353316d0f151f62bcd59b7))


### 🧹 Chore

* add missing stateless provider tests ([#531](https://github.com/open-feature/python-sdk/issues/531)) ([74409bf](https://github.com/open-feature/python-sdk/commit/74409bf06ced4a218ebc01fd83ea20e480b34a09))
* **deps:** update pre-commit hook pre-commit/mirrors-mypy to v1.17.1 ([#528](https://github.com/open-feature/python-sdk/issues/528)) ([9d0cbe8](https://github.com/open-feature/python-sdk/commit/9d0cbe8d4af95218f41d4e2dcb8e419b9639c825))
* remove shell flag usage in project scripts ([#538](https://github.com/open-feature/python-sdk/issues/538)) ([81a1d95](https://github.com/open-feature/python-sdk/commit/81a1d95e682f20d23ec03418fb8f5464cc747fdf))
* replace deprecated typing aliases ([#537](https://github.com/open-feature/python-sdk/issues/537)) ([837fef9](https://github.com/open-feature/python-sdk/commit/837fef943e9585640975258ccf0d095faacf740b))
* support Python 3.14 ([#530](https://github.com/open-feature/python-sdk/issues/530)) ([32fdec1](https://github.com/open-feature/python-sdk/commit/32fdec178122d0838e8e776ba30f2dd722b21233))
* update mypy and ruff ([#536](https://github.com/open-feature/python-sdk/issues/536)) ([b418cb0](https://github.com/open-feature/python-sdk/commit/b418cb0e331fb1ce453eb29191cc899bd347a6dd))

## [0.8.2](https://github.com/open-feature/python-sdk/compare/v0.8.1...v0.8.2) (2025-07-30)


Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@

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

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

<!-- x-release-please-end -->
Expand Down Expand Up @@ -60,13 +60,13 @@
#### Pip install

```bash
pip install openfeature-sdk==0.8.2
pip install openfeature-sdk==0.8.3
```

#### requirements.txt

```bash
openfeature-sdk==0.8.2
openfeature-sdk==0.8.3
```

```python
Expand Down
2 changes: 1 addition & 1 deletion openfeature/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.8.2"
__version__ = "0.8.3"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ build-backend = "uv_build"

[project]
name = "openfeature_sdk"
version = "0.8.2"
version = "0.8.3"
description = "Standardizing Feature Flagging for Everyone"
readme = "README.md"
authors = [{ name = "OpenFeature", email = "[email protected]" }]
Expand Down