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
This commit was created on GitHub.com and signed with GitHub’s verified signature.
The key has expired.
Added: TestStore now has scope methods that mirrors its Store counterpart for testing view store transformations.
Removed: TestStore no longer has an initializer that takes state and action transformations. Use scope instead.
Changed: identified array's id-based subscript now takes an explicit id parameter name. This avoids ambiguity when subscripting into an array of Int-identified elements.
Bug fixed: annotating reducers with debug() no longer breaks them in release builds (thanks @tulushev).
Bug fixed: nil-ing out an element of an identified array no longer puts it in an invalid state.
Bug fixed: removing more than one element of an identified array via index set should no longer remove any incorrect elements or crash.
Improved: messaging for out-of-bounds forEach errors (thanks @ryantstone for bringing up the issue).