Files
flipper/react-native/react-native-flipper
dependabot[bot] 379339b03b Bump react-native from 0.63.3 to 0.63.4 in /react-native/react-native-flipper @allow-large-files (#1746)
Summary:
Bumps [react-native](https://github.com/facebook/react-native) from 0.63.3 to 0.63.4.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/facebook/react-native/releases">react-native's releases</a>.</em></p>
<blockquote>
<h2>v0.63.4</h2>
<p>This release fixes a series of issues reported by the community over the last few months: you can find the full <a href="https://github.com/react-native-community/releases/blob/master/CHANGELOG.md#v0634">changelog here</a>.</p>
<p>You can participate in the conversation for the next patch release in the dedicated <a href="https://github-redirect.dependabot.com/react-native-community/releases/issues/218">issue</a>.</p>
<hr />
<p>To help you upgrade to this version, you can use the new <a href="https://react-native-community.github.io/upgrade-helper/">upgrade helper</a> {emoji:269b}</p>
<hr />
<p>You can find the whole <a href="https://github.com/react-native-community/react-native-releases/blob/master/CHANGELOG.md">changelog history</a> over at <code>react-native-releases</code>.</p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="27651720b4"><code>2765172</code></a> [0.63.4] Bump version numbers</li>
<li><a href="00a942c905"><code>00a942c</code></a> Update the cached dimensions when orientation changes (<a href="https://github-redirect.dependabot.com/facebook/react-native/issues/30324">#30324</a>)</li>
<li><a href="ec5090adab"><code>ec5090a</code></a> <code>Android</code>: font-family is not apply when secureTextEntry is true (<a href="https://github-redirect.dependabot.com/facebook/react-native/issues/30164">#30164</a>)</li>
<li><a href="29972f9602"><code>29972f9</code></a> Set color filter so that the arrow matches the text color</li>
<li><a href="f0b6eb7d9f"><code>f0b6eb7</code></a> Fix App Bundle/Release build missing index.android.bundle with gradle plugin ...</li>
<li><a href="afbd17ae41"><code>afbd17a</code></a> fix: crash when insert nil value into a dictionary (<a href="https://github-redirect.dependabot.com/facebook/react-native/issues/30066">#30066</a>)</li>
<li><a href="b31a95c468"><code>b31a95c</code></a> fix ReadableNativeMap.getNullableValue to match signature (<a href="https://github-redirect.dependabot.com/facebook/react-native/issues/30121">#30121</a>)</li>
<li><a href="864c76b143"><code>864c76b</code></a> bump SoLoader to 0.9.0 (<a href="https://github-redirect.dependabot.com/facebook/react-native/issues/29821">#29821</a>)</li>
<li><a href="1875116090"><code>1875116</code></a> okhttp version 3.12.12 (<a href="https://github-redirect.dependabot.com/facebook/react-native/issues/29741">#29741</a>)</li>
<li><a href="c2404b4598"><code>c2404b4</code></a> iOS: Update RCTAlertManager to use new RCTAlertController (<a href="https://github-redirect.dependabot.com/facebook/react-native/issues/29295">#29295</a>)</li>
<li>Additional commits viewable in <a href="https://github.com/facebook/react-native/compare/v0.63.3...v0.63.4">compare view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=react-native&package-manager=npm_and_yarn&previous-version=0.63.3&new-version=0.63.4)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

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-automerge-start)
[//]: # (dependabot-automerge-end)

 ---

<details>
<summary>Dependabot commands and options</summary>
<br />

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 squash and merge` will squash and merge this PR after your CI passes on it
- `dependabot cancel merge` will cancel a previously requested merge and block automerging
- `dependabot reopen` will reopen this PR if it is closed
- `dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- `dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor 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)

</details>

Pull Request resolved: https://github.com/facebook/flipper/pull/1746

Reviewed By: mweststrate

Differential Revision: D25373204

Pulled By: passy

fbshipit-source-id: e1a44da012a6ffb860c23878fa4cbdf369d4fed8
2020-12-11 16:39:02 -08:00
..
2020-05-28 09:59:53 -07:00
2020-07-17 17:18:36 -07:00
2020-03-04 19:00:20 -08:00
2020-12-09 05:43:39 -08:00

react-native-flipper

This package exposes JavaScript bindings to talk from React Native JavaScript directly to flipper.

This package might also be required by other Flipper plugins for React Native.

Installation

Run the following command in the root of your React Native project

yarn add react-native-flipper

Note that this package requires React Native 0.62 or higher.

Usage

How to build Flipper plugins is explained in the flipper documentation: Creating a Flipper plugin. Building a Flipper plugin involves building a plugin for the Desktop app, and a plugin that runs on a Device (Native Android, Native IOS or React Native). This package is only needed for the plugin that runs on the mobile device, in React Native, and wants to use the JavaScript bridge.

This package exposes one method: addPlugin. The addPlugin accepts a plugin parameter, that registers a client plugin and will fire the relevant callbacks if the corresponding desktop plugin is selected in the Flipper Desktop. The full plugin API is documented here.

Example

An example plugin can be found in FlipperTicTacToe.js.

The corresponding Desktop plugin ships by default in Flipper, so importing the above file and dropping the <FlipperTicTacToe /> component somewhere in your application should work out of the box.

The sources of the corresponding Desktop plugin can be found here.