Update dependency @reduxjs/toolkit to v2.6.0 #249
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
2.5.0
->2.6.0
Release Notes
reduxjs/redux-toolkit (@reduxjs/toolkit)
v2.6.0
Compare Source
This feature release adds infinite query support to RTK Query.
Changelog
RTK Query Infinite Query support
Since we first released RTK Query in 2021, we've had users asking us to add support for "infinite queries" - the ability to keep fetching additional pages of data for a given endpoint. It's been by far our most requested feature. Until recently, our answer was that we felt there were too many use cases to support with a single API design approach.
Last year, we revisited this concept and concluded that the best approach was to mimic the flexible infinite query API design from React Query. We had additional discussions with @tkdodo , who described the rationale and implementation approach and encouraged us to use their API design, and @riqts provided an initial implementation on top of RTKQ's existing internals.
We're excited to announce that this release officially adds full infinite query endpoint support to RTK Query!
Using Infinite Queries
As with React Query, the API design is based around "page param" values that act as the query arguments for fetching a specific page for the given cache entry.
Infinite queries are defined with a new
build.infiniteQuery()
endpoint type. It accepts all of the same options as normal query endpoints, but also needs an additionalinfiniteQueryOptions
field that specifies the infinite query behaviors. With TypeScript, you must supply 3 generic arguments:build.infiniteQuery<ResultType, QueryArg, PageParam>
, whereResultType
is the contents of a single page,QueryArg
is the type passed in as the cache key, andPageParam
is the value used to request a specific page.The endpoint must define an
initialPageParam
value that will be used as the default (and can be overridden if desired). It also needs agetNextPageParam
callback that will calculate the params for each page based on the existing values, and optionally agetPreviousPageParam
callback if reverse fetching is needed. Finally, amaxPages
option can be provided to limit the entry cache size.The
query
andqueryFn
methods now receive a{queryArg, pageParam}
object, instead of just thequeryArg
.For the cache entries and hooks, the
data
field is now an object like{pages: ResultType[], pageParams: PageParam[]>
. This gives you flexibility in how you use the data for rendering.As with all RTKQ functionality, the core logic is UI-agnostic and does not require React. However, using the RTKQ React entry point will also auto-generate
useInfiniteQuery
hooks for these endpoints. Infinite query hooks fetch the initial page, then providefetchNext/PreviousPage
functions to let you trigger requests for more pages.Docs and Examples
The RTK Query docs have been updated with new content and explanations for infinite queries:
createApi
documents the new infinite query endpoint optionsWe've also added a new infinite query example app in the repo that shows several usage patterns like pagination, cursors, infinite scrolling, and limit+offset queries.
Notes
As with all new features and functionality, more code does mean an increase in bundle size.
We did extensive work to byte-shave and optimize the final bundle size for this feature. Final estimates indicate that this adds about 4.2Kmin to production bundles. That's comparable to React Query's infinite query support size.
However, given RTKQ's current architecture, that bundle size increase is included even if you aren't using any infinite query endpoints in your application. Given the significant additional functionality, that seems like an acceptable tradeoff. (And as always, having this kind of functionality built into RTKQ means that your app benefits when it uses this feature without having to add a lot of additional code to your own app, which would likely be much larger.)
Longer-term, we hope to investigate reworking some of RTKQ's internal architecture to potentially make some of the features opt-in for better bundle size optimizations, but don't have a timeline for that work.
Thanks
This new feature wouldn't have been possible without huge amounts of assistance from several people. We'd like to thank:
What's Changed
and numerous specific sub-PRs that went into that integration PR as I worked through the implementation over the last few months.
Full Changelog: reduxjs/redux-toolkit@v2.5.1...v2.6.0
v2.5.1
Compare Source
This bugfix release fixes a logic issue with the new
upsertQueryEntries
util that sometimes kept entries in apending
state indefinitely.Changelog
upsertQueryEntries
fixesUsers reported that in some cases, use of
upsertQueryEntries
to insert RTKQ cache entries prevented any further refetches of that data from happening. After investigation, we found a logic mismatch for how we handle upserts vs the existingupsertQueryData
util, which meant that sometimes the entry would be left in apending
state expecting afulfilled
action from a request ID that would never happen.This release fixes that issue and ensures the updates and refetches happen correctly.
What's Changed
Full Changelog: reduxjs/redux-toolkit@v2.5.0...v2.5.1
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.