mcabrams / doppelganger

Answer a series of questions -> find your doppelganger
1 stars 0 forks source link

Update react monorepo #188

Open renovate[bot] opened 4 years ago

renovate[bot] commented 4 years ago

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@types/react (source) 16.9.11 -> 16.14.61 age adoption passing confidence
@types/react-dom (source) 16.9.4 -> 16.9.24 age adoption passing confidence
eslint-plugin-react-hooks (source) 2.2.0 -> 2.5.1 age adoption passing confidence
react (source) 16.11.0 -> 16.14.0 age adoption passing confidence
react-dom (source) 16.11.0 -> 16.14.0 age adoption passing confidence

Release Notes

facebook/react (eslint-plugin-react-hooks) ### [`v2.5.0`](https://redirect.github.com/facebook/react/blob/HEAD/packages/eslint-plugin-react-hooks/CHANGELOG.md#250) - Fix a misleading error message in loops. ([@​M-Izadmehr](https://redirect.github.com/M-Izadmehr) in [#​16853](https://redirect.github.com/facebook/react/pull/16853)) ### [`v2.4.0`](https://redirect.github.com/facebook/react/blob/HEAD/packages/eslint-plugin-react-hooks/CHANGELOG.md#240) - **New Violations:** Run checks for functions passed to `forwardRef`. ([@​dprgarner](https://redirect.github.com/dprgarner) in [#​17255](https://redirect.github.com/facebook/react/pull/17255)) - **New Violations:** Check for ref usage in any Hook containing the word `Effect`. ([@​gaearon](https://redirect.github.com/gaearon) in [#​17663](https://redirect.github.com/facebook/react/pull/17663)) - Disable dangerous autofix and use ESLint Suggestions API instead. ([@​wdoug](https://redirect.github.com/wdoug) in [#​17385](https://redirect.github.com/facebook/react/pull/17385))
facebook/react (react) ### [`v16.14.0`](https://redirect.github.com/facebook/react/blob/HEAD/CHANGELOG.md#16140-October-14-2020) [Compare Source](https://redirect.github.com/facebook/react/compare/v16.13.1...v16.14.0) ##### React - Add support for the [new JSX transform](https://reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html). ([@​lunaruan](https://redirect.github.com/lunaruan) in [#​18299](https://redirect.github.com/facebook/react/pull/18299)) ### [`v16.13.1`](https://redirect.github.com/facebook/react/blob/HEAD/CHANGELOG.md#16131-March-19-2020) [Compare Source](https://redirect.github.com/facebook/react/compare/v16.13.0...v16.13.1) ##### React DOM - Fix bug in legacy mode Suspense where effect clean-up functions are not fired. This only affects users who use Suspense for data fetching in legacy mode, which is not technically supported. ([@​acdlite](https://redirect.github.com/acdlite) in [#​18238](https://redirect.github.com/facebook/react/pull/18238)) - Revert warning for cross-component updates that happen inside class render lifecycles (`componentWillReceiveProps`, `shouldComponentUpdate`, and so on). ([@​gaearon](https://redirect.github.com/gaearon) in [#​18330](https://redirect.github.com/facebook/react/pull/18330)) ### [`v16.13.0`](https://redirect.github.com/facebook/react/blob/HEAD/CHANGELOG.md#16130-February-26-2020) [Compare Source](https://redirect.github.com/facebook/react/compare/v16.12.0...v16.13.0) ##### React - Warn when a string ref is used in a manner that's not amenable to a future codemod ([@​lunaruan](https://redirect.github.com/lunaruan) in [#​17864](https://redirect.github.com/facebook/react/pull/17864)) - Deprecate `React.createFactory()` ([@​trueadm](https://redirect.github.com/trueadm) in [#​17878](https://redirect.github.com/facebook/react/pull/17878)) ##### React DOM - Warn when changes in `style` may cause an unexpected collision ([@​sophiebits](https://redirect.github.com/sophiebits) in [#​14181](https://redirect.github.com/facebook/react/pull/14181), [#​18002](https://redirect.github.com/facebook/react/pull/18002)) - Warn when a function component is updated during another component's render phase ([@​acdlite](https://redirect.github.com/acdlite) in [#​17099](https://redirect.github.com/facebook/react/pull/17099)) - Deprecate `unstable_createPortal` ([@​trueadm](https://redirect.github.com/trueadm) in [#​17880](https://redirect.github.com/facebook/react/pull/17880)) - Fix `onMouseEnter` being fired on disabled buttons ([@​AlfredoGJ](https://redirect.github.com/AlfredoGJ) in [#​17675](https://redirect.github.com/facebook/react/pull/17675)) - Call `shouldComponentUpdate` twice when developing in `StrictMode` ([@​bvaughn](https://redirect.github.com/bvaughn) in [#​17942](https://redirect.github.com/facebook/react/pull/17942)) - Add `version` property to ReactDOM ([@​ealush](https://redirect.github.com/ealush) in [#​15780](https://redirect.github.com/facebook/react/pull/15780)) - Don't call `toString()` of `dangerouslySetInnerHTML` ([@​sebmarkbage](https://redirect.github.com/sebmarkbage) in [#​17773](https://redirect.github.com/facebook/react/pull/17773)) - Show component stacks in more warnings ([@​gaearon](https://redirect.github.com/gaearon) in [#​17922](https://redirect.github.com/facebook/react/pull/17922), [#​17586](https://redirect.github.com/facebook/react/pull/17586)) ##### Concurrent Mode (Experimental) - Warn for problematic usages of `ReactDOM.createRoot()` ([@​trueadm](https://redirect.github.com/trueadm) in [#​17937](https://redirect.github.com/facebook/react/pull/17937)) - Remove `ReactDOM.createRoot()` callback params and added warnings on usage ([@​bvaughn](https://redirect.github.com/bvaughn) in [#​17916](https://redirect.github.com/facebook/react/pull/17916)) - Don't group Idle/Offscreen work with other work ([@​sebmarkbage](https://redirect.github.com/sebmarkbage) in [#​17456](https://redirect.github.com/facebook/react/pull/17456)) - Adjust `SuspenseList` CPU bound heuristic ([@​sebmarkbage](https://redirect.github.com/sebmarkbage) in [#​17455](https://redirect.github.com/facebook/react/pull/17455)) - Add missing event plugin priorities ([@​trueadm](https://redirect.github.com/trueadm) in [#​17914](https://redirect.github.com/facebook/react/pull/17914)) - Fix `isPending` only being true when transitioning from inside an input event ([@​acdlite](https://redirect.github.com/acdlite) in [#​17382](https://redirect.github.com/facebook/react/pull/17382)) - Fix `React.memo` components dropping updates when interrupted by a higher priority update ([@​acdlite](\(https://github.com/acdlite\)) in [#​18091](https://redirect.github.com/facebook/react/pull/18091)) - Don't warn when suspending at the wrong priority ([@​gaearon](https://redirect.github.com/gaearon) in [#​17971](https://redirect.github.com/facebook/react/pull/17971)) - Fix a bug with rebasing updates ([@​acdlite](https://redirect.github.com/acdlite) and [@​sebmarkbage](https://redirect.github.com/sebmarkbage) in [#​17560](https://redirect.github.com/facebook/react/pull/17560), [#​17510](https://redirect.github.com/facebook/react/pull/17510), [#​17483](https://redirect.github.com/facebook/react/pull/17483), [#​17480](https://redirect.github.com/facebook/react/pull/17480)) ### [`v16.12.0`](https://redirect.github.com/facebook/react/blob/HEAD/CHANGELOG.md#16120-November-14-2019) [Compare Source](https://redirect.github.com/facebook/react/compare/v16.11.0...v16.12.0) ##### React DOM - Fix passive effects (`useEffect`) not being fired in a multi-root app. ([@​acdlite](https://redirect.github.com/acdlite) in [#​17347](https://redirect.github.com/facebook/react/pull/17347)) ##### React Is - Fix `lazy` and `memo` types considered elements instead of components ([@​bvaughn](https://redirect.github.com/bvaughn) in [#​17278](https://redirect.github.com/facebook/react/pull/17278))

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.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.



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