fix(deps): update dependency reselect to v5.1.1 #644
Merged
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:
5.1.0
->5.1.1
Release Notes
reduxjs/reselect (reselect)
v5.1.1
Compare Source
This patch release fixes behavior of
resultEqualityCheck
inweakMapMemoize
, fixes the case oflruMemoize
being given amaxSize
less than 1, and tweaks the internal implementation oflruMemoize
. (We've also updated our general build tooling.)Changelog
Bug fixes
Previously, providing the
resultEqualityCheck
option toweakMapMemoize
resulted in it being called with empty objects as part of the initialization / dev check process. That could be an issue if your comparison function expected different values. We've updated the logic to avoid that, as well as improving a couple other perf aspects.Previously, passing a
maxSize
< 1 tolruMemoize
would result in it creating a larger cache. That's now fixed.lruMemoize
now uses a symbol for itsNOT_FOUND
value instead of a string.What's Changed
lruMemoize
correctly memoizes whenmaxSize
is set to a number less than 1 by @aryaemami59 in https://github.com/reduxjs/reselect/pull/698resultEqualityCheck
behavior inweakMapMemoize
by @aryaemami59 in https://github.com/reduxjs/reselect/pull/699Full Changelog: reduxjs/reselect@v5.1.0...v5.1.1
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Enabled.
♻ 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 has been generated by Renovate Bot.