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

fix(deps): update dependency react-redux to v8.1.2 #353

Merged
merged 1 commit into from
Sep 17, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jun 8, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
react-redux 8.0.5 -> 8.1.2 age adoption passing confidence

Release Notes

reduxjs/react-redux (react-redux)

v8.1.2

Compare Source

v8.1.1

Compare Source

This bugfix release tweaks the recent lazy context setup logic to ensure a single React context instance per React version, and removes the recently added RTK peerdep to fix an issue with Yarn workspaces.

Changelog

React Context Singletons

React Context has always relied on reference identity. If you have two different copies of React or a library in a page, that can cause multiple versions of a context instance to be created, leading to problems like the infamous "Could not find react-redux context" error.

In v8.1.0, we reworked the internals to lazily create our single ReactReduxContext instance to avoid issues in a React Server Components environment.

This release further tweaks that to stash a single context instance per React version found in the page, thus hopefully avoiding the "multiple copies of the same context" error in the future.

What's Changed

Full Changelog: reduxjs/react-redux@v8.1.0...v8.1.1

v8.1.0

Compare Source

This feature release adds new development-mode safety checks for common errors (like poorly-written selectors), adds a workaround to fix crash errors when React-Redux hooks are imported into React Server Component files, and updates our hooks API docs page with improved explanations and updated links.

Changelog

Development Mode Checks for useSelector

We've had a number of users tell us over time that it's common to accidentally write selectors that have bad behavior and cause performance issues. The most common causes of this are either selectors that unconditionally return a new reference (such as state => state.todos.map() without any memoization ), or selectors that actually return the entire root state ( state => state ).

We've updated useSelector to add safety checks in development mode that warn if these incorrect behaviors are detected:

  • Selectors will be called twice with the same inputs, and useSelector will warn if the results are different references
  • useSelector will warn if the selector result is actually the entire root state

By default, these checks only run once the first time useSelector is called. This should provide a good balance between detecting possible issues, and keeping development mode execution performant without adding many unnecessary extra selector calls.

If you want, you can configure this behavior globally by passing the enum flags directly to <Provider>, or on a per-useSelector basis by passing an options object as the second argument:

// Example: globally configure the root state "noop" check to run every time
<Provider store={store} noopCheck="always">
  {children}
</Provider>
// Example: configure `useSelector` to specifically run the reference checks differently:
function Component() {
  // Disable check entirely for this selector
  const count = useSelector(selectCount, { stabilityCheck: 'never' })
  // run once (default)
  const user = useSelector(selectUser, { stabilityCheck: 'once' })
  // ...
}

This goes along with the similar safety checks we've added to Reselect v5 alpha as well.

Context Changes

We're still trying to work out how to properly use Redux and React Server Components together. One possibility is using RTK Query's createApi to define data fetching endpoints, and using the generated thunks to fetch data in RSCs, but it's still an open question.

However, users have reported that merely importing any React-Redux API in an RSC file causes a crash, because React.createContext is not defined in RSC files. RTKQ's React-specific createApi entry point imports React-Redux, so it's been unusable in RSCs.

This release adds a workaround to fix that issue, by using a proxy wrapper around our singleton ReactReduxContext instance and lazily creating that instance on demand. In testing, this appears to both continue to work in all unit tests, and fixes the import error in an RSC environment. We'd appreciate further feedback in case this change does cause any issues for anyone!

We've also tweaked the internals of the hooks to do checks for correct <Provider> usage when using a custom context, same as the default context checks.

Docs Updates

We've cleaned up some of the Hooks API reference page, and updated links to the React docs.

What's Changed

Full Changelog: reduxjs/react-redux@v8.0.7...v8.1.0

v8.0.7

Compare Source

This release updates the peer dependencies to accept Redux Toolkit, and accept the ongoing RTK and Redux core betas as valid peer deps.

Note: These changes were initially in 8.0.6, but that had a typo in the peer deps that broke installation. Sorry!

What's Changed

Full Changelog: reduxjs/react-redux@v8.0.5...v8.0.7

v8.0.6

Compare Source

~~This release updates the peer dependencies to accept Redux Toolkit, and accept the ongoing RTK and Redux core betas as valid peer deps.~~

This release has a peer deps typo that breaks installation - please use 8.0.7 instead !

What's Changed

Full Changelog: reduxjs/react-redux@v8.0.5...v8.0.6


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 becomes conflicted, 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 has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot force-pushed the renovate/react-redux-8.x-lockfile branch from 0837c04 to 64d19b7 Compare June 8, 2023 10:01
@github-actions
Copy link

github-actions bot commented Jun 8, 2023

@renovate[bot] Image is available for testing. docker pull stakater/forecastle:SNAPSHOT-PR-353-cd77647a

@renovate renovate bot force-pushed the renovate/react-redux-8.x-lockfile branch 2 times, most recently from fb6f57c to c4570ac Compare June 12, 2023 08:57
@renovate renovate bot changed the title fix(deps): update dependency react-redux to v8.0.7 fix(deps): update dependency react-redux to v8.1.0 Jun 14, 2023
@renovate renovate bot force-pushed the renovate/react-redux-8.x-lockfile branch 3 times, most recently from cee2b79 to cabefbf Compare June 15, 2023 09:07
@renovate renovate bot changed the title fix(deps): update dependency react-redux to v8.1.0 fix(deps): update dependency react-redux to v8.1.1 Jun 22, 2023
@renovate renovate bot force-pushed the renovate/react-redux-8.x-lockfile branch 3 times, most recently from ed3424c to e7f3630 Compare June 28, 2023 11:46
@renovate renovate bot changed the title fix(deps): update dependency react-redux to v8.1.1 fix(deps): update dependency react-redux to v8.1.2 Jul 29, 2023
@renovate renovate bot force-pushed the renovate/react-redux-8.x-lockfile branch from e7f3630 to 264ca08 Compare July 29, 2023 16:39
@renovate renovate bot force-pushed the renovate/react-redux-8.x-lockfile branch from 264ca08 to 153b22f Compare August 30, 2023 08:10
@renovate renovate bot force-pushed the renovate/react-redux-8.x-lockfile branch 5 times, most recently from bfb3b3f to c31da46 Compare September 17, 2023 00:34
@renovate renovate bot force-pushed the renovate/react-redux-8.x-lockfile branch from c31da46 to cd77647 Compare September 17, 2023 10:50
@davidkarlsen davidkarlsen enabled auto-merge (squash) September 17, 2023 11:55
@davidkarlsen davidkarlsen merged commit 4c04f3d into master Sep 17, 2023
1 check passed
@davidkarlsen davidkarlsen deleted the renovate/react-redux-8.x-lockfile branch September 17, 2023 11:55
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.

1 participant