Description
Is your feature request related to a problem? Please describe.
We've created a branch to migrate our application code to RQ v5, but have refrained since Refine uses RQ under the hood and want to avoid breaking any dependencies.
Describe alternatives you've considered
Keep using RQ v4 for the time being.
Additional context
https://tanstack.com/query/v5/docs/react/guides/migrating-to-v5
The migration process is relatively straightforward. They did remove the query callbacks, and the new paradigm for reacting to queries is doing so with useEffect
hooks. One can still set global callbacks for queries, which refine uses for the notifications context, so the migration for Refine will likely center around that for their custom useQuery hooks.
They've also standardized the query function signatures only to accept objects. The typing should auto-alert the internal refine code.
Describe the thing to improve
Having the ability to use React Query v5 in our refine project.