Skip to content

Durable Functions for Python v1.0.1

Choose a tag to compare

@davidmrdavid davidmrdavid released this 25 Jun 21:58
76b2433

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)

Repo-internal changes

  • Codebase is now MyPy compliant (#293)
  • Entity sample now uses correct host.json config (#296)