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
AxiosDataFetcher is replaced by the NativeDataFetcher.
AxiosDataFetcherConfig is replaced by NativeDataFetcherConfig.
AxiosResponse is replaced by NativeDataFetcherResponse.
NativeDataFetcherError: a new error type introduced for native data fetching operations.
Default fetcher i.e. NativeDataFetcher.fetch is of type NativeDataFetcherFunction<T> but can be overridden by custom fetcher using the existing HttpDataFetcher<T> type.
NativeDataFetcher now exposes fetch, get, post, delete, put, head methods.
NativedDataFetcher.fetch now accepts second parameter of type RequestInit instead of unknown.