Skip to content

Durable Functions v2.9.0

Compare
Choose a tag to compare
@nytian nytian released this 23 Nov 00:02
· 185 commits to main since this release
140183b

https://www.nuget.org/packages/Microsoft.Azure.WebJobs.Extensions.DurableTask/2.9.0

Updates

  • Added V2 middleware support for custom handlers (#2294) - contributed by @cgillum
  • Added suspend, resume, and rewind operation handling for V2 out-of-proc (#2312) - contributed by @cgillum
  • Enable the display of activity function inputs (#2267) - contributed by @nytiannn
  • Mitigated CVE-2022-1941 by updating transitive Google.ProtoBuf dependency (#2309)

Note that to enable the display of activity function inputs when querying orchestration history, you must set the following configuration in your host.json file:

{
  "extensions": {
    "durableTask": {
      "storeInputsInOrchestrationHistory": true
    }
  }
}

This setting tells the Durable Task Framework to save activity inputs in the history table (which it doesn't do by default).

Dependencies

  • Updated Microsoft.DurableTask.Sidecar.Protobuf dependency to v1.0.0 (#2312)
  • Updated Microsoft.Azure.DurableTask.Core dependency to 2.12.* (#2319)