This repository has been archived by the owner on Jul 21, 2023. It is now read-only.
Releases: SoCreate/service-fabric-pub-sub
Releases · SoCreate/service-fabric-pub-sub
v9.1.0
Features
- Subscribe Retry: Added a retry strategy for when a subscriber fails to subscribe because the Broker doesn't exist yet.
- BrokerServiceUri: We recently lost the ability to specify the BrokerUri when publishing/subscribing. Added the ability to pass the BrokerUri to the BrokerServiceLocator class.
- Throttle on Failure: Added a config to slow down the processing loop when errors occur.
- Filter Broker Stats: Added ability to filter on time, Service name, or message type using query parameters in the GET broker/stats API in the demo app
v9.0.0
Features
- Broker Stats: Added
GetBrokerStatsAsync()
andUnsubscribeByQueueNameAsync()
toBrokerClient
to help with monitoring and managing the Broker Service. - BrokerEvents: Added BrokerEventsManager allowing users to add custom callbacks on Broker events to implement custom logging and/or monitoring functionality.
Cleanup
- Demo App: Updated Demo app to .NET Core 2.2. Integrated LoadDemo into the Demo app.
- Organization: Reorganized the repository to group projects into src, test, and examples directories.
Breaking Changes
- Rename: Changed the project name to ServiceFabric.PubSub. Updated namespaces accordingly. The new Nuget package is: https://www.nuget.org/packages/SoCreate.ServiceFabric.PubSub.
Dependencies
- Nuget: Update Nuget packages (SF 3.3.644)
v8.0.0
Major cleanup and usability improvements. Replaced Helper classes with a single BrokerClient. Removed obsolete code (BrokerActor, RelayBrokerActor, extension methods). Removed the ServiceFabric.PubSubActors.Interfaces library. Simplified the BrokerService interface.