diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 123f0a84..c5c0b305 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,7 +1,7 @@ { "hooks/openfeature-hooks-opentelemetry": "0.2.0", "providers/openfeature-provider-flagd": "0.2.6", - "providers/openfeature-provider-ofrep": "0.2.0", + "providers/openfeature-provider-ofrep": "0.3.0", "providers/openfeature-provider-flipt": "0.1.3", "providers/openfeature-provider-env-var": "0.1.0" } diff --git a/providers/openfeature-provider-ofrep/CHANGELOG.md b/providers/openfeature-provider-ofrep/CHANGELOG.md index 98c344d4..cfbdd958 100644 --- a/providers/openfeature-provider-ofrep/CHANGELOG.md +++ b/providers/openfeature-provider-ofrep/CHANGELOG.md @@ -1,5 +1,31 @@ # Changelog +## [0.3.0](https://github.com/chrfwow/python-sdk-contrib/compare/openfeature-provider-ofrep/v0.2.0...openfeature-provider-ofrep/v0.3.0) (2025-10-02) + + +### ⚠ BREAKING CHANGES + +* drop Python 3.8 support ([#187](https://github.com/chrfwow/python-sdk-contrib/issues/187)) + +### chore + +* drop Python 3.8 support ([#187](https://github.com/chrfwow/python-sdk-contrib/issues/187)) ([b55cc1e](https://github.com/chrfwow/python-sdk-contrib/commit/b55cc1e0f823d05a330c12af6861dbd3bec69c3a)) + + +### 🐛 Bug Fixes + +* Allow configuring ofrep provider requests to api at base … ([#142](https://github.com/chrfwow/python-sdk-contrib/issues/142)) ([09402df](https://github.com/chrfwow/python-sdk-contrib/commit/09402df3129c1b9d219465b82807fa53aafec039)) +* Pin the ofrep provider's requests dep >=2.27.0 because of… ([#161](https://github.com/chrfwow/python-sdk-contrib/issues/161)) ([9ffc7ec](https://github.com/chrfwow/python-sdk-contrib/commit/9ffc7ec91d1fff0d436099e878fac9c080a42b51)) +* return default dict if not meta provided ([#304](https://github.com/chrfwow/python-sdk-contrib/issues/304)) ([05c99eb](https://github.com/chrfwow/python-sdk-contrib/commit/05c99eb9948902a6860af848327633d39f1c5293)) + + +### ✨ New Features + +* add initial skeleton for OFREP provider ([#86](https://github.com/chrfwow/python-sdk-contrib/issues/86)) ([00a5a18](https://github.com/chrfwow/python-sdk-contrib/commit/00a5a18a76ef1435de67f312e384a97823bd185b)) +* implement basic functionality of OFREP provider ([#88](https://github.com/chrfwow/python-sdk-contrib/issues/88)) ([cb42cc0](https://github.com/chrfwow/python-sdk-contrib/commit/cb42cc0001e19793f391351a1ce5bafe1831025f)) +* migrate to uv ([#293](https://github.com/chrfwow/python-sdk-contrib/issues/293)) ([9590554](https://github.com/chrfwow/python-sdk-contrib/commit/9590554be4c8a7f77b0c0f20d6b48076c9870f52)) +* Update python-sdk ([#289](https://github.com/chrfwow/python-sdk-contrib/issues/289)) ([f2028f5](https://github.com/chrfwow/python-sdk-contrib/commit/f2028f5f81824310a842507a3127a3bb9bc8a984)) + ## [0.2.0](https://github.com/open-feature/python-sdk-contrib/compare/openfeature-provider-ofrep/v0.1.1...openfeature-provider-ofrep/v0.2.0) (2025-09-25) diff --git a/providers/openfeature-provider-ofrep/pyproject.toml b/providers/openfeature-provider-ofrep/pyproject.toml index f06b1930..06028d73 100644 --- a/providers/openfeature-provider-ofrep/pyproject.toml +++ b/providers/openfeature-provider-ofrep/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "uv_build" [project] name = "openfeature-provider-ofrep" -version = "0.2.0" +version = "0.3.0" description = "OpenFeature provider for the OpenFeature Remote Evaluation Protocol (OFREP)" readme = "README.md" authors = [{ name = "OpenFeature", email = "openfeature-core@groups.io" }]