build(deps): bump @reduxjs/toolkit from 1.9.7 to 2.2.6
Bumps @reduxjs/toolkit from 1.9.7 to 2.2.6.
Release notes
Sourced from @reduxjs/toolkit's releases.
v2.2.6
This bugfix release:
- Brings internal
useIsomorphicLayoutEffectusage in line with React Redux in React Native environments- Exports
FetchBaseQueryArgstype- Fixes an issue in recent
createEntityAdaptersorting perf improvements that could (in specific cases) cause Immer to throw an errorWhat's Changed
- Fix
useIsomorphicLayoutEffectusage in React Native environments by@aryaemami59in reduxjs/redux-toolkit#4436- Add export for FetchBaseQueryArgs by
@WilsonCWongin reduxjs/redux-toolkit#4465- Fix Immer current usage when calling addManyMutably more than once by
@JacobShaferin reduxjs/redux-toolkit#4420- Golf a few pieces of entity adapter code by
@EskiMojo14in reduxjs/redux-toolkit#4485Full Changelog: https://github.com/reduxjs/redux-toolkit/compare/v2.2.5...v2.2.6
v2.2.5
This bugfix release fixes an issue in the recent
createEntityAdaptersorting perf improvements that could (in specific cases) cause Immer to throw an error when trying to read a plain JS value instead of a proxy-wrapped value.What's Changed
- Fix missed spot where use of
currentmay fail if the value is not a draft by@markeriksonin reduxjs/redux-toolkit#4412Full Changelog: https://github.com/reduxjs/redux-toolkit/compare/v2.2.4...v2.2.5
v2.2.4
This bugfix release improves sorting performance in
createEntityAdapter, shrinks the code size in matcher utilities, fixes assorted issues with query hooks, and makes several TS tweaks.Changelog
Entity Adapter Sorting Performance
Users reported in #4252 that the sorting performance of
createEntityAdapterseemed abnormally bad - the provided comparison functions were being called far more times than expected.Upon investigation, we had a couple of problems. We were always starting from an array that was in insertion order, not the existing sorted order, and that would always require significant effort to re-sort even if there weren't any actual changes to the sorted results. Also, the sorting checks required frequent access to Immer's Proxy-wrapped values, even in cases where all we needed was the plain state values for comparison purposes.
We've reworked the internal sorting logic to always start from the existing sorted array, do reads against a plain value to avoid the Proxy getter overhead where possible, and optimized inserts into existing sorted arrays. This should significantly speed up sorted entity adapter behavior.
Matcher Code Size Optimization
We've reworked the internals of the thunk-related matchers to deduplicate some of the logic, shaving a few bytes off the final bundle size.
RTK Query Hook Updates
defaultSerializeQueryArgscan now handleBigIntvalues safely.The
isLoadingflag logic was improved to handle errors when a query hook tries to subscribe.TS Updates
create.asyncThunk's types were improved to avoid cases where it might inferany.
... (truncated)
Commits
a9362fbv2.2.620d5d2bMerge pull request #4485 from reduxjs/entity-golf93b29e1remove a couple more unnecessary assertionsd114f81type getCurrent to remove Draft typef0088d3golf a few things09c36a2Merge pull request #4420 from JacobShafer/fix/4411_fix_sorted_idsb1b845aremove unused importsdc0cb57Merge pull request #4475 from aryaemami59/fix-ci-tests9371a4cFix CI tests07614ddMerge pull request #4468 from aryaemami59/bump-vitest- Additional commits viewable in compare view
Maintainer changes
This version was pushed to npm by phryneas, a new releaser for @reduxjs/toolkit since your current version.
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
-
@dependabot rebasewill rebase this PR -
@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it -
@dependabot mergewill merge this PR after your CI passes on it -
@dependabot squash and mergewill squash and merge this PR after your CI passes on it -
@dependabot cancel mergewill cancel a previously requested merge and block automerging -
@dependabot reopenwill reopen this PR if it is closed -
@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually -
@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency -
@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) -
@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) -
@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)