Skip to content

Commit d084538

Browse files
committed
Prep for 1.2.0 release
1 parent 3eaf42c commit d084538

File tree

4 files changed

+30
-4
lines changed

4 files changed

+30
-4
lines changed

CHANGELOG.md

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,30 @@ 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/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## v1.2.0
9+
10+
ADDED:
11+
12+
- Added new_uuid method to orchestration clients allowing generation of replay-safe UUIDs.
13+
- Added ProtoTaskHubSidecarServiceStub class to allow passing self-generated stubs to worker
14+
- Added support for new Task types needed for specific durable backend setups:
15+
- orchestratorCompleted
16+
- eventSent
17+
- eventRaised modified to support entity events
18+
19+
CHANGED:
20+
21+
- Added py.typed marker file to durabletask module
22+
- Updated type hinting on EntityInstanceId.parse() to reflect behavior
23+
- Entity operations now use UUIDs generated with new_uuid
24+
25+
FIXED:
26+
27+
- Mismatched parameter names in call_entity/signal_entity from interface
28+
829
## v1.1.0
930

10-
ADDED:
31+
ADDED:
1132

1233
- Allow retrieving entity metadata from the client, with or without state
1334

durabletask-azuremanaged/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/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## v1.2.0
9+
10+
- Updates base dependency to durabletask v1.2.0
11+
- See durabletask changelog for more details
12+
813
## v1.1.0
914

1015
CHANGED:

durabletask-azuremanaged/pyproject.toml

Lines changed: 2 additions & 2 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.1.0"
12+
version = "1.2.0"
1313
description = "Durable Task Python SDK provider implementation for the Azure Durable Task Scheduler"
1414
keywords = [
1515
"durable",
@@ -26,7 +26,7 @@ requires-python = ">=3.10"
2626
license = {file = "LICENSE"}
2727
readme = "README.md"
2828
dependencies = [
29-
"durabletask>=1.1.0",
29+
"durabletask>=1.2.0",
3030
"azure-identity>=1.19.0"
3131
]
3232

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.1.0"
12+
version = "1.2.0"
1313
description = "A Durable Task Client SDK for Python"
1414
keywords = [
1515
"durable",

0 commit comments

Comments
 (0)