refactor: upgrade react-redux from 5.1.2 to 7.2.6 #2022
Closed
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.
Snyk has created this PR to upgrade react-redux from 5.1.2 to 7.2.6.
ℹ️ Keep your dependencies up-to-date. This makes it easier to fix existing vulnerabilities and to more quickly identify and fix newly disclosed vulnerabilities when they affect your project.
Warning: This is a major version upgrade, and may be a breaking change.
Release notes
Package name: react-redux
-
7.2.6 - 2021-10-25
- Remove
-
7.2.5 - 2021-09-04
- Port entry point consolidation from 8.x branch (#1811 - @ markerikson)
- Update v7 branch to use Yarn v2 and improve CI process (#1810 - @ markerikson)
- Reduce unnecessary calls to useSelector selector (#1803 - @ sufian-slack )
- Port Subscription closure implementation from 8.x to 7.x (#1809 - @ mbelsky)
-
7.2.4 - 2021-04-24
- Remove wrapActionCreators (#1709 - @ xty)
- Verify that selector and equalityF of useSelector are functions (#1706 - @ gshilin)
- Import bindActionCreators from redux (#1705 - @ timdorr)
- Don't re-run the selector after update (#1701 - @ timdorr)
-
7.2.3 - 2021-03-23
- Renamed "Quick Start" to "Getting Started" and "Static Typing" to "Usage with TypeScript"
- Dropped the docs API versioning setup, as the legacy API version docs pages were rarely viewed and the versioning setup confused docs contributors
- Moved the old "Intro > Basic Tutorial" to "Tutorials > Connect" and marked it as semi-obsolete
- Automatically install @ types/react-redux as a dependency (#1699 - @ markerikson )
- Reuse latest selected state on selector re-run (#1654) (#1660 - @ otakustay)
- Use useIsomorphicLayoutEffect in Provider for consistency (#1683 - @ speakingcode )
-
7.2.2 - 2020-10-26
- Upgrade react peer dependency to v17 (#1647 by @ wachunei)
-
7.2.1 - 2020-07-25
- A potential race condition when dispatching actions from child components in the commit phase vs selecting data in a parent
- Removed an excess new object creation when forcing a re-render
- Our internal prop name for a forwarded ref is now
- Fixed a typo in a
- Fix error message typo in useSelector ('You must pass a selector...). (@ Pixelwelder - #1581)
- fix useSelector race condition with memoized selector when dispatching in child components useLayoutEffect as well as cDM/cDU (@ dai-shi - #1536)
- removed a redundant object creation when using forceUpdate (@ vzaidman - #1567)
- Rename internal forwardedRef usage (@ dtschust - #1553)
- Show useSelector result in React DevTools (@ Finesse - #1530)
-
7.2.0 - 2020-02-18
-
7.1.3 - 2019-11-06
- Remove leftover console statement (@ markerikson - 30101bb)
-
7.1.2 - 2019-11-06
-
7.1.2-alpha.0 - 2019-11-05
-
7.1.1 - 2019-08-26
-
7.1.0 - 2019-06-11
-
7.1.0-rc.1 - 2019-05-30
-
7.1.0-alpha.5 - 2019-05-20
-
7.1.0-alpha.4 - 2019-05-01
-
7.1.0-alpha.3 - 2019-04-28
-
7.1.0-alpha.2 - 2019-04-28
-
7.1.0-alpha.1 - 2019-04-22
-
7.1.0-alpha.0 - 2019-04-22
-
7.0.3 - 2019-04-28
-
7.0.2 - 2019-04-12
-
7.0.1 - 2019-04-09
-
7.0.0 - 2019-04-09
-
7.0.0-beta.1 - 2019-04-04
-
7.0.0-beta.0 - 2019-03-22
-
6.0.1 - 2019-02-20
-
6.0.0 - 2018-12-05
-
6.0.0-beta.3 - 2018-11-23
-
6.0.0-beta.2 - 2018-11-06
-
6.0.0-beta.1 - 2018-11-06
-
6.0.0-alpha.ede6245 - 2018-09-20
-
6.0.0-alpha.2a2f108 - 2018-09-20
-
6.0.0-alpha.9210282 - 2018-09-20
-
5.1.2 - 2019-10-08
from react-redux GitHub release notesShameless plug: I'm working on a new company called Spaceship 🚀 It's a tool to launch your code anywhere in one click. Check it out!
Just a quick fix for a Yarn install warning. Sorry about the noise!
Changes
workspacesfrom our package.json to silence a Yarn warning (@ timdorr)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.4...v7.2.5
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.3...v7.2.4
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.2...v7.2.3
This release allows you to use React Redux with React 17 without a warning when installing. That's about it.
Changes
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
Read more
Forgot to remove a
consolestatement before I published 7.1.2. Oops!Lint your source code before publishing, folks.
Changes
Read more
Commit messages
Package name: react-redux
Compare
Note: You are seeing this because you or someone else with access to this repository has authorized Snyk to open upgrade PRs.
For more information:
🧐 View latest project report
🛠 Adjust upgrade PR settings
🔕 Ignore this dependency or unsubscribe from future upgrade PRs