Skip to content

Commit d375fc4

Browse files
committed
Fix markdown line length after main merge
1 parent f2a57aa commit d375fc4

File tree

1 file changed

+53
-21
lines changed

1 file changed

+53
-21
lines changed

CHANGELOG.md

Lines changed: 53 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
All notable changes to this project will be documented in this file.
44

5-
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6-
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project
6+
adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88
## Unreleased
99

@@ -20,15 +20,17 @@ ADDED
2020
package with `BlobPayloadStore` and `BlobPayloadStoreOptions`
2121
- Added `PayloadStore` abstract base class in
2222
`durabletask.payload` for custom storage backends
23-
- Added `durabletask.testing` module with `InMemoryOrchestrationBackend` for testing orchestrations without a sidecar process
23+
- Added `durabletask.testing` module with `InMemoryOrchestrationBackend` for testing orchestrations
24+
without a sidecar process
2425
- Added `AsyncTaskHubGrpcClient` for asyncio-based applications using `grpc.aio`
2526
- Added `DefaultAsyncClientInterceptorImpl` for async gRPC metadata interceptors
2627
- Added `get_async_grpc_channel` helper for creating async gRPC channels
2728
- Added orchestration restart client support
2829
- Added batch client actions for purge and query operations across orchestrations and entities
2930
- Added worker work item filtering support
3031
- Added new `work_item_filtering` sample
31-
- Improved distributed tracing support with full span coverage for orchestrations, activities, sub-orchestrations, timers, and events
32+
- Improved distributed tracing support with full span coverage for orchestrations, activities,
33+
sub-orchestrations, timers, and events
3234

3335
CHANGED
3436

@@ -101,7 +103,8 @@ FIXED:
101103

102104
## v0.4.1
103105

104-
- Fixed an issue where orchestrations would still throw non-determinism errors even when versioning logic should have prevented it
106+
- Fixed an issue where orchestrations would still throw non-determinism errors even when versioning
107+
logic should have prevented it
105108

106109
## v0.4.0
107110

@@ -112,7 +115,8 @@ FIXED:
112115

113116
ADDED
114117

115-
- Added `ConcurrencyOptions` class for fine-grained concurrency control with separate limits for activities and orchestrations. The thread pool worker count can also be configured.
118+
- Added `ConcurrencyOptions` class for fine-grained concurrency control with separate limits for
119+
activities and orchestrations. The thread pool worker count can also be configured.
116120

117121
FIXED
118122

@@ -122,15 +126,29 @@ FIXED
122126

123127
ADDED
124128

125-
- Added `set_custom_status` orchestrator API ([#31](https://github.com/microsoft/durabletask-python/pull/31)) - contributed by [@famarting](https://github.com/famarting)
126-
- Added `purge_orchestration` client API ([#34](https://github.com/microsoft/durabletask-python/pull/34)) - contributed by [@famarting](https://github.com/famarting)
127-
- Added new `durabletask-azuremanaged` package for use with the [Durable Task Scheduler](https://learn.microsoft.com/azure/azure-functions/durable/durable-task-scheduler/durable-task-scheduler) - by [@RyanLettieri](https://github.com/RyanLettieri)
129+
- Added `set_custom_status` orchestrator API
130+
([#31](https://github.com/microsoft/durabletask-python/pull/31)) - contributed by
131+
[@famarting](https://github.com/famarting)
132+
- Added `purge_orchestration` client API
133+
([#34](https://github.com/microsoft/durabletask-python/pull/34)) - contributed by
134+
[@famarting](https://github.com/famarting)
135+
- Added new `durabletask-azuremanaged` package for use with the [Durable Task
136+
Scheduler](https://learn.microsoft.com/azure/azure-functions/durable/durable-task-scheduler/durable-task-scheduler)
137+
- by [@RyanLettieri](https://github.com/RyanLettieri)
128138

129139
CHANGED
130140

131-
- Protos are compiled with gRPC 1.62.3 / protobuf 3.25.X instead of the latest release. This ensures compatibility with a wider range of grpcio versions for better compatibility with other packages / libraries ([#36](https://github.com/microsoft/durabletask-python/pull/36)) - by [@berndverst](https://github.com/berndverst)
132-
- Http and grpc protocols and their secure variants are stripped from the host name parameter if provided. Secure mode is enabled if the protocol provided is https or grpcs ([#38](https://github.com/microsoft/durabletask-python/pull/38) - by [@berndverst)(https://github.com/berndverst)
133-
- Improve ProtoGen by downloading proto file directly instead of using submodule ([#39](https://github.com/microsoft/durabletask-python/pull/39) - by [@berndverst](https://github.com/berndverst)
141+
- Protos are compiled with gRPC 1.62.3 / protobuf 3.25.X instead of the latest release. This ensures
142+
compatibility with a wider range of grpcio versions for better compatibility with other packages /
143+
libraries ([#36](https://github.com/microsoft/durabletask-python/pull/36)) - by
144+
[@berndverst](https://github.com/berndverst)
145+
- Http and grpc protocols and their secure variants are stripped from the host name parameter if
146+
provided. Secure mode is enabled if the protocol provided is https or grpcs
147+
([#38](https://github.com/microsoft/durabletask-python/pull/38) - by
148+
[@berndverst)(https://github.com/berndverst)
149+
- Improve ProtoGen by downloading proto file directly instead of using submodule
150+
([#39](https://github.com/microsoft/durabletask-python/pull/39) - by
151+
[@berndverst](https://github.com/berndverst)
134152

135153
CHANGED
136154

@@ -140,45 +158,59 @@ CHANGED
140158

141159
ADDED
142160

143-
- Add recursive flag in terminate_orchestration to support cascade terminate ([#27](https://github.com/microsoft/durabletask-python/pull/27)) - contributed by [@shivamkm07](https://github.com/shivamkm07)
161+
- Add recursive flag in terminate_orchestration to support cascade terminate
162+
([#27](https://github.com/microsoft/durabletask-python/pull/27)) - contributed by
163+
[@shivamkm07](https://github.com/shivamkm07)
144164

145165
## v0.1.0
146166

147167
ADDED
148168

149-
- Retry policies for activities and sub-orchestrations ([#11](https://github.com/microsoft/durabletask-python/pull/11)) - contributed by [@DeepanshuA](https://github.com/DeepanshuA)
169+
- Retry policies for activities and sub-orchestrations
170+
([#11](https://github.com/microsoft/durabletask-python/pull/11)) - contributed by
171+
[@DeepanshuA](https://github.com/DeepanshuA)
150172

151173
FIXED
152174

153-
- Fix try/except in orchestrator functions not being handled correctly ([#21](https://github.com/microsoft/durabletask-python/pull/21)) - by [@cgillum](https://github.com/cgillum)
154-
- Updated `durabletask-protobuf` submodule reference to latest distributed tracing commit - by [@cgillum](https://github.com/cgillum)
175+
- Fix try/except in orchestrator functions not being handled correctly
176+
([#21](https://github.com/microsoft/durabletask-python/pull/21)) - by
177+
[@cgillum](https://github.com/cgillum)
178+
- Updated `durabletask-protobuf` submodule reference to latest distributed tracing commit - by
179+
[@cgillum](https://github.com/cgillum)
155180

156181
## v0.1.0a5
157182

158183
ADDED
159184

160-
- Adds support for secure channels ([#18](https://github.com/microsoft/durabletask-python/pull/18)) - contributed by [@elena-kolevska](https://github.com/elena-kolevska)
185+
- Adds support for secure channels ([#18](https://github.com/microsoft/durabletask-python/pull/18))
186+
- contributed by [@elena-kolevska](https://github.com/elena-kolevska)
161187

162188
FIXED
163189

164-
- Fix zero argument values sent to activities as None ([#13](https://github.com/microsoft/durabletask-python/pull/13)) - contributed by [@DeepanshuA](https://github.com/DeepanshuA)
190+
- Fix zero argument values sent to activities as None
191+
([#13](https://github.com/microsoft/durabletask-python/pull/13)) - contributed by
192+
[@DeepanshuA](https://github.com/DeepanshuA)
165193

166194
## v0.1.0a3
167195

168196
ADDED
169197

170-
- Add gRPC metadata option ([#16](https://github.com/microsoft/durabletask-python/pull/16)) - contributed by [@DeepanshuA](https://github.com/DeepanshuA)
198+
- Add gRPC metadata option ([#16](https://github.com/microsoft/durabletask-python/pull/16)) -
199+
contributed by [@DeepanshuA](https://github.com/DeepanshuA)
171200

172201
CHANGED
173202

174-
- Removed Python 3.7 support due to EOL ([#14](https://github.com/microsoft/durabletask-python/pull/14)) - contributed by [@berndverst](https://github.com/berndverst)
203+
- Removed Python 3.7 support due to EOL
204+
([#14](https://github.com/microsoft/durabletask-python/pull/14)) - contributed by
205+
[@berndverst](https://github.com/berndverst)
175206

176207
## v0.1.0a2
177208

178209
ADDED
179210

180211
- Continue-as-new ([#9](https://github.com/microsoft/durabletask-python/pull/9))
181-
- Support for Python 3.7+ ([#10](https://github.com/microsoft/durabletask-python/pull/10)) - contributed by [@DeepanshuA](https://github.com/DeepanshuA)
212+
- Support for Python 3.7+ ([#10](https://github.com/microsoft/durabletask-python/pull/10)) -
213+
contributed by [@DeepanshuA](https://github.com/DeepanshuA)
182214

183215
## v0.1.0a1
184216

0 commit comments

Comments
 (0)