Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 8 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,15 @@

## Unreleased

## 1.24.1
- Add retry to grpc calls that failed due to transient errors by @sophiatev ([#714](https://github.com/microsoft/durabletask-dotnet/pull/714))

## v1.24.0
- Harden grpc worker and client against silent disconnects by berndverst ([#708](https://github.com/microsoft/durabletask-dotnet/pull/708))
- Preserve late events after continue-as-new by berndverst ([#711](https://github.com/microsoft/durabletask-dotnet/pull/711))
- Fix inprocesstesthost continueasnew stuck-instance race condition by bachuv ([#707](https://github.com/microsoft/durabletask-dotnet/pull/707))
- Fix continue-as-new race condition at inprocesstesthost by nytian ([#703](https://github.com/microsoft/durabletask-dotnet/pull/703))
- Add opt-in timeout to purgeinstancesfilter for partial purge by yunchuwang ([#680](https://github.com/microsoft/durabletask-dotnet/pull/680))
- Harden grpc worker and client against silent disconnects by @berndverst ([#708](https://github.com/microsoft/durabletask-dotnet/pull/708))
- Preserve late events after continue-as-new by @berndverst ([#711](https://github.com/microsoft/durabletask-dotnet/pull/711))
- Fix inprocesstesthost continueasnew stuck-instance race condition by @bachuv ([#707](https://github.com/microsoft/durabletask-dotnet/pull/707))
- Fix continue-as-new race condition at inprocesstesthost by @nytian ([#703](https://github.com/microsoft/durabletask-dotnet/pull/703))
- Add opt-in timeout to purgeinstancesfilter for partial purge by @yunchuwang ([#680](https://github.com/microsoft/durabletask-dotnet/pull/680))

## v1.23.3
- fix: revert shared framework packages to 8.x for net8 Functions host compatibility ([#698](https://github.com/microsoft/durabletask-dotnet/pull/698))
Expand Down
2 changes: 1 addition & 1 deletion Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@

<!-- DurableTask Packages -->
<ItemGroup>
<PackageVersion Include="Microsoft.Azure.DurableTask.Core" Version="3.7.1" />
<PackageVersion Include="Microsoft.Azure.DurableTask.Core" Version="3.8.0" />
<PackageVersion Include="Microsoft.Azure.Functions.Worker.Extensions.DurableTask" Version="1.15.0" />
Comment thread
sophiatev marked this conversation as resolved.
</ItemGroup>

Expand Down
2 changes: 1 addition & 1 deletion eng/targets/Release.props
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
</PropertyGroup>

<PropertyGroup>
<VersionPrefix>1.24.0</VersionPrefix>
<VersionPrefix>1.24.1</VersionPrefix>
Comment thread
sophiatev marked this conversation as resolved.
<VersionSuffix></VersionSuffix>
</PropertyGroup>

Expand Down
Loading