You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Removed "Demo Info Modal" configuration option and related templates.
Removed DI Modules left in conf/application.conf from previous release, now only SunriseModule is required. You can check Sunrise Starter Project's default Module class and conf/application.conf as an example of how they should look like in your project.
Technical
Changed the way session is handled with Carts, Customers and Orders:
Overwriting the data in session for Cart and Customer is triggered with Sunrise Components. Register to your Module.java both CartComponent and CustomerComponent and enable it to the controllers you consider necessary in order to activate them.
SessionHandler<T> interface and abstract class SessionHandlerBase<T> can be used to implement all the classes that take care of managing the data stored in session related to an element T (e.g. Carts, Customers, Orders).