-
Notifications
You must be signed in to change notification settings - Fork 198
.NET isolated template not picking up latest Durable Task worker extension #1664
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Hi @lilyjma , Just checked the code, Durable Team should create a PR to bump this version - https://github.com/Azure/azure-functions-templates/blob/dev/Functions.Templates/Templates/DurableFunctionsOrchestration-CSharp-Isolated/.template.config/template.json#L42 They should also verify other Durable related package versions. Naren has written a script to bump minor versions before a release, but it doesn't bump major versions (they tend to have breaking changes) as it has to be driven by the owning team |
The package is already bumped to latest worker version 1.3.0. https://github.com/Azure/azure-functions-templates/blob/dev/Functions.Templates/Templates/DurableFunctionsOrchestration-CSharp-Isolated/.template.config/template.json#L42. It also have been released to production.
|
Thanks to both! I checked on VSCode and see the latest DurableTask version now. |
.NET isolated template is not picking up the latest version of the
Microsoft.Azure.Functions.Worker.Extensions.DurableTask
package.It's picking up the following version, which is taking a dependency on an older major version of the Durable webjobs extension (v2):
<PackageReference Include="Microsoft.Azure.Functions.Worker.Extensions.DurableTask" Version="1.1.7" />
The problem this causes is a package downgrade error when using the latest backend packages such as the DTS and MSSQL packages, because they use v3 of the webjobs extension.
The text was updated successfully, but these errors were encountered: