Skip to content

Durable Functions v2.10.0

Compare
Choose a tag to compare
@nytian nytian released this 13 Jul 22:53
· 190 commits to main since this release
1389847

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