Releases: VirtoCommerce/vc-platform
Releases · VirtoCommerce/vc-platform
3.800.13
🐞 Bug fixes
- (Resolves the issue that the last login date and time indicates the current date/time instead of NA if last login date is null or undefined.)
3.414.21
🐞 Bug fixes
- Resolves the issue that the last login date and time indicates the current date/time instead of NA if last login date is null or undefined.
3.815.0
3.814.0
🎯 Development
- Simplify event handlers registration (#2769)
Before
var handlerRegistrar = appBuilder.ApplicationServices.GetService<IHandlerRegistrar>();
handlerRegistrar.RegisterHandler<UserChangedEvent>(async (message, token) => await appBuilder.ApplicationServices.GetService<LogChangesUserChangedEventHandler>().Handle(message));
After
appBuilder.RegisterEventHandler<UserChangedEvent, LogChangesUserChangedEventHandler>();
Also, now it's possible to register a handler for all event types:
appBuilder.RegisterEventHandler<DomainEvent, AllEventsHandler>();
Note
If you register an event handler for UserChangedEvent, this handler will receive UserChangedEvent and all events derived from UserChangedEvent.
3.813.0
3.812.0
3.800.12
3.293.34
🎯 Development
- (Extend Platform Information with Environment Mode.)
3.811.0
3.800.11
Update dependencies