From a551c5a3efca730fda3bb64c00ec8fdb2dac02c6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 21 Aug 2026 02:27:23 +0000 Subject: [PATCH 1/2] Bump Anthropic from 12.35.1 to 12.42.0 --- updated-dependencies: - dependency-name: Anthropic dependency-version: 12.42.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- dotnet/Directory.Packages.props | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dotnet/Directory.Packages.props b/dotnet/Directory.Packages.props index 64825701f5..636e2695ab 100644 --- a/dotnet/Directory.Packages.props +++ b/dotnet/Directory.Packages.props @@ -11,7 +11,7 @@ - + From 24dd8a88effb4fa6f0a252ab5f98bba5a68c39cd Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 21 Aug 2026 08:33:42 +0000 Subject: [PATCH 2/2] Update Anthropic test clients for SDK interfaces Co-authored-by: rogerbarreto <19890735+rogerbarreto@users.noreply.github.com> --- .../Extensions/AnthropicBetaServiceExtensionsTests.cs | 8 ++++++++ .../Extensions/AnthropicClientExtensionsTests.cs | 4 ++++ 2 files changed, 12 insertions(+) diff --git a/dotnet/tests/Microsoft.Agents.AI.Anthropic.UnitTests/Extensions/AnthropicBetaServiceExtensionsTests.cs b/dotnet/tests/Microsoft.Agents.AI.Anthropic.UnitTests/Extensions/AnthropicBetaServiceExtensionsTests.cs index b4125ccc01..6ff7b3cd8d 100644 --- a/dotnet/tests/Microsoft.Agents.AI.Anthropic.UnitTests/Extensions/AnthropicBetaServiceExtensionsTests.cs +++ b/dotnet/tests/Microsoft.Agents.AI.Anthropic.UnitTests/Extensions/AnthropicBetaServiceExtensionsTests.cs @@ -451,6 +451,10 @@ public TestAnthropicChatClient() public IModelService Models => throw new NotImplementedException(); + public IFileService Files => throw new NotImplementedException(); + + public ISkillService Skills => throw new NotImplementedException(); + public IBetaService Beta => this.BetaService; public IBetaService BetaService { get; } @@ -503,6 +507,10 @@ public TestBetaService(IAnthropicClient client) public global::Anthropic.Services.Beta.IUserProfileService UserProfiles => throw new NotImplementedException(); + public global::Anthropic.Services.Beta.IDreamService Dreams => throw new NotImplementedException(); + + public global::Anthropic.Services.Beta.ITunnelService Tunnels => throw new NotImplementedException(); + public IBetaService WithOptions(Func modifier) { throw new NotImplementedException(); diff --git a/dotnet/tests/Microsoft.Agents.AI.Anthropic.UnitTests/Extensions/AnthropicClientExtensionsTests.cs b/dotnet/tests/Microsoft.Agents.AI.Anthropic.UnitTests/Extensions/AnthropicClientExtensionsTests.cs index d3cbc90d0b..abbbe6111f 100644 --- a/dotnet/tests/Microsoft.Agents.AI.Anthropic.UnitTests/Extensions/AnthropicClientExtensionsTests.cs +++ b/dotnet/tests/Microsoft.Agents.AI.Anthropic.UnitTests/Extensions/AnthropicClientExtensionsTests.cs @@ -81,6 +81,10 @@ public TestAnthropicChatClient() public IModelService Models => throw new NotImplementedException(); + public IFileService Files => throw new NotImplementedException(); + + public ISkillService Skills => throw new NotImplementedException(); + public IBetaService Beta => throw new NotImplementedException(); public IAnthropicClient WithOptions(Func modifier)