Skip to content

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Jan 23, 2020

Coming soon: The Renovate bot (GitHub App) will be renamed to Mend. PRs from Renovate will soon appear from 'Mend'. Learn more here.

This PR contains the following updates:

Package Change Age Confidence
react-redux 7.1.3 -> 7.2.9 age confidence
@types/react-redux (source) 7.1.6 -> 7.1.34 age 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


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.


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

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

@renovate
Copy link
Author

renovate bot commented Jan 23, 2020

Branch automerge failure

This PR was configured for branch automerge, however this is not possible so it has been raised as a PR instead.


  • Branch has one or more failed status checks

@renovate renovate bot force-pushed the renovate/react-redux-7.x branch from 77f0299 to 539325b Compare February 18, 2020 03:46
@renovate renovate bot changed the title chore(deps): update dependency @types/react-redux to v7.1.7 fix(deps): update dependency react-redux to v7.2.0 Feb 18, 2020
@renovate renovate bot force-pushed the renovate/react-redux-7.x branch from 539325b to 3973088 Compare July 2, 2020 05:11
@renovate renovate bot changed the title fix(deps): update dependency react-redux to v7.2.0 Update dependency react-redux to v7.2.0 Jul 2, 2020
@renovate renovate bot force-pushed the renovate/react-redux-7.x branch from 3973088 to e28c627 Compare August 27, 2020 09:10
@renovate renovate bot changed the title Update dependency react-redux to v7.2.0 Update dependency react-redux to v7.2.1 Aug 27, 2020
@renovate renovate bot force-pushed the renovate/react-redux-7.x branch from e28c627 to c1b386d Compare October 29, 2020 05:12
@renovate renovate bot changed the title Update dependency react-redux to v7.2.1 fix(deps): update dependency react-redux to v7.2.2 Oct 29, 2020
@renovate renovate bot force-pushed the renovate/react-redux-7.x branch from c1b386d to a152c51 Compare November 28, 2020 13:05
@renovate renovate bot force-pushed the renovate/react-redux-7.x branch from a152c51 to 23d6df0 Compare January 6, 2021 18:57
@renovate renovate bot force-pushed the renovate/react-redux-7.x branch from 23d6df0 to 48c0ef7 Compare January 22, 2021 08:02
@renovate renovate bot force-pushed the renovate/react-redux-7.x branch from 48c0ef7 to 52ded14 Compare April 26, 2021 16:38
@renovate renovate bot changed the title fix(deps): update dependency react-redux to v7.2.2 fix(deps): update dependency react-redux to v7.2.4 Apr 26, 2021
@renovate renovate bot force-pushed the renovate/react-redux-7.x branch from 52ded14 to 21be040 Compare October 18, 2021 15:16
@renovate renovate bot changed the title fix(deps): update dependency react-redux to v7.2.4 fix(deps): update dependency react-redux to v7.2.5 Oct 18, 2021
@renovate renovate bot force-pushed the renovate/react-redux-7.x branch from 21be040 to aa13794 Compare March 7, 2022 10:52
@renovate renovate bot changed the title fix(deps): update dependency react-redux to v7.2.5 fix(deps): update dependency react-redux to v7.2.6 Mar 7, 2022
@renovate renovate bot force-pushed the renovate/react-redux-7.x branch from aa13794 to aec24c7 Compare April 24, 2022 21:02
@renovate renovate bot changed the title fix(deps): update dependency react-redux to v7.2.6 fix(deps): update dependency react-redux to v7.2.8 Apr 24, 2022
@renovate renovate bot force-pushed the renovate/react-redux-7.x branch from aec24c7 to 4bd54ae Compare September 25, 2022 17:41
@renovate renovate bot changed the title fix(deps): update dependency react-redux to v7.2.8 fix(deps): update dependency react-redux to v7.2.9 Sep 25, 2022
@renovate renovate bot force-pushed the renovate/react-redux-7.x branch from 4bd54ae to 25d8f0a Compare March 17, 2023 01:50
@renovate renovate bot force-pushed the renovate/react-redux-7.x branch from 25d8f0a to e8a0731 Compare August 22, 2023 21:02
@renovate renovate bot force-pushed the renovate/react-redux-7.x branch from e8a0731 to 091a6e9 Compare September 27, 2023 09:53
@renovate renovate bot force-pushed the renovate/react-redux-7.x branch from 091a6e9 to 35aa138 Compare October 18, 2023 16:41
@renovate renovate bot force-pushed the renovate/react-redux-7.x branch 2 times, most recently from 40c3815 to c609af3 Compare November 7, 2023 21:34
@renovate renovate bot force-pushed the renovate/react-redux-7.x branch from c609af3 to 9c2f7fc Compare November 21, 2023 05:37
@renovate renovate bot force-pushed the renovate/react-redux-7.x branch from 9c2f7fc to c180aa7 Compare December 4, 2023 21:49
@renovate renovate bot force-pushed the renovate/react-redux-7.x branch from c180aa7 to febaf16 Compare December 12, 2023 19:49
@renovate renovate bot force-pushed the renovate/react-redux-7.x branch from febaf16 to 83e08bf Compare September 23, 2024 19:04
@renovate renovate bot force-pushed the renovate/react-redux-7.x branch from 83e08bf to c0e4a0d Compare August 10, 2025 13:49
@renovate renovate bot force-pushed the renovate/react-redux-7.x branch from c0e4a0d to fb2bb6a Compare August 19, 2025 16:14
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants