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).