Skip to content

Releases: Azure/azure-functions-durable-extension

Durable Functions v2.13.0-preview.1

20 Oct 20:51
bbd7ad6
Compare
Choose a tag to compare

Durable Functions v2.12.0

17 Oct 22:05
e7c22eb
Compare
Choose a tag to compare

Updates

  • Add target-based scaling support for Azure Storage by @davidmrdavid in #2452
  • Update function state change traces to improve orchestration monitoring query by @bachuv in #2302
  • Use IDurableClient with RawInput for LocalGrpcListener by @jviau in #2634

Dependency Updates

Durable Functions v2.11.3

13 Sep 18:31
32680a3
Compare
Choose a tag to compare

Durable Functions v2.11.2

12 Sep 20:29
e378bfa
Compare
Choose a tag to compare

Durable Functions v2.11.1

31 Aug 00:14
c9ad121
Compare
Choose a tag to compare

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

Updates

  • Make environment dictionary concurrency-safe (#2532)
  • Allow Durability Provider to disable status checks on RaiseEventAsync (#2509)
  • Use IDurableClient for gRPC OOP languages (#2544)
  • Distributed Tracing V2 early preview (#2411)
  • Add handling NRE on httpApiHandler when doing WaitForCompletionOrCreateCheckStatusResponseAsync (#2545)

Dependency Updates

Durable Functions v2.10.0

13 Jul 22:53
1389847
Compare
Choose a tag to compare

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

New features

  • Introduced Table-based Partition manager (i.e partition manager v3) (#2490). - contributed by @nytian
    • The table-based partition Manager doesn't support managed identity yet: a connection string is required.
    • To enable partition manager V3, the following configuration needs to be added in your app's host.json file.
{
  "extensions": {
    "durableTask": {
      "storageProvider": {
          "useTablePartitionManagement": true
      }
    }
  }
}

Dependency Updates

Durable Functions v2.9.6

19 Jun 23:40
284b334
Compare
Choose a tag to compare

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

Bug fixes

  • DT.AzureStorage: Add validation check for the timeout in WaitForOrchestrationAsync (Azure/durabletask#910)
  • Fixed issue of missing dedupe states in the gRPC server client when scheduling a new orchestration via IOrchestrationServiceClient (#2489)
  • Improved GRPC exception type and message when creating duplicate instances (#2493)

Dependency Updates

v2.9.5

22 May 22:28
3a8795d
Compare
Choose a tag to compare

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

Bug Fixes

Microsoft.Azure.WebJobs.Extensions.DurableTask

  • Fix handling of in-flight orchestrations and activities during host shutdown. (#2456)
    • Previously these were considered "failed", now they will be retried.
    • This only affected dotnet-isolated and java workers.

Microsoft.Azure.DurableTask.AzureStorage

Dependency Updates

Durable Functions v2.9.4

19 Apr 22:27
31e3c92
Compare
Choose a tag to compare

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

Enchancements

  • Add Extension-GUID field to telemetry (#2414)

Bug fixes

Dependency Updates

Durable Functions v2.9.3

28 Mar 17:14
ff05cfb
Compare
Choose a tag to compare

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

Enchancements

  • Suspend/resume history event support for Java and .NET isolated (#2423)
  • Added more detail to entity batch processing instrumentation, to help diagnose issues (#2390)

Bug fixes:

  • Fix orchestration scheduled start time not being respected for gRPC-based workers.
    (#2428)
  • Fix bug in entity batch processing that caused entity state size explosion (#2390)