Durable Functions for Python v1.0.1
Durable Functions for Python v1.0.1
Durable Functions for Python v1.0.1 is an exciting new release with new features, bug fixes, and all sorts of goodies!
https://pypi.org/project/azure-functions-durable/1.0.1/
New Features
- The
read_entity_state
API is now available (#285). Thank you @martijnlentink for your contribution!! 🌈 🌈
General Improvements
- We now support a new replay algorithm that, when paired with a supporting durable-extension version, should provide a more reliable translation of the Python-defined workflow to the C# Durable Functions engine!
Bug Fixes
- Tasks can now only be yielded once, meaning that they won't be scheduled for execution again of the
yield
keyword is placed before them more than once. Instead, on a duplicate yielding, the Task will simply return its result (#292)