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 @@
{".":"2.1.0"}
{".":"3.0.0"}
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)


Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ the [OpenFeature reference documentation](https://openfeature.dev/docs/reference
### pip install
<!---x-release-please-start-version-->
```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 .
Expand All @@ -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
```
Expand Down