Because connected components have aggressive shouldComponentUpdate, and shouldComponentUpdate doesn't support context, connected components basically stop any other context variables changes to propagate to their children.
Is there a recommended solution to this problem? I found pure option (connect(..., {pure: false})), which helps, but is there a better way?