From 13b5276aa93b52b3e93e167371050d156d9dce52 Mon Sep 17 00:00:00 2001 From: Andy Staples Date: Mon, 10 Nov 2025 17:33:44 -0700 Subject: [PATCH 1/3] Set version to 1.0.0 --- CHANGELOG.md | 10 +++++++++- durabletask-azuremanaged/CHANGELOG.md | 7 +++++++ durabletask-azuremanaged/pyproject.toml | 6 +++--- pyproject.toml | 4 ++-- 4 files changed, 21 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9ec8503..f69835f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,15 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -# v0.5.0 +## v1.0.0 + +- Allow calling sub-orchestrators by name +- Improve execution logging +- Drop Python 3.9, add 3.14 +- Abandon workitems if unhandled exception occurs in client +- Reduce exposure of Entity context internally + +## v0.5.0 - Added support for Durable Entities diff --git a/durabletask-azuremanaged/CHANGELOG.md b/durabletask-azuremanaged/CHANGELOG.md index c6708a2..5789edc 100644 --- a/durabletask-azuremanaged/CHANGELOG.md +++ b/durabletask-azuremanaged/CHANGELOG.md @@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## v1.0.0 + +- Drop Python 3.9, add 3.14 +- Updates base dependency to durabletask v1.0.0 + - See durabletask changelog for more details +- Allow logging configuration for DurableTaskSchedulerClient + ## v0.4.0 - Updates base dependency to durabletask v0.5.0 diff --git a/durabletask-azuremanaged/pyproject.toml b/durabletask-azuremanaged/pyproject.toml index 38d431e..8d522a7 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 = "0.4.0" +version = "1.0.0" description = "Durable Task Python SDK provider implementation for the Azure Durable Task Scheduler" keywords = [ "durable", @@ -18,7 +18,7 @@ keywords = [ "azure" ] classifiers = [ - "Development Status :: 3 - Alpha", + "Development Status :: 5 - Production/Stable", "Programming Language :: Python :: 3", "License :: OSI Approved :: MIT License", ] @@ -26,7 +26,7 @@ requires-python = ">=3.10" license = {file = "LICENSE"} readme = "README.md" dependencies = [ - "durabletask>=0.5.0", + "durabletask>=1.0.0", "azure-identity>=1.19.0" ] diff --git a/pyproject.toml b/pyproject.toml index 39104df..547eb7a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,7 +9,7 @@ build-backend = "setuptools.build_meta" [project] name = "durabletask" -version = "0.5.0" +version = "1.0.0" description = "A Durable Task Client SDK for Python" keywords = [ "durable", @@ -17,7 +17,7 @@ keywords = [ "workflow" ] classifiers = [ - "Development Status :: 3 - Alpha", + "Development Status :: 5 - Production/Stable", "Programming Language :: Python :: 3", "License :: OSI Approved :: MIT License", ] From ecb526aeacb9e8e2c2d2c05ae3a1548e8c054bfb Mon Sep 17 00:00:00 2001 From: Andy Staples Date: Mon, 10 Nov 2025 17:42:12 -0700 Subject: [PATCH 2/3] Use consistent formatting --- CHANGELOG.md | 12 +++++++++++- durabletask-azuremanaged/CHANGELOG.md | 8 ++++++++ 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f69835f..12cd367 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,12 +7,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## v1.0.0 +ADDED: + - Allow calling sub-orchestrators by name +- Abandon workitems if unhandled exception occurs in client + +CHANGED: + - Improve execution logging - Drop Python 3.9, add 3.14 -- Abandon workitems if unhandled exception occurs in client + +FIXED: + - Reduce exposure of Entity context internally +REMOVED: + ## v0.5.0 - Added support for Durable Entities diff --git a/durabletask-azuremanaged/CHANGELOG.md b/durabletask-azuremanaged/CHANGELOG.md index 5789edc..dd7b17d 100644 --- a/durabletask-azuremanaged/CHANGELOG.md +++ b/durabletask-azuremanaged/CHANGELOG.md @@ -7,11 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## v1.0.0 +ADDED: + +CHANGED: + - Drop Python 3.9, add 3.14 - Updates base dependency to durabletask v1.0.0 - See durabletask changelog for more details - Allow logging configuration for DurableTaskSchedulerClient +FIXED: + +REMOVED: + ## v0.4.0 - Updates base dependency to durabletask v0.5.0 From aa5b42536186a7187d7a4b5d9bb05fd0bdacd247 Mon Sep 17 00:00:00 2001 From: Andy Staples Date: Mon, 10 Nov 2025 17:45:40 -0700 Subject: [PATCH 3/3] CHANGELOG tweaks --- CHANGELOG.md | 4 +--- durabletask-azuremanaged/CHANGELOG.md | 8 +------- 2 files changed, 2 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 12cd367..7f7dc74 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,14 +15,12 @@ ADDED: CHANGED: - Improve execution logging -- Drop Python 3.9, add 3.14 +- Supported Python versions are now 3.10- 3.14. Python 3.9 is end of life and has been removed. FIXED: - Reduce exposure of Entity context internally -REMOVED: - ## v0.5.0 - Added support for Durable Entities diff --git a/durabletask-azuremanaged/CHANGELOG.md b/durabletask-azuremanaged/CHANGELOG.md index dd7b17d..c7b339c 100644 --- a/durabletask-azuremanaged/CHANGELOG.md +++ b/durabletask-azuremanaged/CHANGELOG.md @@ -7,19 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## v1.0.0 -ADDED: - CHANGED: -- Drop Python 3.9, add 3.14 +- Supported Python versions are now 3.10- 3.14. Python 3.9 is end of life and has been removed. - Updates base dependency to durabletask v1.0.0 - See durabletask changelog for more details - Allow logging configuration for DurableTaskSchedulerClient -FIXED: - -REMOVED: - ## v0.4.0 - Updates base dependency to durabletask v0.5.0