From 2caf1bb15194c1b54e36ab50220f28762c52f0aa Mon Sep 17 00:00:00 2001 From: Chris Gillum Date: Tue, 9 Dec 2025 12:27:24 -0800 Subject: [PATCH] .NET: [Durable Agents] Update CHANGELOG with release notes for past releases (#2669) * .NET: [Durable Agents] Update CHANGELOG with release notes for past releases Backfills the CHANGELOG.md files with the last several updates. * Update dotnet/src/Microsoft.Agents.AI.DurableTask/CHANGELOG.md Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Update the Azure Functions changelog and add GHCP changelog instructions for these projects * Tweak instructions * Remove the timestamp requirement * Rename instructions file --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- .../durabletask-dotnet.instructions.md | 17 +++++++++++++++++ .../CHANGELOG.md | 16 ++++++++++++++-- .../CHANGELOG.md | 13 +++++++++++-- 3 files changed, 42 insertions(+), 4 deletions(-) create mode 100644 .github/instructions/durabletask-dotnet.instructions.md diff --git a/.github/instructions/durabletask-dotnet.instructions.md b/.github/instructions/durabletask-dotnet.instructions.md new file mode 100644 index 0000000000..84aeb542ea --- /dev/null +++ b/.github/instructions/durabletask-dotnet.instructions.md @@ -0,0 +1,17 @@ +--- +applyTo: "dotnet/src/Microsoft.Agents.AI.DurableTask/**,dotnet/src/Microsoft.Agents.AI.Hosting.AzureFunctions/**" +--- + +# Durable Task area code instructions + +The following guidelines apply to pull requests that modify files under +`dotnet/src/Microsoft.Agents.AI.DurableTask/**` or +`dotnet/src/Microsoft.Agents.AI.Hosting.AzureFunctions/**`: + +## CHANGELOG.md + +- Each pull request that modifies code should add just one bulleted entry to the `CHANGELOG.md` file containing a change title (usually the PR title) and a link to the PR itself. +- New PRs should be added to the top of the `CHANGELOG.md` file under a "## [Unreleased]" heading. +- If the PR is the first since the last release, the existing "## [Unreleased]" heading should be replaced with a "## v[X.Y.Z]" heading and the PRs since the last release should be added to the new "## [Unreleased]" heading. +- The style of new `CHANGELOG.md` entries should match the style of the other entries in the file. +- If the PR introduces a breaking change, the changelog entry should be prefixed with "[BREAKING]". diff --git a/dotnet/src/Microsoft.Agents.AI.DurableTask/CHANGELOG.md b/dotnet/src/Microsoft.Agents.AI.DurableTask/CHANGELOG.md index e908deac89..d2cdc7cd41 100644 --- a/dotnet/src/Microsoft.Agents.AI.DurableTask/CHANGELOG.md +++ b/dotnet/src/Microsoft.Agents.AI.DurableTask/CHANGELOG.md @@ -1,5 +1,17 @@ # Release History -## v1.0.0-preview.* (Unreleased) +## v1.0.0-preview.251204.1 -- Initial public release. +- Added orchestration ID to durable agent entity state ([#2137](https://github.com/microsoft/agent-framework/pull/2137)) + +## v1.0.0-preview.251125.1 + +- Added support for .NET 10 ([#2128](https://github.com/microsoft/agent-framework/pull/2128)) + +## v1.0.0-preview.251114.1 + +- Added friendly error message when running durable agent that isn't registered ([#2214](https://github.com/microsoft/agent-framework/pull/2214)) + +## v1.0.0-preview.251112.1 + +- Initial public release ([#1916](https://github.com/microsoft/agent-framework/pull/1916)) diff --git a/dotnet/src/Microsoft.Agents.AI.Hosting.AzureFunctions/CHANGELOG.md b/dotnet/src/Microsoft.Agents.AI.Hosting.AzureFunctions/CHANGELOG.md index e908deac89..d32f4bb0e2 100644 --- a/dotnet/src/Microsoft.Agents.AI.Hosting.AzureFunctions/CHANGELOG.md +++ b/dotnet/src/Microsoft.Agents.AI.Hosting.AzureFunctions/CHANGELOG.md @@ -1,5 +1,14 @@ # Release History -## v1.0.0-preview.* (Unreleased) +## v1.0.0-preview.251125.1 -- Initial public release. +- Added support for .NET 10 ([#2128](https://github.com/microsoft/agent-framework/pull/2128)) +- [BREAKING] Changed `thread_id` in HTTP APIs from entity ID to GUID ([#2260](https://github.com/microsoft/agent-framework/pull/2260)) + +## v1.0.0-preview.251114.1 + +- Added friendly error message when running durable agent that isn't registered ([#2214](https://github.com/microsoft/agent-framework/pull/2214)) + +## v1.0.0-preview.251112.1 + +- Initial public release ([#1916](https://github.com/microsoft/agent-framework/pull/1916))