v7.2.9
This patch release updates the rarely-used areStatesEqual
option for connect
to now pass through ownProps
for additional use in determining which pieces of state to compare if desired.
The new signature is:
{
areStatesEqual?: (
nextState: State,
prevState: State,
nextOwnProps: TOwnProps,
prevOwnProps: TOwnProps
) => boolean
}
What's Changed
Full Changelog: v7.2.8...v7.2.9