diff --git a/frontend/docs/pages/reference/changelog/python.mdx b/frontend/docs/pages/reference/changelog/python.mdx index ad593864f1..5a408fc12c 100644 --- a/frontend/docs/pages/reference/changelog/python.mdx +++ b/frontend/docs/pages/reference/changelog/python.mdx @@ -1,5 +1,11 @@ {/* AUTOGENERATED — do not edit. Run `task sync-changelog` to regenerate from sdks/python/CHANGELOG.md */} +## v1.33.14 - 2026-06-29 + +### Fixed + +- Requires a tenant id for all durable event log listing methods to prevent cross-tenant disclosure. + ## v1.33.13 - 2026-06-26 ### Fixed diff --git a/sdks/python/CHANGELOG.md b/sdks/python/CHANGELOG.md index 7d27670b79..613c2079ce 100644 --- a/sdks/python/CHANGELOG.md +++ b/sdks/python/CHANGELOG.md @@ -5,6 +5,13 @@ All notable changes to Hatchet's Python SDK will be documented in this changelog The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.33.14] - 2026-06-29 + +### Fixed + +- Requires a tenant id for all durable event log listing methods to prevent cross-tenant disclosure. + + ## [1.33.13] - 2026-06-26 ### Fixed diff --git a/sdks/python/pyproject.toml b/sdks/python/pyproject.toml index a3826d335d..e5a4d0e501 100644 --- a/sdks/python/pyproject.toml +++ b/sdks/python/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "hatchet-sdk" -version = "1.33.13" +version = "1.33.14" description = "This is the official Python SDK for Hatchet, a distributed, fault-tolerant task queue. The SDK allows you to easily integrate Hatchet's task scheduling and workflow orchestration capabilities into your Python applications." readme = "README.md" license = { text = "MIT" }