Skip to content

Release v20.49.2

Choose a tag to compare

@github-actions github-actions released this 04 Jul 16:54
3c870b9

Fixed

  • Restored a broken build caused by the Chronicle 15.38.4 package sweep: the in-memory command-scenario event store now implements the newly added IEventStore.PII member, and the Roslyn analyzer packages are pinned back to a version compatible with the shipped SDK compiler.

Summary

The Chronicle 15.38.4 update landed on main with two build breaks that only surface with the pinned SDK (CI installs a newer SDK and did not catch them):

  • CS9057 — the sweep bumped Microsoft.CodeAnalysis.CSharp/.Workspaces/.Workspaces.Common to 5.6.0; analyzers built against 5.6.0 cannot be loaded by the Roslyn 5.3.0 compiler in the pinned SDK. Reverted to 5.3.0.
  • CS0535 — Chronicle 15.38.4 added PII to IEventStore; EventStoreForScenario did not implement it. Added it following the existing unsupported-operation pattern.

Verified locally: dotnet clean + dotnet build -c Release is clean (0 warnings, 0 errors) and all 13 *.Specs projects pass.