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
Added: support for concurrency-powered APIs like SwiftUI's View.refreshable() via ViewStore.send(_:while:) and ViewStore.suspend(while:), which will suspend the current task while a predicate is true.
Bug fixed: IfLetStore should never re-render its initial state when its state goes nil (thanks @ollitapa).
Bug fixed: Effect.throttle is now synchronized, eliminating potential data races (thanks @p4checo).