Vc Platform Versions Save

Virto Commerce B2B Innovation Platform

3.818.0

2 weeks ago

🎯 Development

  • Publish two different events when changing password (#2780)

3.817.0

3 weeks ago

🎯 Development

  • (Improve Counter design.)
  • (Add an ARM template for the platform deployment using Azure web app for containers.)

Image

3.452.9

4 weeks ago

🐞 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.800.13

4 weeks ago

🐞 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.816.0

4 weeks ago

🐞 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.
  • fix revoke token for customer

3.414.21

1 month ago

🐞 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

1 month ago

🎯 Development

  • azure button (#2772)

3.814.0

1 month ago

🎯 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

1 month ago

🎯 Development

  • (Extends SettingDescriptor with IsPublic property. The flag indicates that this setting is accessible for client applications via XAPI. By default, false.)

3.800.12

1 month ago

🎯 Development

  • fix folder (#2770)