Skip to content
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

Update dependency react-redux to v7.2.9 #829

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Nov 27, 2020

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
react-redux 7.0.2 -> 7.2.9 age adoption passing confidence

Release Notes

reduxjs/react-redux (react-redux)

v7.2.9

Compare Source

This patch release updates the rarely-used areStatesEqual option for connect to now pass through ownProps for additional use in determining which pieces of state to compare if desired.

The new signature is:

{
  areStatesEqual?: (
    nextState: State,
    prevState: State,
    nextOwnProps: TOwnProps,
    prevOwnProps: TOwnProps
  ) => boolean
}

What's Changed

Full Changelog: reduxjs/react-redux@v7.2.8...v7.2.9

v7.2.8

Compare 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 a useLayoutEffect instead of a useMemo. 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.7

Compare 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.6

Compare Source

Just a quick fix for a Yarn install warning. Sorry about the noise!

Changes

  • Remove workspaces from our package.json to silence a Yarn warning (@​timdorr)

v7.2.5

Compare Source

This release shrinks the size of our internal Subscription class, and updates useSelector to avoid an unnecessary selector call on mount.

Changes

Subscription Size Refactor

Our internal Subscription implementation 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.

useSelector Mount Optimization

A user noticed that useSelector had never been given an early "bail out if the root state is the same" check to match how connect works. 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.js and alternate-renderers.js entry 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 master branch 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.x branch has also been updated to use Yarn v2 for consistency.

These only affect contributors to the React-Redux package itself.

Changelog

v7.2.4

Compare Source

This release drops our dependency on the core redux package by inlining bindActionCreators, and tweaks useSelector to ensure that selectors aren't run an extra time while re-rendering.

Changelog

Redux Dependency Removal

React-Redux has always imported the bindActionCreators utility from the core redux package for use in connect. However, that meant that we had to have a peer dependency on redux, and this was the only reason we actually required that redux be installed. This became more annoying with the arrival of Redux Toolkit, which has its own dependency on redux internally, and thus users typically saw peer dependency warnings saying that "redux isn'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 bindActionCreators directly 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> and connect really only need a Redux-store-compatible value to work right.

useSelector Fixes

Users reported that useSelector was re-running selector functions again unnecessarily while rendering after a dispatch. We've tweaked the logic to ensure that doesn't happen.

useSelector also now has checks in development to ensure that selector and equalityFn are functions.

Changes

v7.2.3

Compare Source

This release improves behavior in useSelector by returning the existing reference if the newly returned selector result passes the equality check, and adds a hard dependency on the @types/react-redux package to ensure TS users always have the typedefs installed.

Changes

useSelector Results Reuse

Issue #​1654 reported that useSelector was returning new references from a selector even if the equality comparison function returned true. 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-redux is annoying, and some users have gotten confused by that. This release adds a hard dependency on @types/react-redux, so that if you install react-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:

  • 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

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

Compare Source

This release allows you to use React Redux with React 17 without a warning when installing. That's about it.

Changes

v7.2.1

Compare Source

This release improves useSelector value display in the React DevTools, fixes a potential race condition, and fixes a couple additional minor issues.

useSelector DevTools Display

The 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 the useDebugValue hook to allow custom hooks to specify what value should be shown instead.

useSelector now calls useDebugValue to specifically show the current selected value instead of its internal hooks usage.

Bug Fixes

This release has a few different bug fixes:

  • 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 reactReduxForwardedRef to avoid a rare situation where someone else might be passing down a field named forwardedRef
  • Fixed a typo in a useSelector error message

Changes

v7.2.0

Compare 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

connect in 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 ReactReduxContext instance now has a displayName set, so it should show up in the React DevTools as ReactRedux.Provider.

Also, when an error is caught in useSelector and re-thrown, we now append the original stack trace.

Thanks to @​pieplu and @​r3dm1ke for these!

Changes

v7.1.3

Compare Source

Forgot to remove a console statement before I published 7.1.2. Oops!

Lint your source code before publishing, folks.

Changes

v7.1.2

Compare Source

This releases fixes a subtle timing bug with connect and useSelector in React Native environments, and adds the ability to pass through non-Redux-store values as a store prop.

Fixed Store Subscriptions in React Native

Our current implementation requires cascading updates down through connected components. This is primarily done during React's "commit phase" via the useLayoutEffect hook. Unfortunately, React warns when useLayoutEffect is called in SSR environments, so we try to feature-detect that and fall back to useEffect just to avoid that warning.

Unfortunately, a tweak to the feature detection conditions during the pre-7.1.0 work caused the check to accidentally fail in React Native environments. This meant that useEffect was actually being used all the time, and this led to occasional timing bugs such as #​1313 and #​1437 . This affected the previous v7.1.x releases.

We've fixed that issue, and added additional test cases to ensure that our code works correctly under React Native.

See #​1444 for more details on the feature detection and the fix.

Passing Through Non-Store Values

connect has always accepted passing a Redux store directly to connected components as a prop named store (with the exception of v6). As a result, the store prop has effectively been treated as a "reserved" prop, in much the same way that key and ref are "reserved" prop names handled by React.

Some users may be using the word "store" to describe their domain data, and have asked to allow variables that aren't a Redux store through the store prop to the component (#​1393). We've finally been able to implement that capability.

Changes

v7.1.1

Compare Source

This release includes some new APIs for those that want to use a custom React Context with our Hooks API, a small memory optimization, and has a fix for when the store changes on a Provider with incompatible children.

Changes

v7.1.0

Compare Source

Hooks!

After much discussion, we've decided these Hook things are probably going to stick around, so we might as well add some. Many thanks to @​MrWolfZ, @​josepot, @​perrin4869, and @​mpeyper for their contributions and to everyone else that offered feedback, ideas, and critiques as we built them out. Go open source!

Changes

v7.0.3

Compare Source

This release includes a bugfix for a timing issue in connect(), and also lowers our React peer dependency slightly to allow better usage with React Native 0.59.

Changes


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 is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/react-redux-7.x branch 2 times, most recently from 31af8b6 to ebe2790 Compare January 23, 2021 07:43
@renovate renovate bot force-pushed the renovate/react-redux-7.x branch 2 times, most recently from 93fa39a to 2a1c855 Compare February 16, 2021 16:16
@renovate renovate bot force-pushed the renovate/react-redux-7.x branch 2 times, most recently from b0854b9 to 6cdaf02 Compare March 4, 2021 08:17
@renovate renovate bot force-pushed the renovate/react-redux-7.x branch from 6cdaf02 to 42622b6 Compare March 23, 2021 00:41
@renovate renovate bot changed the title Update dependency react-redux to v7.2.2 Update dependency react-redux to v7.2.3 Mar 23, 2021
@renovate renovate bot force-pushed the renovate/react-redux-7.x branch 3 times, most recently from d9744b3 to dd2a9d9 Compare April 4, 2021 21:26
@renovate renovate bot force-pushed the renovate/react-redux-7.x branch from dd2a9d9 to 231d200 Compare April 24, 2021 20:01
@renovate renovate bot changed the title Update dependency react-redux to v7.2.3 Update dependency react-redux to v7.2.4 Apr 24, 2021
@renovate renovate bot force-pushed the renovate/react-redux-7.x branch from 231d200 to 219a468 Compare April 29, 2021 05:25
@renovate renovate bot force-pushed the renovate/react-redux-7.x branch from 219a468 to 16f5068 Compare May 11, 2021 17:37
@renovate renovate bot force-pushed the renovate/react-redux-7.x branch 3 times, most recently from c8c34e5 to f1eb2b2 Compare May 25, 2021 17:03
@renovate renovate bot force-pushed the renovate/react-redux-7.x branch 2 times, most recently from 390a8b0 to 56062e5 Compare June 3, 2021 21:02
@renovate renovate bot force-pushed the renovate/react-redux-7.x branch from 56062e5 to c62fd1c Compare June 11, 2021 21:45
@renovate renovate bot force-pushed the renovate/react-redux-7.x branch 2 times, most recently from 478e96e to 9781058 Compare July 1, 2021 21:50
@renovate renovate bot force-pushed the renovate/react-redux-7.x branch from 9781058 to 79e91ff Compare August 4, 2021 22:45
@renovate renovate bot force-pushed the renovate/react-redux-7.x branch from 79e91ff to 3a3df91 Compare August 13, 2021 22:10
@renovate renovate bot force-pushed the renovate/react-redux-7.x branch 2 times, most recently from ea6c9a1 to 5fa6b2c Compare August 19, 2021 21:58
@renovate renovate bot force-pushed the renovate/react-redux-7.x branch from 5fa6b2c to c89c4da Compare September 4, 2021 21:11
@renovate renovate bot changed the title Update dependency react-redux to v7.2.4 Update dependency react-redux to v7.2.5 Sep 4, 2021
@renovate renovate bot force-pushed the renovate/react-redux-7.x branch from 309f807 to 267f400 Compare January 2, 2022 19:40
@renovate renovate bot force-pushed the renovate/react-redux-7.x branch from 267f400 to bf2795a Compare March 7, 2022 15:06
@renovate renovate bot force-pushed the renovate/react-redux-7.x branch from bf2795a to 571e86b Compare March 14, 2022 19:43
@renovate renovate bot changed the title Update dependency react-redux to v7.2.6 Update dependency react-redux to v7.2.7 Mar 31, 2022
@renovate renovate bot force-pushed the renovate/react-redux-7.x branch from 571e86b to 5b7bafa Compare March 31, 2022 17:09
@renovate renovate bot changed the title Update dependency react-redux to v7.2.7 Update dependency react-redux to v7.2.8 Apr 1, 2022
@renovate renovate bot force-pushed the renovate/react-redux-7.x branch 3 times, most recently from dedde20 to 8238bc1 Compare April 8, 2022 15:53
@renovate renovate bot force-pushed the renovate/react-redux-7.x branch from 8238bc1 to dc950fa Compare April 8, 2022 18:12
@renovate renovate bot force-pushed the renovate/react-redux-7.x branch from dc950fa to 611a593 Compare May 6, 2022 23:36
@CLAassistant
Copy link

CLAassistant commented May 11, 2022

CLA assistant check
All committers have signed the CLA.

@renovate renovate bot force-pushed the renovate/react-redux-7.x branch from 611a593 to 9b234a5 Compare May 12, 2022 15:25
@renovate renovate bot force-pushed the renovate/react-redux-7.x branch from 9b234a5 to b0f0c97 Compare September 25, 2022 18:24
@renovate renovate bot changed the title Update dependency react-redux to v7.2.8 Update dependency react-redux to v7.2.9 Sep 25, 2022
@renovate renovate bot force-pushed the renovate/react-redux-7.x branch 4 times, most recently from 32391dc to 0215e92 Compare October 10, 2022 20:56
@renovate renovate bot force-pushed the renovate/react-redux-7.x branch from 0215e92 to fe2d0c8 Compare October 13, 2022 19:42
@renovate renovate bot force-pushed the renovate/react-redux-7.x branch from fe2d0c8 to 63ebe58 Compare October 21, 2022 15:54
@renovate renovate bot force-pushed the renovate/react-redux-7.x branch from 63ebe58 to 4427b4b Compare November 28, 2022 21:47
@renovate renovate bot force-pushed the renovate/react-redux-7.x branch 3 times, most recently from fcfd8ef to 756d21c Compare October 22, 2023 21:11
@renovate renovate bot force-pushed the renovate/react-redux-7.x branch from 756d21c to 74999aa Compare October 30, 2023 15:00
@renovate renovate bot force-pushed the renovate/react-redux-7.x branch from 74999aa to 32bf6ca Compare November 23, 2023 18:01
@renovate renovate bot force-pushed the renovate/react-redux-7.x branch from 32bf6ca to 3af2157 Compare October 24, 2024 14:34
@renovate renovate bot force-pushed the renovate/react-redux-7.x branch from 3af2157 to da4e018 Compare January 21, 2025 19:48
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants