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
14 changes: 11 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,20 @@
# Changelog

## Unreleased


## v1.25.0-preview.2
Comment thread
YunchuWang marked this conversation as resolved.
- On-demand sandbox ([#736](https://github.com/microsoft/durabletask-dotnet/pull/736))
- Bump Grpc.AspNetCore.Server from 2.76.0 to 2.80.0 ([#747](https://github.com/microsoft/durabletask-dotnet/pull/747))
- Bump Grpc.Net.Client from 2.76.0 to 2.80.0 ([#748](https://github.com/microsoft/durabletask-dotnet/pull/748))
- Fix DURABLE0010 false positives when a replay-safe logger created via `TaskOrchestrationContext.CreateReplaySafeLogger` is passed to a helper method ([#717](https://github.com/microsoft/durabletask-dotnet/issues/717), [#718](https://github.com/microsoft/durabletask-dotnet/pull/718))
- Expose scheduled version on TaskActivityContext ([#744](https://github.com/microsoft/durabletask-dotnet/pull/744))
- Bump Grpc.Tools from 2.78.0 to 2.81.0 ([#740](https://github.com/microsoft/durabletask-dotnet/pull/740))
- Add PackageRequireLicenseAcceptance to Release.props for authoring requirements ([#733](https://github.com/microsoft/durabletask-dotnet/pull/733))
- Remove Copilot agent GitHub Actions workflow ([#728](https://github.com/microsoft/durabletask-dotnet/pull/728))
- Split private preview on-demand sandbox APIs into opt-in `Microsoft.DurableTask.Client.AzureManaged.Sandboxes` and `Microsoft.DurableTask.Worker.AzureManaged.Sandboxes` packages.
- Updated private preview on-demand sandbox worker profile declarations to use `SandboxWorkerProfileOptions.AddActivity(...)`, and updated the on-demand sandbox sample to share activity name constants between the main app and remote worker.
- Added SDK-side validation for private preview on-demand sandbox CPU and memory resource quantities.
- Fix DURABLE0010 false positives when a replay-safe logger created via `TaskOrchestrationContext.CreateReplaySafeLogger` is passed to a helper method ([#717](https://github.com/microsoft/durabletask-dotnet/issues/717))



Comment thread
YunchuWang marked this conversation as resolved.
Expand Down Expand Up @@ -465,5 +475,3 @@ Initial public release





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

<PropertyGroup>
<VersionPrefix>1.25.0</VersionPrefix>
<VersionSuffix>preview.1</VersionSuffix>
<VersionSuffix>preview.2</VersionSuffix>
</PropertyGroup>

</Project>
3 changes: 1 addition & 2 deletions src/ExportHistory/ExportHistory.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFrameworks>net6.0;net8.0;net10.0</TargetFrameworks>
<PackageDescription>Durable Task Export History</PackageDescription>
<EnableStyleCop>true</EnableStyleCop>
<VersionSuffix>preview.1</VersionSuffix>
<VersionSuffix>preview.2</VersionSuffix>
Comment thread
YunchuWang marked this conversation as resolved.
</PropertyGroup>

<ItemGroup>
Expand All @@ -23,4 +23,3 @@
</ItemGroup>

</Project>

2 changes: 1 addition & 1 deletion src/Generators/Generators.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<PropertyGroup>
<!-- This file intentionally versions separately from the other packages. -->
<VersionPrefix>2.1.0</VersionPrefix>
<VersionSuffix>preview.1</VersionSuffix>
<VersionSuffix>preview.2</VersionSuffix>
</PropertyGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/ScheduledTasks/ScheduledTasks.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFrameworks>net6.0;net8.0;net10.0</TargetFrameworks>
<PackageDescription>Durable Task Scheduled Tasks Client</PackageDescription>
<EnableStyleCop>true</EnableStyleCop>
<VersionSuffix>preview.1</VersionSuffix>
<VersionSuffix>preview.2</VersionSuffix>
Comment thread
YunchuWang marked this conversation as resolved.
</PropertyGroup>

<ItemGroup>
Expand Down
Loading