File tree Expand file tree Collapse file tree 4 files changed +31
-6
lines changed Expand file tree Collapse file tree 4 files changed +31
-6
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,23 @@ All notable changes to this project will be documented in this file.
55The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
66and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
77
8- # v0.5.0
8+ ## v1.0.0
9+
10+ ADDED:
11+
12+ - Allow calling sub-orchestrators by name
13+ - Abandon workitems if unhandled exception occurs in client
14+
15+ CHANGED:
16+
17+ - Improve execution logging
18+ - Supported Python versions are now 3.10- 3.14. Python 3.9 is end of life and has been removed.
19+
20+ FIXED:
21+
22+ - Reduce exposure of Entity context internally
23+
24+ ## v0.5.0
925
1026- Added support for Durable Entities
1127
Original file line number Diff line number Diff line change @@ -5,6 +5,15 @@ All notable changes to this project will be documented in this file.
55The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
66and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
77
8+ ## v1.0.0
9+
10+ CHANGED:
11+
12+ - Supported Python versions are now 3.10- 3.14. Python 3.9 is end of life and has been removed.
13+ - Updates base dependency to durabletask v1.0.0
14+ - See durabletask changelog for more details
15+ - Allow logging configuration for DurableTaskSchedulerClient
16+
817## v0.4.0
918
1019- Updates base dependency to durabletask v0.5.0
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ build-backend = "setuptools.build_meta"
99
1010[project ]
1111name = " durabletask.azuremanaged"
12- version = " 0.4 .0"
12+ version = " 1.0 .0"
1313description = " Durable Task Python SDK provider implementation for the Azure Durable Task Scheduler"
1414keywords = [
1515 " durable" ,
@@ -18,15 +18,15 @@ keywords = [
1818 " azure"
1919]
2020classifiers = [
21- " Development Status :: 3 - Alpha " ,
21+ " Development Status :: 5 - Production/Stable " ,
2222 " Programming Language :: Python :: 3" ,
2323 " License :: OSI Approved :: MIT License" ,
2424]
2525requires-python = " >=3.10"
2626license = {file = " LICENSE" }
2727readme = " README.md"
2828dependencies = [
29- " durabletask>=0.5 .0" ,
29+ " durabletask>=1.0 .0" ,
3030 " azure-identity>=1.19.0"
3131]
3232
Original file line number Diff line number Diff line change @@ -9,15 +9,15 @@ build-backend = "setuptools.build_meta"
99
1010[project ]
1111name = " durabletask"
12- version = " 0.5 .0"
12+ version = " 1.0 .0"
1313description = " A Durable Task Client SDK for Python"
1414keywords = [
1515 " durable" ,
1616 " task" ,
1717 " workflow"
1818]
1919classifiers = [
20- " Development Status :: 3 - Alpha " ,
20+ " Development Status :: 5 - Production/Stable " ,
2121 " Programming Language :: Python :: 3" ,
2222 " License :: OSI Approved :: MIT License" ,
2323]
You can’t perform that action at this time.
0 commit comments