React Native + Axios 3.0.0

  • Fix an issue preventing DataDomeInterceptor to propagate error responses to the caller catch block

Breaking changes

DataDomeInterceptor now propagates errors when the request fails with a status code other than 401 or 403 after retrying.

Previously, such errors were silently ignored, preventing them from reaching the caller’s catch block.

Impact:

  • Requests that previously appeared as resolved may now reject.
  • Downstream code using the interceptor must handle potential rejections via .catch() or try/catch.