Skip to content

Releases: Azure/azure-functions-durable-python

Durable Functions for Python (Beta) v1.0.0b11

19 Nov 00:34
fdd8278
Compare
Choose a tag to compare

Durable Functions for Python (Beta) v1.0.0b11

Durable Functions for Python v1.0.0b11 is a minor release that enables custom object serialization in the call_activity_with_retry API.

PyPi package

https://pypi.org/project/azure-functions-durable/1.0.0b11/

Bug Fixes

  • Custom Objects can now be serialized in the call_activity_with_retry API (#225) . Thank you @carlvitzthum for your contribution!

Durable Functions for Python (Beta) v1.0.0b10

20 Oct 21:35
0b805d8
Compare
Choose a tag to compare

Durable Functions for Python (Beta) v1.0.0b10

Durable Functions for Python v1.0.0b10 is a minor release that enables AzureManagedIdentity to work end-to-end.

PyPi package

https://pypi.org/project/azure-functions-durable/1.0.0b10/

Bug Fixes

  • AzureManagedIdentity APIs now returns the correct metadata to work end-to-end (#212)

Durable Functions for Python (Beta) v1.0.0b9

18 Sep 22:59
5e4da86
Compare
Choose a tag to compare

Durable Functions for Python (Beta) v1.0.0b9

Durable Functions for Python v1.0.0b9 is a minor release that improves error reporting in Python Durable Functions.

PyPi package

https://pypi.org/project/azure-functions-durable/1.0.0b9/

Bug Fixes

  • Error in the SDK are not propagated correctly and users will no longer see a generic "Object reference not set" error (#196)

Durable Functions for Python (Beta) v1.0.0b8

14 Sep 17:18
1b9d157
Compare
Choose a tag to compare

Durable Functions for Python (Beta) v1.0.0b8

Durable Functions for Python v1.0.0b8 fixes multiple bugs and introduces new Durable features to our Python experience.

PyPi package

https://pypi.org/project/azure-functions-durable/1.0.0b8/

Enchancements

  • Rewind API implemented, although still experimental (#163)
  • Discrete Enum-based representation of runtimeStatuses (#187)
  • IsReplaying Flag implemented (#185)

Bug Fixes

  • PurgeInstanceHistory operation no longer crashes locally (#188)
  • Task Retrying logic improved, prevents non-determinism in the presence of errors (#186)

Durable Functions for Python (Beta) v1.0.0b7

05 Aug 20:42
Compare
Choose a tag to compare

Durable Functions for Python (Beta) v1.0.0b7

Durable Functions for Python v1.0.0b7 fixes multiple bugs and introduces new Durable features to our Python experience.

PyPi package

https://pypi.org/project/azure-functions-durable/1.0.0b7/

Enchancements

  • SubOrchestrations are now available (#157)
  • IntelliSense is now exposed, and the project type-checks to the extent possible at the moment (#164)
  • CreateHttpManagementPayload now available (#162)

Bug Fixes

  • ContinueAsNew failed to restart the orchestrator due to a boolean flag issue, now addressed (#158)
  • Fixed serialization logic around booleans (#159)
  • A subtle CreateTimer bug is now fixed (#170)