From 2602db6e0f3b4f1ddd244ef740c107d4fee391b6 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 26 May 2026 16:04:30 +0000 Subject: [PATCH] chore(main): release 3.0.2 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 7 +++++++ README.md | 8 ++++---- 3 files changed, 12 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index f36f388..62e41ad 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1 +1 @@ -{".":"3.0.1"} +{".":"3.0.2"} diff --git a/CHANGELOG.md b/CHANGELOG.md index ed33c06..bfc5155 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [3.0.2](https://github.com/spotify/confidence-sdk-python/compare/v3.0.1...v3.0.2) (2026-05-26) + + +### 🐛 Bug Fixes + +* isolate context dict per Confidence instance to prevent shared mutable state ([#115](https://github.com/spotify/confidence-sdk-python/issues/115)) ([3fd546f](https://github.com/spotify/confidence-sdk-python/commit/3fd546f86e6fe1a3d3edaf34bf94f226b451ca5f)) + ## [3.0.1](https://github.com/spotify/confidence-sdk-python/compare/v3.0.0...v3.0.1) (2026-05-22) diff --git a/README.md b/README.md index 6ad0f87..9075ed2 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ the [OpenFeature reference documentation](https://openfeature.dev/docs/reference ### pip install ```python -pip install spotify-confidence-sdk==3.0.1 +pip install spotify-confidence-sdk==3.0.2 ``` This installs the full SDK including telemetry support and is the suggested . @@ -20,14 +20,14 @@ This installs the full SDK including telemetry support and is the suggested . For environments where you cannot use protobuf, you can install without protobuf (which disables telemetry): ```bash -pip install spotify-confidence-sdk==3.0.1 --no-deps -pip install requests==3.0.1 openfeature-sdk==0.4.2 typing_extensions==4.9.0 httpx==0.27.2 +pip install spotify-confidence-sdk==3.0.2 --no-deps +pip install requests==3.0.2 openfeature-sdk==0.4.2 typing_extensions==4.9.0 httpx==0.27.2 ``` #### requirements.txt ```txt # Full installation (recommended) -spotify-confidence-sdk==3.0.1 +spotify-confidence-sdk==3.0.2 pip install -r requirements.txt ```