Skip to content

Latest commit

 

History

History
44 lines (33 loc) · 3.1 KB

File metadata and controls

44 lines (33 loc) · 3.1 KB

Release 2026-08-20 #2

AWS.AgentCore.Hosting (1.1.1)

  • Fixed AgentCoreMemoryProvider replaying conversation history in reverse (newest-first) order. The AgentCore Memory ListEvents API returns events newest-first; the provider now sorts them ascending by EventTimestamp so chat history is presented oldest-first and multi-turn follow-ups bind to the most recent turn.

AWS.AgentCore.Testing (1.0.1)

  • Updated the in-memory Memory emulator (InMemoryEventStore.ListEvents) to return events newest-first, matching the ordering of the real Amazon Bedrock AgentCore Memory ListEvents API so local tests exercise the same ordering behavior as production.

Release 2026-08-20

AWS.AgentCore.Hosting (1.1.0)

  • Updated the Bedrock Microsoft.Extensions.AI dependency to the in-repo AWS.Bedrock.MEAI package, replacing the older AWSSDK.Extensions.Bedrock.MEAI package. The public API (Amazon.BedrockRuntime namespace and AmazonBedrockRuntimeExtensions methods) is unchanged.

Release 2026-08-06

AWS.Bedrock.MEAI (1.0.0)

  • Migrated the Bedrock Microsoft.Extensions.AI integration into the aws-dotnet-ai repository. This package was previously published as AWSSDK.Extensions.Bedrock.MEAI from the aws-sdk-net repository. The AmazonBedrockRuntimeExtensions methods remain in the Amazon.BedrockRuntime namespace; the package's other types now live in the AWS.Bedrock.MEAI namespace.

Release 2026-08-04

AWS.AgentCore.Hosting (1.0.0)

  • Promoted AWS.AgentCore.Hosting to its first stable 1.0.0 release.

AWS.AgentCore.Testing (1.0.0)

  • Promoted AWS.AgentCore.Testing to its first stable 1.0.0 release.

Release 2026-06-24

AWS.AgentCore.Hosting (0.1.0-preview)

  • Added OpenTelemetry instrumentation support. IChatClient and AIAgent are wrapped with .UseOpenTelemetry() decorators that emit traces and metrics under standard Microsoft AI activity sources. Users wire their own OTel pipeline and call AddAgentCoreInstrumentation() on TracerProviderBuilder/MeterProviderBuilder to subscribe AgentCore sources and meters.
  • Fixed request deserialization to not require Content-Type: application/json. The AgentCore Runtime forwards requests without a JSON content type; the /invocations endpoint now reads the body directly via JsonSerializer instead of ReadFromJsonAsync.

Release 2026-06-05

AWS.AgentCore.Hosting (0.0.1-preview)

  • AgentCore Runtime endpoint mapping (POST /invocations, GET /ping) with Minimal API-style parameter binding
  • Source generator for zero-boilerplate agent development ([AgentCoreStartup], [AgentCoreHandler], [AgentCorePing])
  • SSE streaming support via IAsyncEnumerable
  • Microsoft Agent Framework integration (IChatClient, ChatClientAgent, agent middleware pipeline)
  • AgentCore Memory integration for session-scoped conversation history
  • NativeAOT support with JsonSerializerContext overloads

AWS.AgentCore.Testing (0.0.1-preview)

  • Runtime Emulator server for local AgentCore SDK request handling
  • Memory Emulator server with in-memory conversation event storage
  • Chat App web UI with payload editor, session management, and markdown rendering
  • Payload configuration persistence across restarts