axios-auth-refresh icon indicating copy to clipboard operation
axios-auth-refresh copied to clipboard

Library that helps you implement automatic refresh of authorization via axios interceptors. You can easily intercept the original request when it fails, refresh the authorization and continue with the...

Results 37 axios-auth-refresh issues
Sort by recently updated
recently updated
newest added

Bumps [prettier](https://github.com/prettier/prettier) from 2.8.7 to 3.2.5. Release notes Sourced from prettier's releases. 3.2.5 🔗 Changelog 3.2.4 Fix .eslintrc.json format #15947 🔗 Changelog 3.2.3 Format tsconfig.json file with jsonc parser #15927...

dependencies
javascript

Bumps [axios](https://github.com/axios/axios) from 1.6.0 to 1.6.7. Release notes Sourced from axios's releases. Release v1.6.7 Release notes: Bug Fixes capture async stack only for rejections with native error objects; (#6203) (1a08f90)...

dependencies
javascript

Whenever i run a build it gives this `Writable is not defined` error. I have downgraded axios to version 1.1.2 and it works fine.

Bumps [follow-redirects](https://github.com/follow-redirects/follow-redirects) from 1.15.2 to 1.15.4. Commits 6585820 Release version 1.15.4 of the npm package. 7a6567e Disallow bracketed hostnames. 05629af Prefer native URL instead of deprecated url.parse. 1cba8e8 Prefer native...

dependencies
javascript

Bumps [typescript](https://github.com/Microsoft/TypeScript) from 4.9.4 to 5.3.3. Release notes Sourced from typescript's releases. TypeScript 5.3.3 For release notes, check out the release announcement. For the complete list of fixed issues, check...

dependencies
javascript

Bumps [webpack-cli](https://github.com/webpack/webpack-cli) from 5.0.1 to 5.1.4. Release notes Sourced from webpack-cli's releases. v5.1.4 5.1.4 (2023-06-07) Bug Fixes multi compiler progress output (f659624) v5.1.3 5.1.3 (2023-06-04) Bug Fixes regression for custom...

dependencies
javascript

Bumps [terser-webpack-plugin](https://github.com/webpack-contrib/terser-webpack-plugin) from 5.3.6 to 5.3.10. Release notes Sourced from terser-webpack-plugin's releases. v5.3.10 5.3.10 (2023-12-28) Bug Fixes bump terser to the latest stable version (#587) (f650fa3) v5.3.9 5.3.9 (2023-05-17) Bug...

dependencies
javascript

Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. Release notes Sourced from actions/checkout's releases. v4.0.0 What's Changed Update default runtime to node20 by @​takost in actions/checkout#1436 Support fetching without the --progress option...

dependencies
github_actions

First of all thanks for this library. Lib versions: "axios": "^1.3.2", "axios-auth-refresh": "^3.3.6", First of all here is my configurationg: const refreshAuthLogic = async (failed) => { const tokenRefreshResponse =...

So if the Function that calls the refresh authorization fails, React-query isLoading will always be true. Here is my code: ``` import axios from "axios"; import createAuthRefreshInterceptor from "axios-auth-refresh"; const...