You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix and improve connection handling, add concurrency options, prep for release (dapr#50)
* Reconnect upon connection error
* concurrency
* Test updates
* More updates
* more concurrency stuff
* final touches
* fix import
* update log level
* fix exports
* more fixup
* test updateS
* more test imports
* fix github workflow pytest
* cleanup tests
* Python 3.9 specific test fix
* fixup reconnection for new concurrency model
* autopep8
* Remove existing duplicate import
Signed-off-by: Albert Callarisa <albert@diagrid.io>
Copy file name to clipboardExpand all lines: CHANGELOG.md
+12-2Lines changed: 12 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,13 +5,23 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
8
-
## v0.2.0 (Unreleased)
8
+
## v0.3.0
9
+
10
+
### New
11
+
12
+
- Added `ConcurrencyOptions` class for fine-grained concurrency control with separate limits for activities and orchestrations. The thread pool worker count can also be configured.
13
+
14
+
### Fixed
15
+
16
+
- Fixed an issue where a worker could not recover after its connection was interrupted or severed
17
+
18
+
## v0.2.1
9
19
10
20
### New
11
21
12
22
- Added `set_custom_status` orchestrator API ([#31](https://github.com/microsoft/durabletask-python/pull/31)) - contributed by [@famarting](https://github.com/famarting)
13
23
- Added `purge_orchestration` client API ([#34](https://github.com/microsoft/durabletask-python/pull/34)) - contributed by [@famarting](https://github.com/famarting)
14
-
- Added new `durabletask-azuremanaged` package for use with the [Durable Task Scheduler](https://techcommunity.microsoft.com/blog/appsonazureblog/announcing-limited-early-access-of-the-durable-task-scheduler-for-azure-durable-/4286526) - by [@RyanLettieri](https://github.com/RyanLettieri)
24
+
- 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)
0 commit comments