Skip to content

Releases: Azure/azure-functions-durable-python

Durable Functions for Python v1.4.0

24 Sep 23:58
28b4d8b
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v1.3.3...v1.4.0

Durable Functions for Python v1.3.3

21 Aug 22:25
abb2392
Compare
Choose a tag to compare

What's Changed

  • Add version property to DurableOrchestrationContext class by @AnatoliB in #557
  • Bump aiohttp from 3.12.9 to 3.12.14 by @dependabot[bot] in #564

Full Changelog: v1.3.2...v1.3.3

Durable Functions for Python v1.3.2

17 Jun 23:48
c957019
Compare
Choose a tag to compare

Python module azure-functions-durable v1.3.2 contains a fix for create_timer in non-"Azure Storage" backends.

What's Changed

Full Changelog: v1.3.1...v1.3.2

v1.3.1

12 Jun 22:42
6c7bc55
Compare
Choose a tag to compare

Python module azure-functions-durable v1.3.1 contains fixes to module dependencies and versioning to ensure successful install

What's Changed

Full Changelog: v1.3.0...v1.3.1

v1.3.0

12 Jun 17:53
db54053
Compare
Choose a tag to compare

Python module azure-functions-durable v1.3.0 is now available on PyPi offering several improvements and new features, including:

Improvements

  • Support for long timers
  • Support for unit testing orchestrators, entities, and durable client functions
  • Support for distributed tracing with OpenTelemetry (Requires WebJobs extension version >= 3.2.0, coming with future extension bundles release)

Bugfixes:

  • Better handling for exceptions raised with no error message
  • Fixes for certain edge cases with task_any returning the same tasks multiple times

Dependency updates

  • Updates requests, aiohttp to latest
  • Requires Python >= 3.9

Full changelog:

New Contributors

Full Changelog: v1.2.10...v1.3.0

Durable Functions for Python v1.2.10

22 Oct 18:33
74d9181
Compare
Choose a tag to compare

[package link]

Updates

  • Bugfix: Support returning json serializable objects from an orchestrator function by @ZainRizvi in #490
  • Update Orchestration Ouput Return error by @nytian in #493
  • fix: entity id should compare based on name and key by @LeonardHd in #520
  • chore: add devcontainer by @LeonardHd in #522
  • Content Handling Improvement in call_http method by @nytian in #494

Full Changelog: v1.2.9...v1.2.10

Durable Functions for Python v1.2.9

14 Feb 02:57
34112b1
Compare
Choose a tag to compare

Durable Functions for Python v1.2.9 is release with some minor improvements:

Updates:

  • Patch bug in deserializing None return values (#466)
  • Provide suspend/resume client support (#483)

Durable Functions for Python v1.2.8

07 Nov 01:23
7d21ac9
Compare
Choose a tag to compare

Durable Functions for Python v1.2.8 is a patch that provides support for upcoming changes in the azure-functions library. These changes were originally released as part of v1.2.7, but that release will be yanked due to an error at start up. This release contains those changes and the startup error fix.

Updates

  • Provide support for upcoming SettingsAPI in azure-functions (#463)
  • Fix start up error introduced on #463 (#464)

Durable Functions for Python v1.2.6

07 Sep 23:30
b27dd33
Compare
Choose a tag to compare

Durable Functions for Python v1.2.6 is a patch release fixing some bugs.

Bug fixes:

  • Prevent already scheduled tasks from being added to opentasks list (#457)

Durable Functions for Python v1.2.5

08 Aug 17:33
7442d1c
Compare
Choose a tag to compare

Durable Functions for Python v1.2.5 is a patch release fixing some bugs.

Bug fixes:

  • Support repeatedly calling WhenAny on a progressively smaller list of already scheduled tasks (#446)