Fix Async suffix on test methods and add CHANGELOG entries

- Rename three test methods to include Async suffix (IDE1006 fix)
- Add CHANGELOG entries for DurableTask and Hosting.AzureFunctions

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
Shyju Krishnankutty
2026-06-15 17:47:20 -07:00
Unverified
parent f4bf0819c2
commit 74dfddd38c
3 changed files with 5 additions and 3 deletions
@@ -2,6 +2,7 @@
## [Unreleased]
- Bind MCP threadId to the current agent and guard cross-agent session dispatch ([#6531](https://github.com/microsoft/agent-framework/pull/6531))
- Added support for durable workflows ([#4436](https://github.com/microsoft/agent-framework/pull/4436))
## v1.0.0-preview.260219.1
@@ -2,6 +2,7 @@
## [Unreleased]
- Bind MCP threadId to the current agent and guard cross-agent session dispatch ([#6531](https://github.com/microsoft/agent-framework/pull/6531))
- Support returning workflow results from HTTP trigger endpoint ([#5321](https://github.com/microsoft/agent-framework/pull/5321))
- Added MCP tool trigger support for durable workflows ([#4768](https://github.com/microsoft/agent-framework/pull/4768))
- Added Azure Functions hosting support for durable workflows ([#4436](https://github.com/microsoft/agent-framework/pull/4436))
@@ -9,7 +9,7 @@ public sealed class DurableAIAgentProxyTests
// Verifies the proxy rejects a session whose agent name differs from its own,
// and that the durable client is never called when this happens.
[Fact]
public async Task RunAsync_ThrowsWhenSessionBelongsToDifferentAgent()
public async Task RunAsync_ThrowsWhenSessionBelongsToDifferentAgentAsync()
{
StubDurableAgentClient client = new();
DurableAIAgentProxy proxy = new("agentA", client);
@@ -27,7 +27,7 @@ public sealed class DurableAIAgentProxyTests
// Control test: when the session's agent name matches the proxy's name,
// the request is forwarded to the durable client.
[Fact]
public async Task RunAsync_AllowsSessionWhenAgentNameMatches()
public async Task RunAsync_AllowsSessionWhenAgentNameMatchesAsync()
{
AgentSessionId sessionId = new("agentA", "shared-key");
InvalidOperationException sentinel = new("reached the client");
@@ -48,7 +48,7 @@ public sealed class DurableAIAgentProxyTests
// Ensures the agent-name comparison is case-insensitive, so casing differences
// are neither a false-positive rejection nor a bypass.
[Fact]
public async Task RunAsync_AgentNameComparisonIsCaseInsensitive()
public async Task RunAsync_AgentNameComparisonIsCaseInsensitiveAsync()
{
AgentSessionId sessionId = new("AGENTA", "shared-key");
InvalidOperationException sentinel = new("reached the client");