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
Remove stateType: label from Store.init (this was required for StoreType to work) - @Qata
Change DispatchQueue handling location from Store to ObservableProperty - @Qata
API Changes:
Add the dispatchQueue: argument to the initialiser. The queue is a DispatchQueue which is used as the execution context for - @Qata
Use default arguments in the main initialiser and remove the convenience initialiser (Swift autogenerates convenience initialisers when default arguments are used) - @Qata
Add map(_:), distinct(_:) and distinct() to ObservableProperty - @Qata
Add the increase method to Middleware, allowing you to transform one action into many - @Qata
Bug Fixes:
Move the setting of the store observable's value out of the locked area, preventing updates from triggering the "Reducers dispatching actions" exception - @Qata