Release notes
*Sourced from [react-dom's releases](https://github.com/facebook/react/releases).*
> ## v16.6.1
> ## 16.6.1 (November 6, 2018)
>
> ### React DOM
>
> * Fallback should not remount every time a promise resolves. ([[**acdlite**](https://github.com/acdlite)](https://github.com/acdlite) in [#14083](https://github-redirect.dependabot.com/facebook/react/pull/14083))
> * Fix bug where Suspense keeps showing fallback even after everything finishes loading. ([[**acdlite**](https://github.com/acdlite)](https://github.com/acdlite) in [#14083](https://github-redirect.dependabot.com/facebook/react/pull/14083))
> * Fix unresolved default props in lifecycle methods of a lazy component. ([[**gaearon**](https://github.com/gaearon)](https://github.com/gaearon) in [#14112](https://github-redirect.dependabot.com/facebook/react/pull/14112))
> * Fix bug when recovering from an error thrown during complete phase. ([[**gaearon**](https://github.com/gaearon)](https://github.com/gaearon) in [#14104](https://github-redirect.dependabot.com/facebook/react/pull/14104))
>
> ### Scheduler (Experimental)
>
> * Switch from deadline object to `shouldYield` API. ([[**acdlite**](https://github.com/acdlite)](https://github.com/acdlite) in [#14025](https://github-redirect.dependabot.com/facebook/react/pull/14025))
>
> ## v16.6.0
> ## 16.6.0 (October 23, 2018)
>
> ### React
>
> * Add `React.memo()` as an alternative to `PureComponent` for functions. ([[**acdlite**](https://github.com/acdlite)](https://github.com/acdlite) in [#13748](https://github-redirect.dependabot.com/facebook/react/pull/13748))
> * Add `React.lazy()` for code splitting components. ([[**acdlite**](https://github.com/acdlite)](https://github.com/acdlite) in [#13885](https://github-redirect.dependabot.com/facebook/react/pull/13885))
> * `React.StrictMode` now warns about legacy context API. ([[**bvaughn**](https://github.com/bvaughn)](https://github.com/bvaughn) in [#13760](https://github-redirect.dependabot.com/facebook/react/pull/13760))
> * `React.StrictMode` now warns about `findDOMNode`. ([[**sebmarkbage**](https://github.com/sebmarkbage)](https://github.com/sebmarkbage) in [#13841](https://github-redirect.dependabot.com/facebook/react/pull/13841))
> * Rename `unstable_AsyncMode` to `unstable_ConcurrentMode`. ([[**trueadm**](https://github.com/trueadm)](https://github.com/trueadm) in [#13732](https://github-redirect.dependabot.com/facebook/react/pull/13732))
> * Rename `unstable_Placeholder` to `Suspense`, and `delayMs` to `maxDuration`. ([[**gaearon**](https://github.com/gaearon)](https://github.com/gaearon) in [#13799](https://github-redirect.dependabot.com/facebook/react/pull/13799) and [[**sebmarkbage**](https://github.com/sebmarkbage)](https://github.com/sebmarkbage) in [#13922](https://github-redirect.dependabot.com/facebook/react/pull/13922))
>
> ### React DOM
>
> * Add `contextType` as a more ergonomic way to subscribe to context from a class. ([[**bvaughn**](https://github.com/bvaughn)](https://github.com/bvaughn) in [#13728](https://github-redirect.dependabot.com/facebook/react/pull/13728))
> * Add `getDerivedStateFromError` lifecycle method for catching errors in a future asynchronous server-side renderer. ([[**bvaughn**](https://github.com/bvaughn)](https://github.com/bvaughn) in [#13746](https://github-redirect.dependabot.com/facebook/react/pull/13746))
> * Warn when `` is used instead of ``. ([[**trueadm**](https://github.com/trueadm)](https://github.com/trueadm) in [#13829](https://github-redirect.dependabot.com/facebook/react/pull/13829))
> * Fix gray overlay on iOS Safari. ([[**philipp-spiess**](https://github.com/philipp-spiess)](https://github.com/philipp-spiess) in [#13778](https://github-redirect.dependabot.com/facebook/react/pull/13778))
> * Fix a bug caused by overwriting `window.event` in development. ([[**sergei-startsev**](https://github.com/sergei-startsev)](https://github.com/sergei-startsev) in [#13697](https://github-redirect.dependabot.com/facebook/react/pull/13697))
>
> ### React DOM Server
>
> * Add support for `React.memo()`. ([[**alexmckenley**](https://github.com/alexmckenley)](https://github.com/alexmckenley) in [#13855](https://github-redirect.dependabot.com/facebook/react/pull/13855))
> * Add support for `contextType`. ([[**alexmckenley**](https://github.com/alexmckenley)](https://github.com/alexmckenley) and [[**sebmarkbage**](https://github.com/sebmarkbage)](https://github.com/sebmarkbage) in [#13889](https://github-redirect.dependabot.com/facebook/react/pull/13889))
>
> ### Scheduler (Experimental)
>
> * Rename the package to `scheduler`. ([[**gaearon**](https://github.com/gaearon)](https://github.com/gaearon) in [#13683](https://github-redirect.dependabot.com/facebook/react/pull/13683))
> * Support priority levels, continuations, and wrapped callbacks. ([[**acdlite**](https://github.com/acdlite)](https://github.com/acdlite) in [#13720](https://github-redirect.dependabot.com/facebook/react/pull/13720) and [#13842](https://github-redirect.dependabot.com/facebook/react/pull/13842))
> * Improve the fallback mechanism in non-DOM environments. ([[**acdlite**](https://github.com/acdlite)](https://github.com/acdlite) in [#13740](https://github-redirect.dependabot.com/facebook/react/pull/13740))
> * Schedule `requestAnimationFrame` earlier. ([[**acdlite**](https://github.com/acdlite)](https://github.com/acdlite) in [#13785](https://github-redirect.dependabot.com/facebook/react/pull/13785))
> * Fix the DOM detection to be more thorough. ([[**trueadm**](https://github.com/trueadm)](https://github.com/trueadm) in [#13731](https://github-redirect.dependabot.com/facebook/react/pull/13731))
> * Fix bugs with interaction tracing. ([[**bvaughn**](https://github.com/bvaughn)](https://github.com/bvaughn) in [#13590](https://github-redirect.dependabot.com/facebook/react/pull/13590))
> * Add the `envify` transform to the package. ([[**mridgway**](https://github.com/mridgway)](https://github.com/mridgway) in [#13766](https://github-redirect.dependabot.com/facebook/react/pull/13766))
>
> ## v16.5.2
> ... (truncated)
Changelog
*Sourced from [react-dom's changelog](https://github.com/facebook/react/blob/master/CHANGELOG.md).*
> ## 16.6.1 (November 6, 2018)
>
> ### React DOM
>
> * Fallback should not remount every time a promise resolves. ([[**acdlite**](https://github.com/acdlite)](https://github.com/acdlite) in [#14083](https://github-redirect.dependabot.com/facebook/react/pull/14083))
> * Fix bug where Suspense keeps showing fallback even after everything finishes loading. ([[**acdlite**](https://github.com/acdlite)](https://github.com/acdlite) in [#14083](https://github-redirect.dependabot.com/facebook/react/pull/14083))
> * Fix unresolved default props in lifecycle methods of a lazy component. ([[**gaearon**](https://github.com/gaearon)](https://github.com/gaearon) in [#14112](https://github-redirect.dependabot.com/facebook/react/pull/14112))
> * Fix bug when recovering from an error thrown during complete phase. ([[**gaearon**](https://github.com/gaearon)](https://github.com/gaearon) in [#14104](https://github-redirect.dependabot.com/facebook/react/pull/14104))
>
> ### Scheduler (Experimental)
>
> * Switch from deadline object to `shouldYield` API. ([[**acdlite**](https://github.com/acdlite)](https://github.com/acdlite) in [#14025](https://github-redirect.dependabot.com/facebook/react/pull/14025))
>
>
> ## 16.6.0 (October 23, 2018)
>
> ### React
>
> * Add `React.memo()` as an alternative to `PureComponent` for functions. ([[**acdlite**](https://github.com/acdlite)](https://github.com/acdlite) in [#13748](https://github-redirect.dependabot.com/facebook/react/pull/13748))
> * Add `React.lazy()` for code splitting components. ([[**acdlite**](https://github.com/acdlite)](https://github.com/acdlite) in [#13885](https://github-redirect.dependabot.com/facebook/react/pull/13885))
> * `React.StrictMode` now warns about legacy context API. ([[**bvaughn**](https://github.com/bvaughn)](https://github.com/bvaughn) in [#13760](https://github-redirect.dependabot.com/facebook/react/pull/13760))
> * `React.StrictMode` now warns about `findDOMNode`. ([[**sebmarkbage**](https://github.com/sebmarkbage)](https://github.com/sebmarkbage) in [#13841](https://github-redirect.dependabot.com/facebook/react/pull/13841))
> * Rename `unstable_AsyncMode` to `unstable_ConcurrentMode`. ([[**trueadm**](https://github.com/trueadm)](https://github.com/trueadm) in [#13732](https://github-redirect.dependabot.com/facebook/react/pull/13732))
> * Rename `unstable_Placeholder` to `Suspense`, and `delayMs` to `maxDuration`. ([[**gaearon**](https://github.com/gaearon)](https://github.com/gaearon) in [#13799](https://github-redirect.dependabot.com/facebook/react/pull/13799) and [[**sebmarkbage**](https://github.com/sebmarkbage)](https://github.com/sebmarkbage) in [#13922](https://github-redirect.dependabot.com/facebook/react/pull/13922))
>
> ### React DOM
>
> * Add `contextType` as a more ergonomic way to subscribe to context from a class. ([[**bvaughn**](https://github.com/bvaughn)](https://github.com/bvaughn) in [#13728](https://github-redirect.dependabot.com/facebook/react/pull/13728))
> * Add `getDerivedStateFromError` lifecycle method for catching errors in a future asynchronous server-side renderer. ([[**bvaughn**](https://github.com/bvaughn)](https://github.com/bvaughn) in [#13746](https://github-redirect.dependabot.com/facebook/react/pull/13746))
> * Warn when `` is used instead of ``. ([[**trueadm**](https://github.com/trueadm)](https://github.com/trueadm) in [#13829](https://github-redirect.dependabot.com/facebook/react/pull/13829))
> * Fix gray overlay on iOS Safari. ([[**philipp-spiess**](https://github.com/philipp-spiess)](https://github.com/philipp-spiess) in [#13778](https://github-redirect.dependabot.com/facebook/react/pull/13778))
> * Fix a bug caused by overwriting `window.event` in development. ([[**sergei-startsev**](https://github.com/sergei-startsev)](https://github.com/sergei-startsev) in [#13697](https://github-redirect.dependabot.com/facebook/react/pull/13697))
>
> ### React DOM Server
>
> * Add support for `React.memo()`. ([[**alexmckenley**](https://github.com/alexmckenley)](https://github.com/alexmckenley) in [#13855](https://github-redirect.dependabot.com/facebook/react/pull/13855))
> * Add support for `contextType`. ([[**alexmckenley**](https://github.com/alexmckenley)](https://github.com/alexmckenley) and [[**sebmarkbage**](https://github.com/sebmarkbage)](https://github.com/sebmarkbage) in [#13889](https://github-redirect.dependabot.com/facebook/react/pull/13889))
>
> ### Scheduler (Experimental)
>
> * Rename the package to `scheduler`. ([[**gaearon**](https://github.com/gaearon)](https://github.com/gaearon) in [#13683](https://github-redirect.dependabot.com/facebook/react/pull/13683))
> * Support priority levels, continuations, and wrapped callbacks. ([[**acdlite**](https://github.com/acdlite)](https://github.com/acdlite) in [#13720](https://github-redirect.dependabot.com/facebook/react/pull/13720) and [#13842](https://github-redirect.dependabot.com/facebook/react/pull/13842))
> * Improve the fallback mechanism in non-DOM environments. ([[**acdlite**](https://github.com/acdlite)](https://github.com/acdlite) in [#13740](https://github-redirect.dependabot.com/facebook/react/pull/13740))
> * Schedule `requestAnimationFrame` earlier. ([[**acdlite**](https://github.com/acdlite)](https://github.com/acdlite) in [#13785](https://github-redirect.dependabot.com/facebook/react/pull/13785))
> * Fix the DOM detection to be more thorough. ([[**trueadm**](https://github.com/trueadm)](https://github.com/trueadm) in [#13731](https://github-redirect.dependabot.com/facebook/react/pull/13731))
> * Fix bugs with interaction tracing. ([[**bvaughn**](https://github.com/bvaughn)](https://github.com/bvaughn) in [#13590](https://github-redirect.dependabot.com/facebook/react/pull/13590))
> * Add the `envify` transform to the package. ([[**mridgway**](https://github.com/mridgway)](https://github.com/mridgway) in [#13766](https://github-redirect.dependabot.com/facebook/react/pull/13766))
>
> ## 16.5.2 (September 18, 2018)
>
> ... (truncated)
Commits
- [`ba19844`](https://github.com/facebook/react/commit/ba19844236ab61e22b6e8f80f5134ae33a2792e5) Update bundle sizes for 16.6.1 release
- [`a24d510`](https://github.com/facebook/react/commit/a24d51028710cc171f5a52f07cf110d0b9a58974) Update error codes for 16.6.1 release
- [`b50e63e`](https://github.com/facebook/react/commit/b50e63ef537ce7784a1f981570b5abff5c81c59d) Updating package versions for release 16.6.1
- [`fd4527d`](https://github.com/facebook/react/commit/fd4527dbcdab359b02dbce4752995e05502dc7b0) Updating yarn.lock file for 16.6.1 release
- [`bd5a6d3`](https://github.com/facebook/react/commit/bd5a6d3914c4ed03678a8dd649f57b19e79a8b2d) Update changelog with unreleased features
- [`8f2c89e`](https://github.com/facebook/react/commit/8f2c89e96367ea809a011bb88bbee85551575539) Make react-debug-tools a private package
- [`2aecbcd`](https://github.com/facebook/react/commit/2aecbcd6f1a0ac975f01d41dad11722bc8c8da72) "functional component" -> "function component" ([#14123](https://github-redirect.dependabot.com/facebook/react/issues/14123))
- [`b4608dd`](https://github.com/facebook/react/commit/b4608dd24caa31b3c78c51acbb5115ad03e884b3) Remove unused simulated flag parameter ([#14127](https://github-redirect.dependabot.com/facebook/react/issues/14127))
- [`3c69a18`](https://github.com/facebook/react/commit/3c69a1881421d46d738e2782fe3ec0ae9b5cb39c) Recover from errors with a boundary in completion phase ([#14104](https://github-redirect.dependabot.com/facebook/react/issues/14104))
- [`b020fb1`](https://github.com/facebook/react/commit/b020fb1148f2da7495bd1d5425af0622b71100d4) Check correct commit phase props in fuzz tester ([#14129](https://github-redirect.dependabot.com/facebook/react/issues/14129))
- Additional commits viewable in [compare view](https://github.com/facebook/react/compare/v16.4.2...v16.6.1)
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot ignore this [patch|minor|major] version` will close this PR and stop Dependabot creating any more for this minor/major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
- `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language
- `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language
- `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language
- `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language
- `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme
Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com):
- Update frequency (including time of day and day of week)
- Automerge options (never/patch/minor, and dev/runtime dependencies)
- Pull request limits (per update run and/or open at any time)
- Out-of-range updates (receive only lockfile updates, if desired)
- Security updates (receive only security updates, if desired)
Finally, you can contact us by mentioning @dependabot.
Bumps react-dom from 16.4.2 to 16.6.1.
Release notes
*Sourced from [react-dom's releases](https://github.com/facebook/react/releases).* > ## v16.6.1 > ## 16.6.1 (November 6, 2018) > > ### React DOM > > * Fallback should not remount every time a promise resolves. ([[**acdlite**](https://github.com/acdlite)](https://github.com/acdlite) in [#14083](https://github-redirect.dependabot.com/facebook/react/pull/14083)) > * Fix bug where Suspense keeps showing fallback even after everything finishes loading. ([[**acdlite**](https://github.com/acdlite)](https://github.com/acdlite) in [#14083](https://github-redirect.dependabot.com/facebook/react/pull/14083)) > * Fix unresolved default props in lifecycle methods of a lazy component. ([[**gaearon**](https://github.com/gaearon)](https://github.com/gaearon) in [#14112](https://github-redirect.dependabot.com/facebook/react/pull/14112)) > * Fix bug when recovering from an error thrown during complete phase. ([[**gaearon**](https://github.com/gaearon)](https://github.com/gaearon) in [#14104](https://github-redirect.dependabot.com/facebook/react/pull/14104)) > > ### Scheduler (Experimental) > > * Switch from deadline object to `shouldYield` API. ([[**acdlite**](https://github.com/acdlite)](https://github.com/acdlite) in [#14025](https://github-redirect.dependabot.com/facebook/react/pull/14025)) > > ## v16.6.0 > ## 16.6.0 (October 23, 2018) > > ### React > > * Add `React.memo()` as an alternative to `PureComponent` for functions. ([[**acdlite**](https://github.com/acdlite)](https://github.com/acdlite) in [#13748](https://github-redirect.dependabot.com/facebook/react/pull/13748)) > * Add `React.lazy()` for code splitting components. ([[**acdlite**](https://github.com/acdlite)](https://github.com/acdlite) in [#13885](https://github-redirect.dependabot.com/facebook/react/pull/13885)) > * `React.StrictMode` now warns about legacy context API. ([[**bvaughn**](https://github.com/bvaughn)](https://github.com/bvaughn) in [#13760](https://github-redirect.dependabot.com/facebook/react/pull/13760)) > * `React.StrictMode` now warns about `findDOMNode`. ([[**sebmarkbage**](https://github.com/sebmarkbage)](https://github.com/sebmarkbage) in [#13841](https://github-redirect.dependabot.com/facebook/react/pull/13841)) > * Rename `unstable_AsyncMode` to `unstable_ConcurrentMode`. ([[**trueadm**](https://github.com/trueadm)](https://github.com/trueadm) in [#13732](https://github-redirect.dependabot.com/facebook/react/pull/13732)) > * Rename `unstable_Placeholder` to `Suspense`, and `delayMs` to `maxDuration`. ([[**gaearon**](https://github.com/gaearon)](https://github.com/gaearon) in [#13799](https://github-redirect.dependabot.com/facebook/react/pull/13799) and [[**sebmarkbage**](https://github.com/sebmarkbage)](https://github.com/sebmarkbage) in [#13922](https://github-redirect.dependabot.com/facebook/react/pull/13922)) > > ### React DOM > > * Add `contextType` as a more ergonomic way to subscribe to context from a class. ([[**bvaughn**](https://github.com/bvaughn)](https://github.com/bvaughn) in [#13728](https://github-redirect.dependabot.com/facebook/react/pull/13728)) > * Add `getDerivedStateFromError` lifecycle method for catching errors in a future asynchronous server-side renderer. ([[**bvaughn**](https://github.com/bvaughn)](https://github.com/bvaughn) in [#13746](https://github-redirect.dependabot.com/facebook/react/pull/13746)) > * Warn when `Changelog
*Sourced from [react-dom's changelog](https://github.com/facebook/react/blob/master/CHANGELOG.md).* > ## 16.6.1 (November 6, 2018) > > ### React DOM > > * Fallback should not remount every time a promise resolves. ([[**acdlite**](https://github.com/acdlite)](https://github.com/acdlite) in [#14083](https://github-redirect.dependabot.com/facebook/react/pull/14083)) > * Fix bug where Suspense keeps showing fallback even after everything finishes loading. ([[**acdlite**](https://github.com/acdlite)](https://github.com/acdlite) in [#14083](https://github-redirect.dependabot.com/facebook/react/pull/14083)) > * Fix unresolved default props in lifecycle methods of a lazy component. ([[**gaearon**](https://github.com/gaearon)](https://github.com/gaearon) in [#14112](https://github-redirect.dependabot.com/facebook/react/pull/14112)) > * Fix bug when recovering from an error thrown during complete phase. ([[**gaearon**](https://github.com/gaearon)](https://github.com/gaearon) in [#14104](https://github-redirect.dependabot.com/facebook/react/pull/14104)) > > ### Scheduler (Experimental) > > * Switch from deadline object to `shouldYield` API. ([[**acdlite**](https://github.com/acdlite)](https://github.com/acdlite) in [#14025](https://github-redirect.dependabot.com/facebook/react/pull/14025)) > > > ## 16.6.0 (October 23, 2018) > > ### React > > * Add `React.memo()` as an alternative to `PureComponent` for functions. ([[**acdlite**](https://github.com/acdlite)](https://github.com/acdlite) in [#13748](https://github-redirect.dependabot.com/facebook/react/pull/13748)) > * Add `React.lazy()` for code splitting components. ([[**acdlite**](https://github.com/acdlite)](https://github.com/acdlite) in [#13885](https://github-redirect.dependabot.com/facebook/react/pull/13885)) > * `React.StrictMode` now warns about legacy context API. ([[**bvaughn**](https://github.com/bvaughn)](https://github.com/bvaughn) in [#13760](https://github-redirect.dependabot.com/facebook/react/pull/13760)) > * `React.StrictMode` now warns about `findDOMNode`. ([[**sebmarkbage**](https://github.com/sebmarkbage)](https://github.com/sebmarkbage) in [#13841](https://github-redirect.dependabot.com/facebook/react/pull/13841)) > * Rename `unstable_AsyncMode` to `unstable_ConcurrentMode`. ([[**trueadm**](https://github.com/trueadm)](https://github.com/trueadm) in [#13732](https://github-redirect.dependabot.com/facebook/react/pull/13732)) > * Rename `unstable_Placeholder` to `Suspense`, and `delayMs` to `maxDuration`. ([[**gaearon**](https://github.com/gaearon)](https://github.com/gaearon) in [#13799](https://github-redirect.dependabot.com/facebook/react/pull/13799) and [[**sebmarkbage**](https://github.com/sebmarkbage)](https://github.com/sebmarkbage) in [#13922](https://github-redirect.dependabot.com/facebook/react/pull/13922)) > > ### React DOM > > * Add `contextType` as a more ergonomic way to subscribe to context from a class. ([[**bvaughn**](https://github.com/bvaughn)](https://github.com/bvaughn) in [#13728](https://github-redirect.dependabot.com/facebook/react/pull/13728)) > * Add `getDerivedStateFromError` lifecycle method for catching errors in a future asynchronous server-side renderer. ([[**bvaughn**](https://github.com/bvaughn)](https://github.com/bvaughn) in [#13746](https://github-redirect.dependabot.com/facebook/react/pull/13746)) > * Warn when `Commits
- [`ba19844`](https://github.com/facebook/react/commit/ba19844236ab61e22b6e8f80f5134ae33a2792e5) Update bundle sizes for 16.6.1 release - [`a24d510`](https://github.com/facebook/react/commit/a24d51028710cc171f5a52f07cf110d0b9a58974) Update error codes for 16.6.1 release - [`b50e63e`](https://github.com/facebook/react/commit/b50e63ef537ce7784a1f981570b5abff5c81c59d) Updating package versions for release 16.6.1 - [`fd4527d`](https://github.com/facebook/react/commit/fd4527dbcdab359b02dbce4752995e05502dc7b0) Updating yarn.lock file for 16.6.1 release - [`bd5a6d3`](https://github.com/facebook/react/commit/bd5a6d3914c4ed03678a8dd649f57b19e79a8b2d) Update changelog with unreleased features - [`8f2c89e`](https://github.com/facebook/react/commit/8f2c89e96367ea809a011bb88bbee85551575539) Make react-debug-tools a private package - [`2aecbcd`](https://github.com/facebook/react/commit/2aecbcd6f1a0ac975f01d41dad11722bc8c8da72) "functional component" -> "function component" ([#14123](https://github-redirect.dependabot.com/facebook/react/issues/14123)) - [`b4608dd`](https://github.com/facebook/react/commit/b4608dd24caa31b3c78c51acbb5115ad03e884b3) Remove unused simulated flag parameter ([#14127](https://github-redirect.dependabot.com/facebook/react/issues/14127)) - [`3c69a18`](https://github.com/facebook/react/commit/3c69a1881421d46d738e2782fe3ec0ae9b5cb39c) Recover from errors with a boundary in completion phase ([#14104](https://github-redirect.dependabot.com/facebook/react/issues/14104)) - [`b020fb1`](https://github.com/facebook/react/commit/b020fb1148f2da7495bd1d5425af0622b71100d4) Check correct commit phase props in fuzz tester ([#14129](https://github-redirect.dependabot.com/facebook/react/issues/14129)) - Additional commits viewable in [compare view](https://github.com/facebook/react/compare/v16.4.2...v16.6.1)Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase
.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot ignore this [patch|minor|major] version` will close this PR and stop Dependabot creating any more for this minor/major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) - `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language - `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language - `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language - `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language - `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com): - Update frequency (including time of day and day of week) - Automerge options (never/patch/minor, and dev/runtime dependencies) - Pull request limits (per update run and/or open at any time) - Out-of-range updates (receive only lockfile updates, if desired) - Security updates (receive only security updates, if desired) Finally, you can contact us by mentioning @dependabot.