-
-
Notifications
You must be signed in to change notification settings - Fork 2.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[FEAT] React-Query v5 compatibility #5370
Comments
Thanks for the issue @bombillazo. Migration looks straightforward, other than callbacks. @aliemir had the idea of providing these callbacks as a polyfill with the current v4 version of refine. This means we could still accept |
Yeah! I think that would be the best approach for backward compatibility; in fact, I think (if I remember correctly from the RQ maintainers) that is what RQ is doing internally for those callbacks. |
Would migrating to v5 allow us to take advantage of the react query suspense features? |
yea suspense would be great |
any update on this? |
Just wanted to give my +1 for this request. (I'm having a "brownfield" project, which is already using react-query@5 and I tried using refine there. It looks like the missing support for the new version of react-query sadly blocks me from adopting refine.) Also: Huge "thank you" for this fantastic project 🙂! |
@BatuhanW could you please specify what needs to be done in preparation before migration to react-query v5? |
Hey @zernie the main refactor should be replacing removed onXXX calbacks with useEffect for notifications in internal logic. Also, since these callbacks might be used by current Refine users, we also need to keep these types and trigger them with useEffect. Other thing is we need to check react-query's new types and make sure there is no breaking change with current Refine types. We are open to contributions for this issue, if anyone wants to work on this. |
Was anyone able to look into this? The Refine source is pretty daunting and internally has lots of file/usage of RQ, perhaps identifying where the changes are required will motivate others to take the challenge? |
Curious if this is on roadmap and/or in need of contributors? Haven't seen any mention of it in awhile. |
We've discussed with core team internally, there is no way to do this upgrade without a breaking change in refine v4. If we update react-query to v5, we'll have users both on react-query v4 and v5. We will not release a major Refine version atm, and we also have plans to make react-query (Store provider) agnostic on our next major release. But they aren't clear yet. |
@BatuhanW apologies wasn't expecting such a quick response(s). is agnostic the next major version release or is that not yet determined? |
@BatuhanW wait, does that mean it'd be possible to use RTK Query in the future? |
We don't want to release this update as a basic version bump, but we want to deeply integrate new features such as suspense, server components into Refine. Things are moving fast nowadays on RSC side. We'll keep you posted in the future. |
And another library becomes infected with RSC. Really was hoping to keep this library as part of my stack. oh well good luck |
We don't want to enforce anything on users. That's why we are not doing the upgrade at the moment. Even if we support some features, that wouldn't be required or would be opt-in. RSC is controversial topic right now, we'll wait for it to become more mature and see how community positions itself with it. |
I think you're right to hold back. React core's head space is clearly in supporting vercel/nextjs priorities. I was just hoping to keep the libraries version in sync as react-query v5 is a dependency but i'll make do. ty for the response. |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
Hey, this makes new projects that use pnpm start out broken because of how pnpm treats peers. I'm very interested in seeing this resolved, even if not properly solved, as the current situation is a proper blocker on the whole thing.. |
that'd be perfect since we use redux. is there any way to contribute to this effort? |
Forgot to mention @BatuhanW |
Hey everyone 👋 I'd like to share some context on the delay in updating Refine to use TanStack React Query v5 and our plans moving forward. The main reason for the delay is our focus on ensuring the new features in Refine v4 are stable and won't require breaking changes later on. Given that our last major release included updates across almost all providers, we wanted to be cautious and make sure everything is mature enough before introducing another major change. We also wanted to make sure that we're in a stable environment for new features such as Server components etc. Our approach is to release the upcoming improvements in Refine gradually, allowing users to adapt their codebases smoothly. Once these changes are stable, we'll proceed with updating React Query to the latest version, which will be part of a major release from The migration from React Query v4 to v5 is relatively straightforward for Refine; it mainly involves renaming a few props and updating internal query callbacks. However, for users who use We'll keep this issue updated. You can expect to hear from us soon with a roadmap of the improvements, new features and eventually the major update. |
This means that Refine v4 would have a non-major breaking version update? Maybe refine should adopt the epoch approach as outlined by the semver spec creator and github cofounder here? It feels like the major increment is more of a hinderance than a blessing for refine with it's dual marketing/semantics purpose, and I can totally relate |
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.
The text was updated successfully, but these errors were encountered: