https://www.nuget.org/packages/Microsoft.Azure.WebJobs.Extensions.DurableTask/3.9.1
What's Changed
- Implement IOptionsFormatter for DurableTaskOptions with usage samples by @Copilot in #3290
- Add a runtime status check to purge requests by @sophiatev in #3311
Breaking Changes
In #3311, several breaking changes were introduced:
- For users and languages (at the time of these release notes, Node) using the HTTP endpoint to purge individual instance, previously a 404, not found status code would be thrown when attempting to purge an entity instance. Now it is possible to purge entities via this method. If an entity does not exist, a purge result with purge count 0 is returned.
- For this same HTTP endpoint, if a user attempted to purge an orchestration with an instance ID that starts with '@', if that orchestration does not exist previously a 404 would be thrown. Now if it does not exist, a purge result with purge count 0 is returned.
Full Changelog: v3.9.0...v3.9.1