From 3ebf82cdc9cee46c1806ca082ce6d16c40ebe227 Mon Sep 17 00:00:00 2001 From: Andy Staples Date: Wed, 8 Jul 2026 17:06:48 -0600 Subject: [PATCH 1/2] Prep for v1.7.1 --- CHANGELOG.md | 2 ++ durabletask-azuremanaged/CHANGELOG.md | 4 ++++ durabletask-azuremanaged/pyproject.toml | 6 +++--- pyproject.toml | 2 +- 4 files changed, 10 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 22f443c8..e2b5fa37 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## Unreleased +## v1.7.1 + ADDED - Added `OrchestrationContext.parent_instance_id`, which returns the instance diff --git a/durabletask-azuremanaged/CHANGELOG.md b/durabletask-azuremanaged/CHANGELOG.md index f06faae1..22af0a40 100644 --- a/durabletask-azuremanaged/CHANGELOG.md +++ b/durabletask-azuremanaged/CHANGELOG.md @@ -7,6 +7,10 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## Unreleased +## v1.7.1 + +- Updates base dependency to durabletask v1.7.1 + ## v1.7.0 - Updates base dependency to durabletask v1.7.0. diff --git a/durabletask-azuremanaged/pyproject.toml b/durabletask-azuremanaged/pyproject.toml index 4c113b06..a0527cd7 100644 --- a/durabletask-azuremanaged/pyproject.toml +++ b/durabletask-azuremanaged/pyproject.toml @@ -9,7 +9,7 @@ build-backend = "setuptools.build_meta" [project] name = "durabletask.azuremanaged" -version = "1.7.0" +version = "1.7.1" description = "Durable Task Python SDK provider implementation for the Azure Durable Task Scheduler" keywords = [ "durable", @@ -26,13 +26,13 @@ requires-python = ">=3.10" license = {file = "LICENSE"} readme = "README.md" dependencies = [ - "durabletask>=1.7.0", + "durabletask>=1.7.1", "azure-identity>=1.19.0" ] [project.optional-dependencies] azure-blob-payloads = [ - "durabletask[azure-blob-payloads]>=1.7.0" + "durabletask[azure-blob-payloads]>=1.7.1" ] [project.urls] diff --git a/pyproject.toml b/pyproject.toml index fca9df36..c565a597 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,7 +9,7 @@ build-backend = "setuptools.build_meta" [project] name = "durabletask" -version = "1.7.0" +version = "1.7.1" description = "A Durable Task Client SDK for Python" keywords = [ "durable", From 55a905a38969319d0b881331284ba35a3ab64837 Mon Sep 17 00:00:00 2001 From: Andy Staples Date: Wed, 8 Jul 2026 17:13:19 -0600 Subject: [PATCH 2/2] Changelog consistency - new style (long lines) --- CHANGELOG.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e2b5fa37..b1d8d28f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,9 +11,7 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ADDED -- Added `OrchestrationContext.parent_instance_id`, which returns the instance - ID of the parent orchestration for a sub-orchestration, or `None` for a - top-level orchestration. +- Added `OrchestrationContext.parent_instance_id`, which returns the instance ID of the parent orchestration for a sub-orchestration, or `None` for a top-level orchestration. CHANGED