-
Notifications
You must be signed in to change notification settings - Fork 1
fix(deps): update dependency react-redux to v7.2.9 #135
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
Open
renovate
wants to merge
1
commit into
master
Choose a base branch
from
renovate/react-redux-7.x
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Author
Branch automerge failureThis PR was configured for branch automerge, however this is not possible so it has been raised as a PR instead.
|
77f0299 to
539325b
Compare
539325b to
3973088
Compare
3973088 to
e28c627
Compare
e28c627 to
c1b386d
Compare
c1b386d to
a152c51
Compare
a152c51 to
23d6df0
Compare
23d6df0 to
48c0ef7
Compare
48c0ef7 to
52ded14
Compare
52ded14 to
21be040
Compare
21be040 to
aa13794
Compare
aa13794 to
aec24c7
Compare
aec24c7 to
4bd54ae
Compare
4bd54ae to
25d8f0a
Compare
25d8f0a to
e8a0731
Compare
e8a0731 to
091a6e9
Compare
091a6e9 to
35aa138
Compare
40c3815 to
c609af3
Compare
c609af3 to
9c2f7fc
Compare
9c2f7fc to
c180aa7
Compare
c180aa7 to
febaf16
Compare
febaf16 to
83e08bf
Compare
83e08bf to
c0e4a0d
Compare
c0e4a0d to
fb2bb6a
Compare
fb2bb6a to
a70cea8
Compare
a70cea8 to
18d8d45
Compare
18d8d45 to
3cd5505
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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:
7.1.3->7.2.97.1.6->7.1.34Release Notes
reduxjs/react-redux (react-redux)
v7.2.9Compare Source
This patch release updates the rarely-used
areStatesEqualoption forconnectto now pass throughownPropsfor additional use in determining which pieces of state to compare if desired.The new signature is:
What's Changed
Full Changelog: reduxjs/react-redux@v7.2.8...v7.2.9
v7.2.8Compare Source
This release fixes a bug in the 7.x branch that caused
<Provider>to unsubscribe and stop updating completely when used inside of React 18's<StrictMode>. The new "strict effects" behavior double-mounts components, and the subscription needed to be set up inside of auseLayoutEffectinstead of auseMemo. This was previously fixed as part of v8 development, and we've backported it.Note: If you are now using React 18, we strongly recommend using the React-Redux v8 beta instead of v7.x!. v8 has been rewritten internally to work correctly with React 18's Concurrent Rendering capabilities. React-Redux v7 will run and generally work okay with existing code, but may have rendering issues if you start using Concurrent Rendering capabilities in your code.
Now that React 18 is out, we plan to finalize React-Redux v8 and release it live within the next couple weeks. Per an update yesterday in the "v8 roadmap" thread, React-Redux v8 will be updated in the next couple days to ensure support for React 16.8+ as part of the next beta release. We would really appreciate final feedback on using React-Redux v8 beta with React 18 before we publish the final version.
Full Changelog: reduxjs/react-redux@v7.2.7...v7.2.8
v7.2.7Compare Source
This release updates React-Redux v7's peer dependencies to accept React 18 as a valid version, only to avoid installation errors caused by NPM's "install all the peer deps and error if they don't match" behavior.
Note: If you are now using React 18, we strongly recommend using the React-Redux v8 beta instead of v7.x!. v8 has been rewritten internally to work correctly with React 18's Concurrent Rendering capabilities. React-Redux v7 will run and generally work okay with existing code, but may have rendering issues if you start using Concurrent Rendering capabilities in your code.
Now that React 18 is out, we plan to finalize React-Redux v8 and release it live within the next couple weeks. We would really appreciate final feedback on using React-Redux v8 beta with React 18 before we publish the final version.
v7.2.6Compare Source
Just a quick fix for a Yarn install warning. Sorry about the noise!
Changes
workspacesfrom our package.json to silence a Yarn warning (@timdorr)v7.2.5Compare Source
This release shrinks the size of our internal
Subscriptionclass, and updatesuseSelectorto avoid an unnecessary selector call on mount.Changes
Subscription Size Refactor
Our internal
Subscriptionimplementation has been written as a class ever since it was added in v5. By rewriting it as a closure factory, we were able to shave a few bytes off the final bundle size.useSelectorMount OptimizationA user noticed that
useSelectorhad never been given an early "bail out if the root state is the same" check to match howconnectworks. This resulted in a usually-unnecessary second call to the provided selector on mount. We've added that check.Entry Point Consolidation
We've consolidated the list of exported public APIs into a single file, and both the
index.jsandalternate-renderers.jsentry points now re-export everything from that file. No meaningful change here, just shuffling lines of code around for consistency.Other Updates
React-Redux v8 and React 18 Development
With the announcement of React 18, we've been working with the React team to plan our migration path to keep React-Redux fully compatible with React's upcoming features.
We've already migrated the React-Redux main development branch to TypeScript, and are prototyping compatibility implementation updates. We'd appreciate any assistance from the community in testing out these changes so that we can ensure React-Redux works great for everyone when React 18 is ready!
Internal Tooling Updates
Our
masterbranch now uses Yarn v2 for package management, is built with TypeScript, and we've made CI updates to test against multiple TS versions.The
7.xbranch has also been updated to use Yarn v2 for consistency.These only affect contributors to the React-Redux package itself.
Changelog
v7.2.4Compare Source
This release drops our dependency on the core
reduxpackage by inliningbindActionCreators, and tweaksuseSelectorto ensure that selectors aren't run an extra time while re-rendering.Changelog
Redux Dependency Removal
React-Redux has always imported the
bindActionCreatorsutility from the corereduxpackage for use inconnect. However, that meant that we had to have a peer dependency onredux, and this was the only reason we actually required thatreduxbe installed. This became more annoying with the arrival of Redux Toolkit, which has its own dependency onreduxinternally, and thus users typically saw peer dependency warnings saying that "reduxisn't listed as a dependency in your app".Code reuse across separate packages is a great thing, but sometimes the right thing to do is duplicate code. So, we've inlined
bindActionCreatorsdirectly into React-Redux, and we've completely dropped the dependency on Redux. This means that React-Redux will no longer produce a peerDep warning when used with Redux Toolkit, and<Provider>andconnectreally only need a Redux-store-compatible value to work right.useSelectorFixesUsers reported that
useSelectorwas re-running selector functions again unnecessarily while rendering after a dispatch. We've tweaked the logic to ensure that doesn't happen.useSelectoralso now has checks in development to ensure thatselectorandequalityFnare functions.Changes
v7.2.3Compare Source
This release improves behavior in
useSelectorby returning the existing reference if the newly returned selector result passes the equality check, and adds a hard dependency on the@types/react-reduxpackage to ensure TS users always have the typedefs installed.Changes
useSelectorResults ReuseIssue #1654 reported that
useSelectorwas returning new references from a selector even if the equality comparison function returnedtrue. This is because the equality check was only ever being performed during the action dispatch process.We now run the equality comparison against the value calculated by the selector while rendering, and return the existing reference for consistency if the old and new values are considered equal. This should improve some cases where further derived values where being recalculated unnecessarily.
TS Types Now Included
React-Redux has always been written in plain JS, and the typedefs maintained by the community in DefinitelyTyped. We plan on eventually rewriting the library in TypeScript in a future React-Redux v8 release, but until then the types can stay in DT.
However, having to always manually install
@types/react-reduxis annoying, and some users have gotten confused by that. This release adds a hard dependency on@types/react-redux, so that if you installreact-redux, you automatically get the types as well. This should simplify the process for TS users.Docs Updates
We've made several docs updates recently:
We are currently working on a new React-Redux tutorial that will teach the React-Redux hooks as the primary approach, based on the "UI and React" page in the Redux docs "Fundamentals" tutorial.
Changelog
v7.2.2Compare Source
This release allows you to use React Redux with React 17 without a warning when installing. That's about it.
Changes
v7.2.1Compare Source
This release improves
useSelectorvalue display in the React DevTools, fixes a potential race condition, and fixes a couple additional minor issues.useSelectorDevTools DisplayThe React DevTools normally show custom hooks with their inspected name (such as "Selector" for
useSelector), and any calls to core hooks inside. This is not always informative, so React has theuseDebugValuehook to allow custom hooks to specify what value should be shown instead.useSelectornow callsuseDebugValueto specifically show the current selected value instead of its internal hooks usage.Bug Fixes
This release has a few different bug fixes:
reactReduxForwardedRefto avoid a rare situation where someone else might be passing down a field namedforwardedRefuseSelectorerror messageChanges
v7.2.0Compare Source
This release fixes two bugs, an algorithmic problem with unsubscribing components and a memory leak with
connect. It also has optimizations for production bundle size, and adds a couple small improvements to developer readability while debugging.Bug Fixes
connectin v7 is implemented using hooks, and the hooks usage captures numerous values from the surrounding scope. We received a PR informing us that the way we were capturing these values would likely result in a copy of the first version of its props being kept alive indefinitely.This memory leak has been fixed by extracting a custom hook that receives all the necessary values as arguments, so that they're not captured via closure.
We also received a PR letting us know that the unsubscribe logic had a quadratic algorithm in it, as removing a subscriber would use an
indexOf(listener)check to remove that callback. If there were a large number of subscribers, that line's runtime would increase rapidly, causing slowdowns.This algorithm has been replaced with tracking subscribers via a linked list, which drastically improves the runtime of this section of the code even with large numbers of subscribers.
Thanks to @larrylin28 and @wurstbonbon for finding these bugs and submitting PRs to fix them!
Bundle Size Improvements
We've made a number of small tweaks to the codebase to improve the ability of bundlers to shake and minimize the final included size in a bundle. The net result is that
[email protected]is smaller than 7.1.3, dropping 1.3K min and 0.6K min+gzip. (In fact, it's even smaller than the pre-hooks 7.0.0 when gzipped!)Thanks to @Andarist for doing most of the work on this!
Debugging Improvements
The
ReactReduxContextinstance now has adisplayNameset, so it should show up in the React DevTools asReactRedux.Provider.Also, when an error is caught in
useSelectorand re-thrown, we now append the original stack trace.Thanks to @pieplu and @r3dm1ke for these!
Changes
UseEffect(@larrylin28 - #1506)5e0c50d)58ae5ed)Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Enabled.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about these updates again.
This PR was generated by Mend Renovate. View the repository job log.