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
18 changes: 0 additions & 18 deletions .autover/changes/fix-memory-history-ordering.json

This file was deleted.

7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## 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)
Expand Down
2 changes: 1 addition & 1 deletion src/AWS.AgentCore.Hosting/AWS.AgentCore.Hosting.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsAotCompatible>true</IsAotCompatible>
<Version>1.1.0</Version>
<Version>1.1.1</Version>
<IsPackable>true</IsPackable>
<PackageId>AWS.AgentCore.Hosting</PackageId>
<Product>AI Integrations on AWS for .NET</Product>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<IsRoslynComponent>true</IsRoslynComponent>
<GenerateDependencyFile>false</GenerateDependencyFile>
<LangVersion>14.0</LangVersion>
<Version>1.1.0</Version>
<Version>1.1.1</Version>
<IsPackable>true</IsPackable>
<EnforceCodeStyleInBuild>True</EnforceCodeStyleInBuild>
<WarningsAsErrors>true</WarningsAsErrors>
Expand Down
2 changes: 1 addition & 1 deletion src/AWS.AgentCore.Testing/AWS.AgentCore.Testing.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<IsPackable>true</IsPackable>
<PackageId>AWS.AgentCore.Testing</PackageId>
<GenerateEmbeddedFilesManifest>true</GenerateEmbeddedFilesManifest>
<Version>1.0.0</Version>
<Version>1.0.1</Version>
<Product>AI Integrations on AWS for .NET - Testing Framework</Product>
<Authors>Amazon Web Services</Authors>
<Company>Amazon Web Services</Company>
Expand Down
Loading