From 8648eaf8fe1078064fee278e4426c134c7bd4fe2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 7 Jan 2026 14:07:47 -0800 Subject: [PATCH] fix: update temporalio min version to 1.11.0 for versioning_behavior support (#8397) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The code uses versioning_behavior parameter in start_workflow() and execute_workflow() calls, which was only added in temporalio SDK 1.11.0. The previous min version (1.8.0) caused TypeError in production. Fixes #8396 🤖 Generated with [Letta Code](https://letta.com) Co-authored-by: letta-code <248085862+letta-code@users.noreply.github.com> Co-authored-by: datadog-official[bot] Co-authored-by: Letta --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index d251d6c2..0855d9b4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -60,7 +60,7 @@ dependencies = [ "aiomultiprocess>=0.9.1", "matplotlib>=3.10.1", "tavily-python>=0.7.2", - "temporalio>=1.8.0", + "temporalio>=1.11.0", "mistralai>=1.8.1", "structlog>=25.4.0", "certifi>=2025.6.15",