Releases: andresgutierrez/nixie
Releases · andresgutierrez/nixie
v1.0.8
This release includes important improvements to complement Nixie's feature set:
- Added GracefulShutdown to terminate an actor after waiting for a delay to allow the pending messages in the actor's inbox to finish processing. This is done asynchronously.
- Added ScheduledShutdown to schedule the termination of an actor after a delay without waiting.
- Removed support for .NET 6 and 7 due to reliance on specific APIs of .NET 8.
v1.0.1
After being tested for over a year in production, this is the first stable version of Nixie.
Additionally, the following features have been added:
- Support for structs in messages and actor responses without requiring boxing/unboxing.
- Support for gracefully shutting down and destroying actors.
- Increased number of unit tests.
v0.0.5
- Added support for timeouts in Ask operations
- Added ConsistentHash/RoundRobin reply routers
- Make actor responses optional by default
- Improved reliability
v0.0.3
- Added support for dependency injection when spawning actors
- Added support for Logging
- Added functionality to Shutdown actors
- Improved reliability
v0.0.1
- Initial release