From e31810e03cc8609b83d960bc3f0688d6afb3136c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 9 Apr 2026 10:17:39 +0000 Subject: [PATCH] chore(main): release 3.0.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 11 +++++++++++ README.md | 8 ++++---- 3 files changed, 16 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 6aa187e..bf3f6b1 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1 +1 @@ -{".":"2.1.0"} +{".":"3.0.0"} diff --git a/CHANGELOG.md b/CHANGELOG.md index 12c4be6..ec6a7d1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## [3.0.0](https://github.com/spotify/confidence-sdk-python/compare/v2.1.0...v3.0.0) (2026-04-09) + + +### ⚠ BREAKING CHANGES + +* Dropped support for Python 3.9 + +### 🧹 Chore + +* update requests to >=2.33.1 for CVE-2026-25645 ([#107](https://github.com/spotify/confidence-sdk-python/issues/107)) ([2d27b72](https://github.com/spotify/confidence-sdk-python/commit/2d27b72fb9f957669b424c41ddab8bab06c57e1f)) + ## [2.1.0](https://github.com/spotify/confidence-sdk-python/compare/v2.0.2...v2.1.0) (2026-03-09) diff --git a/README.md b/README.md index 52741e4..b681f5f 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==2.1.0 +pip install spotify-confidence-sdk==3.0.0 ``` 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==2.1.0 --no-deps -pip install requests==2.1.0 openfeature-sdk==0.4.2 typing_extensions==4.9.0 httpx==0.27.2 +pip install spotify-confidence-sdk==3.0.0 --no-deps +pip install requests==3.0.0 openfeature-sdk==0.4.2 typing_extensions==4.9.0 httpx==0.27.2 ``` #### requirements.txt ```txt # Full installation (recommended) -spotify-confidence-sdk==2.1.0 +spotify-confidence-sdk==3.0.0 pip install -r requirements.txt ```