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
In the previous release, we have removed pass-by-reference instances and stopped relying on mutating input data and instead just carried data as we call through the chain of interceptors. Unfortunately, we missed the innermost case of passing the values to the final callback, and thus any data modified by the interceptors got lost. This release fixes this issue.