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
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@

All notable changes to kalshi-sdk will be documented in this file.

## 11.0.1 — 2026-08-09

### Fixed

- **`cryptography` dependency ceiling widened `<50` → `<51`** — clears
`PYSEC-2026-3552` (PKCS#7 decrypt oracle) by allowing cryptography 50.x.
The SDK RSA-PSS signing path is unaffected by that API; this unblocks
pip-audit on main and lets installers pull the fixed wheel.

## 11.0.0 — 2026-08-09

Reconciles upstream OpenAPI **3.27.0** content drift, AsyncAPI trade payload
Expand Down
2 changes: 1 addition & 1 deletion kalshi/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -381,4 +381,4 @@
"Withdrawal",
]

__version__ = "11.0.0"
__version__ = "11.0.1"
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "kalshi-sdk"
version = "11.0.0"
version = "11.0.1"
description = "A professional Python SDK for the Kalshi prediction markets and Perps (margin) APIs"
readme = "README.md"
license = { text = "MIT" }
Expand All @@ -22,7 +22,7 @@ classifiers = [
dependencies = [
"httpx>=0.27,<1",
"pydantic>=2.4,<3",
"cryptography>=43,<50",
"cryptography>=43,<51",
"websockets>=14,<18",
"typing-extensions>=4.5",
]
Expand Down
Loading