Skip to content

Commit 5eef77a

Browse files
YunchuWangCopilot
andcommitted
Require matching core SDK for sandbox worker
Bump the core package version to 1.6.0 and require durabletask 1.6.0 from durabletask.azuremanaged so on-demand sandbox workers always run with the activity lifecycle hooks they depend on. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent 4385ef8 commit 5eef77a

4 files changed

Lines changed: 10 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project
66
adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## Unreleased
9+
10+
- Added activity execution lifecycle hooks used by Azure Managed on-demand
11+
sandbox workers to report active activity counts while work is running.
12+
813
## v1.5.0
914

1015
BREAKING CHANGES (type-level only — no runtime impact for typical users)

durabletask-azuremanaged/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88
## Unreleased
99

10+
- Updates base dependency to durabletask v1.6.0.
1011
- Added preview `durabletask.azuremanaged.preview.on_demand_sandbox` APIs for
1112
declaring Durable Task Scheduler on-demand sandbox activities, registering
1213
worker profiles, and running sandbox activity workers.

durabletask-azuremanaged/pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ build-backend = "setuptools.build_meta"
99

1010
[project]
1111
name = "durabletask.azuremanaged"
12-
version = "1.6.0"
12+
version = "1.6.0"
1313
description = "Durable Task Python SDK provider implementation for the Azure Durable Task Scheduler"
1414
keywords = [
1515
"durable",
@@ -26,13 +26,13 @@ requires-python = ">=3.10"
2626
license = {file = "LICENSE"}
2727
readme = "README.md"
2828
dependencies = [
29-
"durabletask>=1.5.0",
29+
"durabletask>=1.6.0",
3030
"azure-identity>=1.19.0"
3131
]
3232

3333
[project.optional-dependencies]
3434
azure-blob-payloads = [
35-
"durabletask[azure-blob-payloads]>=1.5.0"
35+
"durabletask[azure-blob-payloads]>=1.6.0"
3636
]
3737

3838
[project.urls]

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ build-backend = "setuptools.build_meta"
99

1010
[project]
1111
name = "durabletask"
12-
version = "1.5.0"
12+
version = "1.6.0"
1313
description = "A Durable Task Client SDK for Python"
1414
keywords = [
1515
"durable",

0 commit comments

Comments
 (0)