Releases: berk2k/FlowMediator
Releases · berk2k/FlowMediator
Release list
FlowMediator v2.0.1
- Clarified PublishAsync dispatch semantics (in-process, sequential; handler order not guaranteed unless explicitly controlled).
- Clarified exception behavior: if any event handler throws, dispatch stops and the exception is re-thrown.
- Updated NuGet README to reduce ambiguity.
FlowMediator v2.0.0
FlowMediator v2.0.0
This release introduces a clear and explicit separation between
application flow and event-driven side effects.
Highlights
- Explicit
SendAsyncvsPublishAsyncAPI - Events are no longer treated as requests
- Multiple event handlers supported
- Pipeline behaviors apply only to
SendAsync - Deterministic event execution (sequential & synchronous)
Breaking Changes
- Events can no longer be sent via
SendAsync - Event handlers no longer return a response
- Migration from v1.x is required
See the migration guide and full documentation on GitHub.
FlowMediator v1.2.0
Initial stable release of FlowMediator.
- IRequest / IRequestHandler support
- Pipeline behaviors
- Domain events via mediator