Commit Graph

4386 Commits

Author SHA1 Message Date
Michel Weststrate
5731e3a155 Scrolling improvements
Summary:
Split container had a convenient property `scrollable`, that automatically applies a Scroll container to the main content.

But I noticed it leads to bad design choices because it is so convenient. So sometimes scrolling would be unnecessarily in two directions because of this.

Or, since the scroll container wraps around the whole content, toolbars would scroll out of view. By forcing scrolling to be put explicitly in the component tree, we encourage plugin developers to think about where they actually want to have that scroll, and in which direction.

Also added options to use the Container padding properties on ScrollContainer, which is great since we can keep the scrollbars outside the padding, and apply it to the content only, to prevent an accidental mistake where people would put a scroll container in a padded container, that would put the scrollbar inside the padding.

Reviewed By: cekkaewnumchai

Differential Revision: D24502546

fbshipit-source-id: 524004a1c5f33a185f9b959251b72875dd623cb3
2020-10-23 06:46:15 -07:00
Michel Weststrate
30f5f0b59a Small design system simplifications
Summary:
So far we distinguished `Layout.Container` from `Layout.Vertical`, but they did almost exactly the same, so figured to unify them, so smaller API ftw :) Normal containers put children vertical, and if you want to use horizontal, use Layout.Horzontal

Also simplified code in Layout file a little bit.

Fixed issue I split container where the main container didn't go "underneath" the fixed container

Reviewed By: cekkaewnumchai

Differential Revision: D24502547

fbshipit-source-id: 517db3692749e670cda8f0cd7cb1c807df818b4d
2020-10-23 06:46:15 -07:00
Michel Weststrate
26e040ea73 Layout fix in searchable actions
Summary: Tiny fix were horizontally aligned items were accidentally allowed to shrink by default.

Reviewed By: cekkaewnumchai

Differential Revision: D24501856

fbshipit-source-id: 30ad3987a744b14b41993ed27db9edadd420f0df
2020-10-23 06:46:15 -07:00
Chaiwat Ekkaewnumchai
402ea2fc14 Convert to Shared Preference Plugin to Sandy
Summary:
per title

In addition, this diff adds `startUnactivated` option to allow setting up `onSend` mock implementation.

Reviewed By: mweststrate

Differential Revision: D24477989

fbshipit-source-id: f913574ebacdd436e8511baa43744249a014e90b
2020-10-23 06:22:02 -07:00
Chaiwat Ekkaewnumchai
467a6b16fb Add Notification View
Summary:
This stack tries to migrate notification system to Sandy.

This diff contains on the view; other functionalities aren't working. Also, some of the views will be implemented as functionalities are added.

Reviewed By: mweststrate

Differential Revision: D24390370

fbshipit-source-id: 8e11a01d9462934ff1fadf411e7e8f57ca7ef078
2020-10-23 04:35:14 -07:00
Pascal Hartig
2c88ca3d18 Upgrade flow to 0.131
Summary: Actually, things only start to break in 132.

Reviewed By: mweststrate

Differential Revision: D24480958

fbshipit-source-id: c7003459647d06cbcdf639505fa0779183923a3b
2020-10-23 04:22:07 -07:00
Pascal Hartig
8d6502b5d7 Upgrade Flow to 0.130
Summary:
This should give us some headroom. There are some incompatibilities and bugs in newer versions,
so only bumping this one which is compatible.

Reviewed By: mweststrate

Differential Revision: D24480863

fbshipit-source-id: ec21b937bf44686e49a71aeb38063d996d2cbff4
2020-10-23 04:22:07 -07:00
Anton Nikolaev
910ad7f992 Update documentation about development build customisation options
Summary: Added docs about customisation options for development build

Reviewed By: mweststrate

Differential Revision: D24478489

fbshipit-source-id: d415b958f3b8abffbb462a6df8dffdeceea4c7bf
2020-10-23 02:42:06 -07:00
Timur Valiev
957ae9d7ca small Searchable table refactoring
Summary: export filterRowsFact so we can reuse it. it's needed in diffs above

Reviewed By: SimoneCasagranda

Differential Revision: D24445819

fbshipit-source-id: 1c9ca363419c7e34f53e65b77764a49235e259e2
2020-10-22 13:16:47 -07:00
Anton Nikolaev
d4debc4185 Use dotenv for dev mode customisation
Summary: Allow using of .env file to pass env vars to be used in dev mode. Currently this allow to configure defaults for enabling fast refresh, automatic opening of dev tools and plugins to load.

Reviewed By: passy

Differential Revision: D24398938

fbshipit-source-id: 30a5d86b7906a7723a404cf84a1b8d50ae497dbc
2020-10-22 11:35:53 -07:00
Anton Nikolaev
2d9cf5a905 Option to load only specific plugins in dev mode
Summary: Currently we load all the plugins even if they are not required in dev mode, e.g. when you are developing a specific plugin. This diff adds an env var and command-line option to specify exact list of plugins to load. This makes dev mode startup faster and consume less memory.

Reviewed By: passy

Differential Revision: D24394146

fbshipit-source-id: 42a78c1ffb2632e657c2411e34e9c80fff18df3a
2020-10-22 11:35:53 -07:00
Michel Weststrate
966d748ace Some fixes in rendering legacy plugins
Summary:
Some exploratory testing on all iOS and Android plugins, to see how they behave inside Sandy, and fixed some layout glitches (some were also present without Sandy)

General fixes:
* Introduced some niceties like searchbox resizing properly, and toolbars wrapping automatically in Sandy, rather than buttons becoming invisible
* Containers don't grow anymore by default, but take size of contents
* ScrollContainer child is now a Layout.Vertical. Layout.Vertical should be used as default container everywhere (e.g. Tabs, Panels) in the future
* Fixed layout issue if a split container had only 1 visible child
* DetailsSidebar now scrolls vertically by default
* Details sidebar would sometimes render content in-place rather than in the reserved area
* AppSelector dropdown and Plugin list will now properly ellipse (...) if there is not enough space

Plugin fixes:
* Long database / table names in Database plugin would break layout

Also fixes https://github.com/facebook/flipper/issues/1611

Reviewed By: passy

Differential Revision: D24454188

fbshipit-source-id: c60c867270900a1d4f28587d47067c6ec1072ede
2020-10-22 09:41:11 -07:00
Michel Weststrate
4f7294c96d Add unit tests for selection changes and plugin list computation
Summary: Tests to verify the more complex selection logic resulting from the Metro device exception. Also verifies the logic that computes the available plugins

Reviewed By: nikoant

Differential Revision: D24445555

fbshipit-source-id: 70110c4470e6aa1356e814aa40744b65c21cad89
2020-10-22 09:41:11 -07:00
Michel Weststrate
99dfeacdf8 useMemo -> useMemoize
Summary:
I love useMemo, and the memoized functions are in principle easy to testable since deps are known

But in practice they aren't as they close over their deps, preventing hoisting. So I now use a small `useMemoize` utility that encourages me to write them in a testable manner.

Applied this to the PluginList, and it makes it imho cleaner to read. Also, testing is now much easier as demonstrated in the next diff.

Reviewed By: nikoant

Differential Revision: D24445556

fbshipit-source-id: e156dbd4b8623eb1b90650e174b69a0ec868d2da
2020-10-22 09:41:11 -07:00
Michel Weststrate
c55be74426 Be able to select Metro plugins
Summary:
This adds the ability in AppInspect to work with Metro and plugins.

Metro remains a weird and hardcoded edge case, as we show it as part of another device. So a few things to notice:
- Metro does not have it's own entry in the device/app dropdown
- When selecting a metro plugin, the surrounding context (selected main device / app) remains, but you will notice that the device dropdown switches to 'React Native'. This is intentional to reflect that we are talking to React Native in general, and not necessarily to the device / app shown in the context.

Reviewed By: nikoant

Differential Revision: D24422267

fbshipit-source-id: 239aa71b5c01e19bdda53a930ad9fa8af13b8d4a
2020-10-22 09:41:11 -07:00
Michel Weststrate
8a7323b9f8 Render plugin list
Summary:
This diff adds the rough navigation to open pugins, there are some rough egdes still, and tests will be added later, but wanted to keep diffs small, and land the feature early to get some initial dogfooding going on early.

Note that we now also show all disabled plugins to help people with trouble shooting.

Reviewed By: nikoant

Differential Revision: D24418411

fbshipit-source-id: 1402d69efe2e52bc2c81336cfb4f4c9928ea4d80
2020-10-22 09:41:11 -07:00
Evgen Filatov
2c6c7fb46c (flux stores) 5. make "logs" tab look nicer
Summary:
This diff implement few things:
* Logs tab for plugin
* Sending new state for each action is expensive, that is why flipper side receive only diffs and uses `getStateFromLogItem` to calculate new state
* fixed `keys` in `DataInspector.tsx` which caused `DataInspector` become unresponsive

{F340648998}

Differential Revision: D23021619

fbshipit-source-id: 17490c25f7b86faf9e574a612996563aac18525e
2020-10-22 01:42:36 -07:00
Evgen Filatov
6e54ac9bab (flux stores) 3. connected FluxLogger to flipper
Summary:
The bridge between Flipper and AMA has been established in previous diff. The goal of this diff - is to actually send data to flipper

{F340648834}

Differential Revision: D22999433

fbshipit-source-id: 72b6ad57bcaa9c0318879a224508397f70e3bc76
2020-10-22 01:42:36 -07:00
Pascal Hartig
59921da02a Move release infra docs
Summary: It's a lot more than just "launcher" now.

Reviewed By: nikoant

Differential Revision: D24425780

fbshipit-source-id: 74f6dd4d73a224a43608c4d3f3698dbd16c2e865
2020-10-21 02:58:21 -07:00
generatedunixname89002005306973
6eed8a9012 Flipper Snapshot Bump: v0.63.1-SNAPSHOT
Summary: Releasing snapshot version 0.63.1-SNAPSHOT

Reviewed By: nikoant

Differential Revision: D24423407

fbshipit-source-id: 96ed1b64238771d411c0fc2802640a94c2cb4134
2020-10-20 11:13:12 -07:00
generatedunixname89002005306973
0f23f409ab Flipper Release: v0.63.0
Summary: Releasing version 0.63.0

Reviewed By: nikoant

Differential Revision: D24423408

fbshipit-source-id: 0bc12c49d8bf77d8dbf9688adb07dc176b210548
2020-10-20 11:13:12 -07:00
Paco Estevez Garcia
1be2f8c987 Immutable picker
Summary: Disables the picker if the selection isn't editable

Differential Revision: D24419005

fbshipit-source-id: 433229a23db7fac947f574110326f5bf0dc51bc3
2020-10-20 10:50:18 -07:00
Paco Estevez Garcia
d733f8131f Immutable timeline
Summary:
Removes the "Set current" button if the timeline isn't editable

Note that the styling does weird stuff to colors when a field is set as not editable

Differential Revision: D24419006

fbshipit-source-id: 84dcee2e04d5ed7ebb3dc0255e99d1756f195284
2020-10-20 10:50:18 -07:00
Anton Nikolaev
38ef16aeeb Upgrade jest and babel
Summary: Metro update already uppgraded half of babel libraries and jest update required updating some others, so here I just updated all babel-related and jest-related packages using `yarn upgrade-interactive` so their versions matched

Reviewed By: mweststrate

Differential Revision: D24421484

fbshipit-source-id: e22a1a8cbc36435253b8d92adadd2439d669e811
2020-10-20 09:45:07 -07:00
dependabot[bot]
35a433d1a3 Bump metro from 0.60.0 to 0.63.0 in /desktop (#1606)
Summary:
Bumps [metro](https://github.com/facebook/metro) from 0.60.0 to 0.63.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/facebook/metro/releases">metro's releases</a>.</em></p>
<blockquote>
<h2>Release v0.63.0</h2>
<ul>
<li>[fix] Change initialisation logo and text from RN to Metro</li>
</ul>
<h2>Release v0.62.0</h2>
<ul>
<li>[feature] Add onBundleBuilt to ServerOptions</li>
</ul>
<h2>Release v0.61.0</h2>
<p>Contains all changes since 0.60.0:</p>
<ul>
<li>[Feature]: Add support for blockList and array of regexs</li>
<li>[Fix]: Change order of imports to be the same as in source files</li>
<li>[Feature]: Add new secureServerOptions option to runServer</li>
<li>[Feature]: Add inline-requires option</li>
<li>[PetPeeve]: Metro server =&gt; Metro</li>
</ul>
<p>See <a href="https://github.com/facebook/metro/compare/0.60.0...0.61.0">0.59.0...0.60.0</a> for a full list of changes.</p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="b9bacd51d0"><code>b9bacd5</code></a> Metro release v0.63.0</li>
<li><a href="c106b6540e"><code>c106b65</code></a> Change initialisation logo and text</li>
<li><a href="be719b29c0"><code>be719b2</code></a> remove redundant deprecated-utility setting from flow configs</li>
<li><a href="9236feba99"><code>9236feb</code></a> Turn off template literal and shorthand properties transform for hermes-canary</li>
<li><a href="6b82e8443c"><code>6b82e84</code></a> Create a <code>metro-runtime</code> module</li>
<li><a href="18883f6caa"><code>18883f6</code></a> Fix up package.json files.</li>
<li><a href="921b73e4d0"><code>921b73e</code></a> Remove autogenerated table of contents (deprecated in docusaurus v2)</li>
<li><a href="eb9b02572b"><code>eb9b025</code></a> Update configuration page with examples</li>
<li><a href="00a5a6d8d6"><code>00a5a6d</code></a> Fix troubleshooting and help pages</li>
<li><a href="c73eaf88f8"><code>c73eaf8</code></a> Update docusaurus version</li>
<li>Additional commits viewable in <a href="https://github.com/facebook/metro/compare/v0.60.0...v0.63.0">compare view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=metro&package-manager=npm_and_yarn&previous-version=0.60.0&new-version=0.63.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/configuring-github-dependabot-security-updates)

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/1606

Reviewed By: passy

Differential Revision: D24392103

Pulled By: nikoant

fbshipit-source-id: 6d816629f55e04852d6737f9960fa61d7e83cee8
2020-10-20 08:54:17 -07:00
Pritesh Nandgaonkar
abc0ae2b17 Update OpenSSL dependency
Summary: Updates the OpenSSL dependency. Enabling bitcode as the latest version of OpenSSL has bitcode support.

Reviewed By: mweststrate

Differential Revision: D24276537

fbshipit-source-id: 6f135659d64e8849dcf68266458a8f24ef795be7
2020-10-20 04:46:13 -07:00
Michel Weststrate
29e528115d Support 1 dimension scrolling
Summary: Added `axis` property to scroll container, to make scroll work in one direction, and fill out the other one.

Reviewed By: cekkaewnumchai

Differential Revision: D24390943

fbshipit-source-id: 5767e753edfb947f43b3998e10d6cebf57f9b53b
2020-10-20 03:24:47 -07:00
Michel Weststrate
a2fac737f6 Render sidebar
Summary:
Restore sidebar functionality for Sandy plugins

Also needed to fix some circular dependency issues as fallout.

Reviewed By: cekkaewnumchai

Differential Revision: D24362215

fbshipit-source-id: 0a09ac35ba981322ae0793edc3aa79ffddf2ce73
2020-10-20 03:24:47 -07:00
Michel Weststrate
ba5f067320 Fix circular imports and lint against them
Summary: When trying to refactor some components, did once again run into circular imports that cause the flipper startup sequence to fail. Added linting rules to make sure this is much less likely to happen in the future, and fixed all resulting errors

Reviewed By: nikoant

Differential Revision: D24390583

fbshipit-source-id: 9b20cf6a4d3555dc68f0069c2950dd7162b17e67
2020-10-20 03:24:47 -07:00
Michel Weststrate
f14a724fa5 Device plugin list
Summary:
Render a plugin list

Will add tests once the entire feature is complete

Reviewed By: cekkaewnumchai

Differential Revision: D24079897

fbshipit-source-id: db7250ff612b67ab18dfcacdcb9c44dab596933d
2020-10-20 03:24:46 -07:00
Michel Weststrate
c38a4413dc Device Dropdown
Summary: This diff adds the device switcher, filling the switcher with apps and devices.

Reviewed By: cekkaewnumchai

Differential Revision: D24053787

fbshipit-source-id: 4f69835a12eec90a0e5704f71c8ceed5509f61ce
2020-10-20 03:24:46 -07:00
dependabot[bot]
79ac1ef009 Bump react from 16.13.1 to 16.14.0 in /react-native/ReactNativeFlipperExample (#1605)
Summary:
Bumps [react](https://github.com/facebook/react/tree/HEAD/packages/react) from 16.13.1 to 16.14.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/facebook/react/releases">react's releases</a>.</em></p>
<blockquote>
<h2>16.14.0 (October 14, 2020)</h2>
<h3>React</h3>
<ul>
<li>Add support for the <a href="https://reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html">new JSX transform</a>. (<a href="https://github.com/lunaruan">lunaruan</a> in <a href="https://github-redirect.dependabot.com/facebook/react/pull/18299">#18299</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/facebook/react/blob/master/CHANGELOG.md">react's changelog</a>.</em></p>
<blockquote>
<h2>16.14.0 (October 14, 2020)</h2>
<h3>React</h3>
<ul>
<li>Add support for the <a href="https://reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html">new JSX transform</a>. (<a href="https://github.com/lunaruan">lunaruan</a> in <a href="https://github-redirect.dependabot.com/facebook/react/pull/18299">#18299</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="c63741fb3d"><code>c63741f</code></a> offscreen double invoke effects (<a href="https://github.com/facebook/react/tree/HEAD/packages/react/issues/19523">#19523</a>)</li>
<li><a href="c6917346ff"><code>c691734</code></a> Fixed broken Profiler test (<a href="https://github.com/facebook/react/tree/HEAD/packages/react/issues/19894">#19894</a>)</li>
<li><a href="87c023b1c1"><code>87c023b</code></a> Profiler onRender only called when we do work (<a href="https://github.com/facebook/react/tree/HEAD/packages/react/issues/19885">#19885</a>)</li>
<li><a href="81aaee56af"><code>81aaee5</code></a> Don't call onCommit et al if there are no effects (<a href="https://github.com/facebook/react/tree/HEAD/packages/react/issues/19863">#19863</a>)</li>
<li><a href="bc6b7b6b16"><code>bc6b7b6</code></a> Don't trigger lazy in DEV during element creation (<a href="https://github.com/facebook/react/tree/HEAD/packages/react/issues/19871">#19871</a>)</li>
<li><a href="781212aab3"><code>781212a</code></a> Remove double space in test name (<a href="https://github.com/facebook/react/tree/HEAD/packages/react/issues/19762">#19762</a>)</li>
<li><a href="d17086c7c8"><code>d17086c</code></a> Decouple public, internal act implementation (<a href="https://github.com/facebook/react/tree/HEAD/packages/react/issues/19745">#19745</a>)</li>
<li><a href="1f38dcff67"><code>1f38dcf</code></a> Remove withSuspenseConfig (<a href="https://github.com/facebook/react/tree/HEAD/packages/react/issues/19724">#19724</a>)</li>
<li><a href="ddd1faa197"><code>ddd1faa</code></a> Remove config argument from useTransition (<a href="https://github.com/facebook/react/tree/HEAD/packages/react/issues/19719">#19719</a>)</li>
<li><a href="92fcd46cc7"><code>92fcd46</code></a> Replace SuspenseConfig object with an integer (<a href="https://github.com/facebook/react/tree/HEAD/packages/react/issues/19706">#19706</a>)</li>
<li>Additional commits viewable in <a href="https://github.com/facebook/react/commits/v16.14.0/packages/react">compare view</a></li>
</ul>
</details>
<br />

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

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/1605

Reviewed By: passy

Differential Revision: D24392101

Pulled By: nikoant

fbshipit-source-id: 8f8b00fd7a2e9821194427fc04ff958fc92d94ae
2020-10-19 10:08:53 -07:00
dependabot[bot]
904f9fa1a2 Bump @babel/runtime from 7.11.2 to 7.12.1 in /react-native/ReactNativeFlipperExample (#1601)
Summary:
Bumps [babel/runtime](https://github.com/babel/babel/tree/HEAD/packages/babel-runtime) from 7.11.2 to 7.12.1.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/babel/babel/releases">babel/runtime's releases</a>.</em></p>
<blockquote>
<h2>v7.12.1 (2020-10-16)</h2>
<h4>🐛 Bug Fix</h4>
<ul>
<li><code>babel-cli</code>
<ul>
<li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12182">#12182</a> Don't force chokidar@2 to be downloaded from registry.npmjs.org (<a href="https://github.com/nicolo-ribaudo">nicolo-ribaudo</a>)</li>
</ul>
</li>
<li><code>babel-plugin-transform-runtime</code>, <code>babel-runtime-corejs2</code>, <code>babel-runtime-corejs3</code>, <code>babel-runtime</code>
<ul>
<li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12184">#12184</a> Allow importing <code>babel/runtime/package</code> (<a href="https://github.com/nicolo-ribaudo">nicolo-ribaudo</a>)</li>
</ul>
</li>
<li><code>babel-parser</code>
<ul>
<li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12183">#12183</a> Reland &quot;Fix: check if param is assignable when parsing arrow return type annotation&quot; (<a href="https://github.com/nicolo-ribaudo">nicolo-ribaudo</a>)</li>
</ul>
</li>
</ul>
<h4>🏠 Internal</h4>
<ul>
<li>Other
<ul>
<li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12188">#12188</a> Guard against yarn-issue-1882 (<a href="https://github.com/JLHwung">JLHwung</a>)</li>
</ul>
</li>
<li><em>Every package</em>
<ul>
<li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12186">#12186</a> chore: use workspace:* for dev deps (<a href="https://github.com/JLHwung">JLHwung</a>)</li>
</ul>
</li>
<li><code>babel-compat-data</code>, <code>babel-helper-compilation-targets</code>, <code>babel-helper-create-class-features-plugin</code>, <code>babel-helper-remap-async-to-generator</code>, <code>babel-helper-simple-access</code>, <code>babel-helper-transform-fixture-test-runner</code>, <code>babel-plugin-transform-named-capturing-groups-regex</code>, <code>babel-plugin-transform-object-assign</code>, <code>babel-plugin-transform-parameters</code>, <code>babel-plugin-transform-react-jsx-self</code>, <code>babel-plugin-transform-react-jsx-source</code>, <code>babel-plugin-transform-template-literals</code>, <code>babel-preset-env</code>, <code>babel-preset-react</code>, <code>babel-runtime-corejs2</code>, <code>babel-runtime</code>, <code>babel-standalone</code>
<ul>
<li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12175">#12175</a> Remove unused <code>dependencies</code> and <code>devDependencies</code> (<a href="https://github.com/nicolo-ribaudo">nicolo-ribaudo</a>)</li>
</ul>
</li>
</ul>
<h4>Committers: 2</h4>
<ul>
<li>Huáng Jùnliàng (<a href="https://github.com/JLHwung">JLHwung</a>)</li>
<li>Nicolò Ribaudo (<a href="https://github.com/nicolo-ribaudo">nicolo-ribaudo</a>)</li>
</ul>
<h2>v7.12.0 (2020-10-14)</h2>
<p>Thanks <a href="https://github.com/akphi">akphi</a>, <a href="https://github.com/Amareis">Amareis</a>, <a href="https://github.com/barronwei">barronwei</a>, <a href="https://github.com/iamfotx">iamfotx</a>, <a href="https://github.com/mischnic">mischnic</a>, <a href="https://github.com/overlookmotel">overlookmotel</a>, <a href="https://github.com/ryanrhee">ryanrhee</a>, <a href="https://github.com/snitin315">snitin315</a>, <a href="https://github.com/sosukesuzuki">sosukesuzuki</a>, <a href="https://github.com/timgates42">timgates42</a>, <a href="https://github.com/zweimach">zweimach</a> for their first PRs.</p>
<h4>👓 Spec Compliance</h4>
<ul>
<li><code>babel-core</code>, <code>babel-helper-module-transforms</code>, <code>babel-parser</code>, <code>babel-plugin-proposal-export-namespace-from</code>, <code>babel-plugin-syntax-module-string-names</code>, <code>babel-plugin-transform-modules-amd</code>, <code>babel-plugin-transform-modules-commonjs</code>, <code>babel-plugin-transform-modules-systemjs</code>, <code>babel-plugin-transform-modules-umd</code>, <code>babel-types</code>
<ul>
<li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12091">#12091</a> String import/export specifier (<a href="https://github.com/JLHwung">JLHwung</a>)</li>
</ul>
</li>
<li><code>babel-parser</code>
<ul>
<li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12111">#12111</a> [ts] Throw a syntax error for index signature with <code>declare</code> (<a href="https://github.com/sosukesuzuki">sosukesuzuki</a>)</li>
</ul>
</li>
</ul>
<h4>🚀 New Feature</h4>
<ul>
<li><code>babel-core</code>, <code>babel-generator</code>, <code>babel-parser</code>, <code>babel-plugin-syntax-import-assertions</code>, <code>babel-plugin-syntax-module-attributes</code>, <code>babel-standalone</code>, <code>babel-types</code>
<ul>
<li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12139">#12139</a> Parse import-assertions (<a href="https://github.com/xtuc">xtuc</a>)</li>
</ul>
</li>
<li><code>babel-core</code>, <code>babel-helper-create-class-features-plugin</code>, <code>babel-helper-module-transforms</code>, <code>babel-helper-replace-supers</code>, <code>babel-plugin-proposal-class-static-block</code>, <code>babel-plugin-transform-modules-commonjs</code>, <code>babel-standalone</code>, <code>babel-traverse</code>, <code>babel-types</code>
<ul>
<li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12143">#12143</a> Transform class static block (<a href="https://github.com/JLHwung">JLHwung</a>)</li>
</ul>
</li>
<li><code>babel-generator</code>, <code>babel-parser</code>, <code>babel-plugin-syntax-class-static-block</code>, <code>babel-types</code>
<ul>
<li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12079">#12079</a> Parse class static block (<a href="https://github.com/JLHwung">JLHwung</a>)</li>
</ul>
</li>
<li><code>babel-generator</code>, <code>babel-parser</code>, <code>babel-types</code>
<ul>
<li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12129">#12129</a> Support TypeScript mapped type 'as' clauses (<a href="https://github.com/existentialism">existentialism</a>)</li>
<li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12147">#12147</a> [ts] Add support for the &quot;intrinsic&quot; keyword (<a href="https://github.com/nicolo-ribaudo">nicolo-ribaudo</a>)</li>
</ul>
</li>
<li><code>babel-parser</code>, <code>babel-types</code>
<ul>
<li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12131">#12131</a> [ts] Add support for template interpolations in types (<a href="https://github.com/nicolo-ribaudo">nicolo-ribaudo</a>)</li>
</ul>
</li>
<li><code>babel-plugin-transform-modules-systemjs</code>
<ul>
<li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12163">#12163</a> SystemJS top-level await support (<a href="https://github.com/guybedford">guybedford</a>)</li>
</ul>
</li>
<li><code>babel-plugin-transform-typescript</code>, <code>babel-preset-typescript</code>
<ul>
<li><a href="https://github-redirect.dependabot.com/babel/babel/pull/11950">#11950</a> Add <code>jsxPragmaFrag</code> support to typescript transform (<a href="https://github.com/JLHwung">JLHwung</a>)</li>
</ul>
</li>
<li><code>babel-core</code>, <code>babel-helper-module-transforms</code>, <code>babel-parser</code>, <code>babel-plugin-proposal-export-namespace-from</code>, <code>babel-plugin-syntax-module-string-names</code>, <code>babel-plugin-transform-modules-amd</code>, <code>babel-plugin-transform-modules-commonjs</code>, <code>babel-plugin-transform-modules-systemjs</code>, <code>babel-plugin-transform-modules-umd</code>, <code>babel-types</code>
<ul>
<li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12091">#12091</a> String import/export specifier (<a href="https://github.com/JLHwung">JLHwung</a>)</li>
</ul>
</li>
</ul>

</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/babel/babel/blob/main/CHANGELOG.md">babel/runtime's changelog</a>.</em></p>
<blockquote>
<h2>v7.12.1 (2020-10-16)</h2>
<h4>🐛 Bug Fix</h4>
<ul>
<li><code>babel-cli</code>
<ul>
<li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12182">#12182</a> Don't force chokidar@2 to be downloaded from registry.npmjs.org (<a href="https://github.com/nicolo-ribaudo">nicolo-ribaudo</a>)</li>
</ul>
</li>
<li><code>babel-plugin-transform-runtime</code>, <code>babel-runtime-corejs2</code>, <code>babel-runtime-corejs3</code>, <code>babel-runtime</code>
<ul>
<li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12184">#12184</a> Allow importing <code>babel/runtime/package</code> (<a href="https://github.com/nicolo-ribaudo">nicolo-ribaudo</a>)</li>
</ul>
</li>
<li><code>babel-parser</code>
<ul>
<li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12183">#12183</a> Reland &quot;Fix: check if param is assignable when parsing arrow return type annotation&quot; (<a href="https://github.com/nicolo-ribaudo">nicolo-ribaudo</a>)</li>
</ul>
</li>
</ul>
<h4>🏠 Internal</h4>
<ul>
<li>Other
<ul>
<li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12188">#12188</a> Guard against yarn-issue-1882 (<a href="https://github.com/JLHwung">JLHwung</a>)</li>
</ul>
</li>
<li><code>babel-cli</code>, <code>babel-core</code>, <code>babel-generator</code>, <code>babel-helper-bindify-decorators</code>, <code>babel-helper-call-delegate</code>, <code>babel-helper-compilation-targets</code>, <code>babel-helper-create-class-features-plugin</code>, <code>babel-helper-create-regexp-features-plugin</code>, <code>babel-helper-explode-assignable-expression</code>, <code>babel-helper-explode-class</code>, <code>babel-helper-module-imports</code>, <code>babel-helper-remap-async-to-generator</code>, <code>babel-helper-skip-transparent-expression-wrappers</code>, <code>babel-helpers</code>, <code>babel-node</code>, <code>babel-parser</code>, <code>babel-plugin-external-helpers</code>, <code>babel-plugin-proposal-async-generator-functions</code>, <code>babel-plugin-proposal-class-properties</code>, <code>babel-plugin-proposal-class-static-block</code>, <code>babel-plugin-proposal-decorators</code>, <code>babel-plugin-proposal-do-expressions</code>, <code>babel-plugin-proposal-dynamic-import</code>, <code>babel-plugin-proposal-export-default-from</code>, <code>babel-plugin-proposal-export-namespace-from</code>, <code>babel-plugin-proposal-function-bind</code>, <code>babel-plugin-proposal-function-sent</code>, <code>babel-plugin-proposal-json-strings</code>, <code>babel-plugin-proposal-logical-assignment-operators</code>, <code>babel-plugin-proposal-nullish-coalescing-operator</code>, <code>babel-plugin-proposal-numeric-separator</code>, <code>babel-plugin-proposal-object-rest-spread</code>, <code>babel-plugin-proposal-optional-catch-binding</code>, <code>babel-plugin-proposal-optional-chaining</code>, <code>babel-plugin-proposal-partial-application</code>, <code>babel-plugin-proposal-pipeline-operator</code>, <code>babel-plugin-proposal-private-methods</code>, <code>babel-plugin-proposal-private-property-in-object</code>, <code>babel-plugin-proposal-throw-expressions</code>, <code>babel-plugin-proposal-unicode-property-regex</code>, <code>babel-plugin-syntax-class-properties</code>, <code>babel-plugin-syntax-decorators</code>, <code>babel-plugin-syntax-do-expressions</code>, <code>babel-plugin-syntax-export-default-from</code>, <code>babel-plugin-syntax-flow</code>, <code>babel-plugin-syntax-function-bind</code>, <code>babel-plugin-syntax-function-sent</code>, <code>babel-plugin-syntax-import-assertions</code>, <code>babel-plugin-syntax-jsx</code>, <code>babel-plugin-syntax-module-string-names</code>, <code>babel-plugin-syntax-partial-application</code>, <code>babel-plugin-syntax-pipeline-operator</code>, <code>babel-plugin-syntax-record-and-tuple</code>, <code>babel-plugin-syntax-throw-expressions</code>, <code>babel-plugin-syntax-top-level-await</code>, <code>babel-plugin-syntax-typescript</code>, <code>babel-plugin-transform-arrow-functions</code>, <code>babel-plugin-transform-async-to-generator</code>, <code>babel-plugin-transform-block-scoped-functions</code>, <code>babel-plugin-transform-block-scoping</code>, <code>babel-plugin-transform-classes</code>, <code>babel-plugin-transform-computed-properties</code>, <code>babel-plugin-transform-destructuring</code>, <code>babel-plugin-transform-dotall-regex</code>, <code>babel-plugin-transform-duplicate-keys</code>, <code>babel-plugin-transform-exponentiation-operator</code>, <code>babel-plugin-transform-flow-comments</code>, <code>babel-plugin-transform-flow-strip-types</code>, <code>babel-plugin-transform-for-of</code>, <code>babel-plugin-transform-function-name</code>, <code>babel-plugin-transform-instanceof</code>, <code>babel-plugin-transform-jscript</code>, <code>babel-plugin-transform-literals</code>, <code>babel-plugin-transform-member-expression-literals</code>, <code>babel-plugin-transform-modules-amd</code>, <code>babel-plugin-transform-modules-commonjs</code>, <code>babel-plugin-transform-modules-systemjs</code>, <code>babel-plugin-transform-modules-umd</code>, <code>babel-plugin-transform-named-capturing-groups-regex</code>, <code>babel-plugin-transform-new-target</code>, <code>babel-plugin-transform-object-assign</code>, <code>babel-plugin-transform-object-set-prototype-of-to-assign</code>, <code>babel-plugin-transform-object-super</code>, <code>babel-plugin-transform-parameters</code>, <code>babel-plugin-transform-property-literals</code>, <code>babel-plugin-transform-property-mutators</code>, <code>babel-plugin-transform-proto-to-assign</code>, <code>babel-plugin-transform-react-constant-elements</code>, <code>babel-plugin-transform-react-display-name</code>, <code>babel-plugin-transform-react-inline-elements</code>, <code>babel-plugin-transform-react-jsx-compat</code>, <code>babel-plugin-transform-react-jsx-development</code>, <code>babel-plugin-transform-react-jsx-self</code>, <code>babel-plugin-transform-react-jsx-source</code>, <code>babel-plugin-transform-react-jsx</code>, <code>babel-plugin-transform-react-pure-annotations</code>, <code>babel-plugin-transform-regenerator</code>, <code>babel-plugin-transform-reserved-words</code>, <code>babel-plugin-transform-runtime</code>, <code>babel-plugin-transform-shorthand-properties</code>, <code>babel-plugin-transform-spread</code>, <code>babel-plugin-transform-sticky-regex</code>, <code>babel-plugin-transform-strict-mode</code>, <code>babel-plugin-transform-template-literals</code>, <code>babel-plugin-transform-typeof-symbol</code>, <code>babel-plugin-transform-typescript</code>, <code>babel-plugin-transform-unicode-escapes</code>, <code>babel-plugin-transform-unicode-regex</code>, <code>babel-preset-env</code>, <code>babel-preset-flow</code>, <code>babel-preset-react</code>, <code>babel-preset-typescript</code>, <code>babel-register</code>, <code>babel-standalone</code>, <code>babel-traverse</code>, <code>babel-types</code>
<ul>
<li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12186">#12186</a> chore: use workspace:* for dev deps (<a href="https://github.com/JLHwung">JLHwung</a>)</li>
</ul>
</li>
<li><code>babel-compat-data</code>, <code>babel-helper-compilation-targets</code>, <code>babel-helper-create-class-features-plugin</code>, <code>babel-helper-remap-async-to-generator</code>, <code>babel-helper-simple-access</code>, <code>babel-helper-transform-fixture-test-runner</code>, <code>babel-plugin-transform-named-capturing-groups-regex</code>, <code>babel-plugin-transform-object-assign</code>, <code>babel-plugin-transform-parameters</code>, <code>babel-plugin-transform-react-jsx-self</code>, <code>babel-plugin-transform-react-jsx-source</code>, <code>babel-plugin-transform-template-literals</code>, <code>babel-preset-env</code>, <code>babel-preset-react</code>, <code>babel-runtime-corejs2</code>, <code>babel-runtime</code>, <code>babel-standalone</code>
<ul>
<li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12175">#12175</a> Remove unused <code>dependencies</code> and <code>devDependencies</code> (<a href="https://github.com/nicolo-ribaudo">nicolo-ribaudo</a>)</li>
</ul>
</li>
</ul>
<h2>v7.12.0 (2020-10-14)</h2>
<h4>👓 Spec Compliance</h4>
<ul>
<li><code>babel-core</code>, <code>babel-helper-module-transforms</code>, <code>babel-parser</code>, <code>babel-plugin-proposal-export-namespace-from</code>, <code>babel-plugin-syntax-module-string-names</code>, <code>babel-plugin-transform-modules-amd</code>, <code>babel-plugin-transform-modules-commonjs</code>, <code>babel-plugin-transform-modules-systemjs</code>, <code>babel-plugin-transform-modules-umd</code>, <code>babel-types</code>
<ul>
<li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12091">#12091</a> String import/export specifier (<a href="https://github.com/JLHwung">JLHwung</a>)</li>
</ul>
</li>
<li><code>babel-parser</code>
<ul>
<li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12111">#12111</a> [ts] Throw a syntax error for index signature with <code>declare</code> (<a href="https://github.com/sosukesuzuki">sosukesuzuki</a>)</li>
</ul>
</li>
</ul>
<h4>🚀 New Feature</h4>
<ul>
<li><code>babel-core</code>, <code>babel-generator</code>, <code>babel-parser</code>, <code>babel-plugin-syntax-import-assertions</code>, <code>babel-plugin-syntax-module-attributes</code>, <code>babel-standalone</code>, <code>babel-types</code>
<ul>
<li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12139">#12139</a> Parse import-assertions (<a href="https://github.com/xtuc">xtuc</a>)</li>
</ul>
</li>
<li><code>babel-core</code>, <code>babel-helper-create-class-features-plugin</code>, <code>babel-helper-module-transforms</code>, <code>babel-helper-replace-supers</code>, <code>babel-plugin-proposal-class-static-block</code>, <code>babel-plugin-transform-modules-commonjs</code>, <code>babel-standalone</code>, <code>babel-traverse</code>, <code>babel-types</code>
<ul>
<li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12143">#12143</a> Transform class static block (<a href="https://github.com/JLHwung">JLHwung</a>)</li>
</ul>
</li>
<li><code>babel-generator</code>, <code>babel-parser</code>, <code>babel-plugin-syntax-class-static-block</code>, <code>babel-types</code>
<ul>
<li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12079">#12079</a> Parse class static block (<a href="https://github.com/JLHwung">JLHwung</a>)</li>
</ul>
</li>
<li><code>babel-generator</code>, <code>babel-parser</code>, <code>babel-types</code>
<ul>
<li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12129">#12129</a> Support TypeScript mapped type 'as' clauses (<a href="https://github.com/existentialism">existentialism</a>)</li>
<li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12147">#12147</a> [ts] Add support for the &quot;intrinsic&quot; keyword (<a href="https://github.com/nicolo-ribaudo">nicolo-ribaudo</a>)</li>
</ul>
</li>
<li><code>babel-parser</code>, <code>babel-types</code>
<ul>
<li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12131">#12131</a> [ts] Add support for template interpolations in types (<a href="https://github.com/nicolo-ribaudo">nicolo-ribaudo</a>)</li>
</ul>
</li>
<li><code>babel-plugin-transform-modules-systemjs</code>
<ul>
<li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12163">#12163</a> SystemJS top-level await support (<a href="https://github.com/guybedford">guybedford</a>)</li>
</ul>
</li>
<li><code>babel-plugin-transform-typescript</code>, <code>babel-preset-typescript</code>
<ul>
<li><a href="https://github-redirect.dependabot.com/babel/babel/pull/11950">#11950</a> Add <code>jsxPragmaFrag</code> support to typescript transform (<a href="https://github.com/JLHwung">JLHwung</a>)</li>
</ul>
</li>
<li><code>babel-core</code>, <code>babel-helper-module-transforms</code>, <code>babel-parser</code>, <code>babel-plugin-proposal-export-namespace-from</code>, <code>babel-plugin-syntax-module-string-names</code>, <code>babel-plugin-transform-modules-amd</code>, <code>babel-plugin-transform-modules-commonjs</code>, <code>babel-plugin-transform-modules-systemjs</code>, <code>babel-plugin-transform-modules-umd</code>, <code>babel-types</code>
<ul>
<li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12091">#12091</a> String import/export specifier (<a href="https://github.com/JLHwung">JLHwung</a>)</li>
</ul>
</li>
<li><code>babel-core</code>
<ul>
<li><a href="https://github-redirect.dependabot.com/babel/babel/pull/11907">#11907</a> Return a list of files that were read from loadPartialConfig (<a href="https://github.com/devongovett">devongovett</a>)</li>
</ul>
</li>
</ul>
<h4>🐛 Bug Fix</h4>
<ul>
<li><code>babel-parser</code>
<ul>
<li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12167">#12167</a> [ts] Add <code>asserts: false</code> to <code>TSTypePredicate</code> node (<a href="https://github.com/sosukesuzuki">sosukesuzuki</a>)</li>
<li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12161">#12161</a> Move check for TSTypeCastExpression to catch another case (<a href="https://github.com/existentialism">existentialism</a>)</li>
</ul>
</li>
</ul>

</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="7f4b83833f"><code>7f4b838</code></a> v7.12.1</li>
<li><a href="9018716905"><code>9018716</code></a> Allow importing <code>babel/runtime/package</code> (<a href="https://github.com/babel/babel/tree/HEAD/packages/babel-runtime/issues/12184">#12184</a>)</li>
<li><a href="6cb0056519"><code>6cb0056</code></a> Remove unused dependencies and devDependencies (<a href="https://github.com/babel/babel/tree/HEAD/packages/babel-runtime/issues/12175">#12175</a>)</li>
<li><a href="726154c78e"><code>726154c</code></a> v7.12.0</li>
<li><a href="4e66b8eb6b"><code>4e66b8e</code></a> Specify runtime exports (<a href="https://github.com/babel/babel/tree/HEAD/packages/babel-runtime/issues/10853">#10853</a>)</li>
<li><a href="3fad7eab9b"><code>3fad7ea</code></a> Use Yarn 2 (<a href="https://github.com/babel/babel/tree/HEAD/packages/babel-runtime/issues/11962">#11962</a>)</li>
<li>See full diff in <a href="https://github.com/babel/babel/commits/v7.12.1/packages/babel-runtime">compare view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@babel/runtime&package-manager=npm_and_yarn&previous-version=7.11.2&new-version=7.12.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/configuring-github-dependabot-security-updates)

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/1601

Reviewed By: passy

Differential Revision: D24392099

Pulled By: nikoant

fbshipit-source-id: 0af9d08b581afa6ba82ca5e6c3b9fe796d0398f0
2020-10-19 09:58:24 -07:00
Paco Estevez Garcia
678e12974d Add UI for timeline
Summary:
Add a GUI for the timeline of a Component based off MarkerTimeline.

It enables selecting points on the timeline, which will display their properties (arbitrary KVS). A button allows the user to select the current point of the timeline for the tree. This triggers unselection of the tree as per D24254002.

Solving re-selection isn't trivial, which is why the tree collapses on redraw too, and I believe we can live with this UX for this v1.

Reviewed By: astreet

Differential Revision: D23865369

fbshipit-source-id: 026562e71aa04b4e5e1e7cf1392d8ef140cdf43c
2020-10-19 06:01:14 -07:00
Paco Estevez Garcia
e9dc645423 Add Android support for Timeline detail view
Summary:
This diff adds the Java classes that serialize to the data expected by the new timeline widget. See D23865369 for the JS counterpart.

Currently the Flipper plugin uses `toString` to get the wire values. I'm not feeling like using a json library or dealing with JSONObject's nonsense, so these are rolled manually for now.

Reviewed By: astreet

Differential Revision: D24254377

fbshipit-source-id: b2fc00400c40b47ac29c9b83c0b66621c3677974
2020-10-19 06:01:14 -07:00
Michel Weststrate
0f9e97e55c Add troubleshooting guide for yoga module errors
Summary: Tried to sum up all solutions mentioned in https://github.com/facebook/react-native/issues/28503 for this recurring problem. The most common problem being simply opening the wrong file in XCode. From experience I can tell this is not obvious for iOS noobs like me :-P.

Reviewed By: passy

Differential Revision: D24359426

fbshipit-source-id: bb4d4951ac287ed2b09203e5414f62628a3feeb0
2020-10-16 04:10:33 -07:00
Michel Weststrate
99757622a5 Tiny Regex improvements
Summary: Recreation of D22118786, which was so old rebasing died on some lacking meta data. Lands https://github.com/facebook/flipper/pull/1256

Reviewed By: passy

Differential Revision: D24331424

fbshipit-source-id: 65fc5d8bf0242d4266e269716a319d71ce2e2826
2020-10-15 09:23:35 -07:00
Michel Weststrate
6b7b1fab5c Fix content encoding issues
Summary:
Changelog: [Network] Non-binary request are not properly utf-8 decoded on both iOS and Android, both when gzipped and when not gzipped

This diff fixes a long standing / ping-pong issue regarding network decoding differences between
* iOS vs Android
* binary vs utf-8
* gzipped vs uncompressed

The changes aren't too big, but the underlying investigating is :)

The primary contribution to this diff is:

First, adding test cases for know problematic cases. This is done by grabbing the messages that are send from the flipper client to flipper using the flipper messages plugin. This is the base64 data that is stored in the `.txt` files. Beyond that, for all tests public endpoints are used, so that we can both get a hold of the raw original files, and how we expect them to be displayed in flipper.

For testing a simple RN app was build, with a button that fires a bunch requests. The first 3 are captured in unit tests, the last one is not idempotent, but a case reported in #1466, so just left it there as manual verification.

```
const fetchData = async () => {
  await fetch(
    'https://raw.githubusercontent.com/SangKa/MobX-Docs-CN/master/docs/donating.md',
    {
      headers: {
        'Accept-Encoding': 'identity', // signals that we don't want gzip
      },
    },
  );
  await fetch('https://reactnative.dev/img/tiny_logo.png?x=' + Math.random());
  await fetch(
    'https://raw.githubusercontent.com/SangKa/MobX-Docs-CN/master/docs/donating.md',
  );
  await fetch(
    'https://ex.ke.com/sdk/recommend/html/100001314?hdicCityId=110000&paramMap[source]=&id=100001314&mediumId=100000037&elementId=&resblockId=1111027381003&templateConfig=%5Bobject%20Object%5D&fbExpoId=346620976471638017&fbQueryId=&required400=true&unique=1111027381003&parentSceneId=',
  );
};
```

The second contribution of this diff is that it doesn't use weird URLencoder hacks to convert base64 to utf8, but rather a proper library. The problem with our original solution, using `atob` is that it converts to ASCII, not to utf-8, which is the source of the original bugs. See for more background on this: https://www.npmjs.com/package/js-base64#decode-vs-atob-and-encode-vs-btoa-

Solves:
https://github.com/facebook/flipper/issues/1466
https://github.com/facebook/flipper/pull/1541
https://github.com/facebook/flipper/issues/1458

Supersedes D23837750

Future work: we don't inspect the `content-type=xxx;charset` header yet, which we should do for less common encodings, to make sure that they get displayed correctly as well

Future work: in feature like copy data and curl, we always call decode body, without check if we are actually dealing with non-binary data. Probably it is better to keep binary data in base64, rather than decoding it, as that will assume the data is an utf-8 string, which might fail.

An assumption in these changes is that binary data is never gzipped, which is generally correct; gzip is not applied by webserver to things like images, as it would increase, not decrease their size, and waste a lot of computation power.

Reviewed By: cekkaewnumchai

Differential Revision: D23403095

fbshipit-source-id: 5099cc4a7503f0f63bd10585dc6590ba893f3dde
2020-10-14 06:23:27 -07:00
Anton Nikolaev
5c82b9d860 Update docusaurus plugin for Static Docs projects
Summary: Plugin update is required to fix hit counter and auto-redirect from public site on Chrome 85+. It will also enable auto-redirect from staticdocs.thefacebook.com to internalfb.com/intern/staticdocs to ensure intern sidebar is visible when documentation is browsed internally.

Reviewed By: dkgi

Differential Revision: D24281980

fbshipit-source-id: 2614b4228d2df164981cee437952058684575a23
2020-10-14 04:46:34 -07:00
Noa Leibman
a44be7e29a Testing for Zero-Ration flipper plugin
Summary: These tests are testing the logic of building the main components in Actions tab and Sagas tab.

Reviewed By: zaxy78

Differential Revision: D24078307

fbshipit-source-id: 2929832e18f4ccbf2cf46e94c8ef08f4f947cc85
2020-10-14 03:46:49 -07:00
Anna Murawska
fdde2761ef Migrate Network plugin to Sandy (#1583)
Summary:
Pull Request resolved: https://github.com/facebook/flipper/pull/1583

Migrate Network plugin to Sandy

Reviewed By: mweststrate

Differential Revision: D24108772

fbshipit-source-id: e889b9f6b00398cd5f98cf15660b42b1d5496cea
2020-10-14 01:48:55 -07:00
dependabot[bot]
5488dcf358 Bump console-feed from 3.1.0 to 3.1.8 in /desktop (#1596)
Summary:
Bumps [console-feed](https://github.com/samdenty99/console-feed) from 3.1.0 to 3.1.8.
<details>
<summary>Commits</summary>
<ul>
<li><a href="637125cb86"><code>637125c</code></a> v3.1.8</li>
<li><a href="a393bad19c"><code>a393bad</code></a> Big performance improvement (<a href="https://github-redirect.dependabot.com/samdenty99/console-feed/issues/56">https://github.com/facebook/flipper/issues/56</a>)</li>
<li><a href="f32b62d72f"><code>f32b62d</code></a> fix: empty logs grouping (<a href="https://github-redirect.dependabot.com/samdenty99/console-feed/issues/60">https://github.com/facebook/flipper/issues/60</a>)</li>
<li><a href="07a720b795"><code>07a720b</code></a> v3.1.7</li>
<li><a href="3ba0e2facd"><code>3ba0e2f</code></a> feat: display caught errors on properties</li>
<li><a href="e447954462"><code>e447954</code></a> Fixing the regeneratorRuntime error and React.memo error (<a href="https://github-redirect.dependabot.com/samdenty99/console-feed/issues/54">https://github.com/facebook/flipper/issues/54</a>)</li>
<li><a href="2fca873a16"><code>2fca873</code></a> update README.md</li>
<li>See full diff in <a href="https://github.com/samdenty99/console-feed/compare/v3.1.0...v3.1.8">compare view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=console-feed&package-manager=npm_and_yarn&previous-version=3.1.0&new-version=3.1.8)](https://docs.github.com/en/github/managing-security-vulnerabilities/configuring-github-dependabot-security-updates)

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/1596

Reviewed By: mweststrate

Differential Revision: D24275958

Pulled By: nikoant

fbshipit-source-id: 8e247a297e9cffc1c8158f1bc275fde252bbaacd
2020-10-13 08:02:53 -07:00
dependabot[bot]
27a8c57a4e Bump react-native-flipper from 0.60.0 to 0.62.0 in /react-native/ReactNativeFlipperExample (#1595)
Summary:
Bumps [react-native-flipper](https://github.com/facebook/flipper) from 0.60.0 to 0.62.0.
<details>
<summary>Commits</summary>
<ul>
<li><a href="ca271dd7c3"><code>ca271dd</code></a> Flipper Release: v0.62.0</li>
<li><a href="eafc5b220c"><code>eafc5b2</code></a> Disable asar to fix physical ios devices</li>
<li><a href="49e3e1ddfa"><code>49e3e1d</code></a> Rename the plugin identifier</li>
<li><a href="8c5c38d9fc"><code>8c5c38d</code></a> Log setData events from layout inspector</li>
<li><a href="bb3fd8c992"><code>bb3fd8c</code></a> Bump types/node from 13.13.0 to 14.11.5 in /desktop (<a href="https://github-redirect.dependabot.com/facebook/flipper/issues/1575">https://github.com/facebook/flipper/issues/1575</a>)</li>
<li><a href="6dad27c221"><code>6dad27c</code></a> Bump react-native from 0.62.2 to 0.63.3 in /react-native/react-native-flipper...</li>
<li><a href="3e0537f000"><code>3e0537f</code></a> Bump types/react from 16.9.17 to 16.9.51 in /desktop (<a href="https://github-redirect.dependabot.com/facebook/flipper/issues/1582">https://github.com/facebook/flipper/issues/1582</a>)</li>
<li><a href="c474880413"><code>c474880</code></a> Bump deps in ReactNativeFlipperExample</li>
<li><a href="3ba8bbf03c"><code>3ba8bbf</code></a> Bump dependencies (attempt 2)</li>
<li><a href="8b111e48e6"><code>8b111e4</code></a> Bump dependencies in flipper-js-client-sdk</li>
<li>Additional commits viewable in <a href="https://github.com/facebook/flipper/compare/v0.60.0...v0.62.0">compare view</a></li>
</ul>
</details>
<br />

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

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/1595

Reviewed By: passy

Differential Revision: D24275723

Pulled By: nikoant

fbshipit-source-id: 31764a9b70ffdb463f1d25024cb6eadc7aca564a
2020-10-13 04:44:33 -07:00
dependabot[bot]
b1755ee85b Bump @types/babel__traverse from 7.0.13 to 7.0.15 in /desktop (#1589)
Summary:
Bumps [types/babel__traverse](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/babel__traverse) from 7.0.13 to 7.0.15.
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a href="https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/babel__traverse">compare view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@types/babel__traverse&package-manager=npm_and_yarn&previous-version=7.0.13&new-version=7.0.15)](https://docs.github.com/en/github/managing-security-vulnerabilities/configuring-github-dependabot-security-updates)

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/1589

Reviewed By: mweststrate

Differential Revision: D24254928

Pulled By: nikoant

fbshipit-source-id: 123b7dad283a55b7cf0889920a238bd7deccfada
2020-10-13 03:42:50 -07:00
dependabot[bot]
6c0229cd53 Bump eslint-plugin-react from 7.21.3 to 7.21.4 in /flipper-js-client-sdk (#1584)
Summary:
Bumps [eslint-plugin-react](https://github.com/yannickcr/eslint-plugin-react) from 7.21.3 to 7.21.4.
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/yannickcr/eslint-plugin-react/blob/master/CHANGELOG.md">eslint-plugin-react's changelog</a>.</em></p>
<blockquote>
<h2><a href="https://github.com/yannickcr/eslint-plugin-react/compare/v7.21.3...v7.21.4">7.21.4</a> - 2020.10.09</h2>
<h3>Fixed</h3>
<ul>
<li>[<code>no-unused-prop-types</code>]: Silence false positive on <code>never</code> type in TS (<a href="https://github-redirect.dependabot.com/yannickcr/eslint-plugin-react/issues/2815">#2815</a>[] <a href="https://github.com/pcorpet">pcorpet</a>)</li>
<li>[<code>jsx-indent-props</code>]: Apply indentation when operator is used in front of the upper line (<a href="https://github-redirect.dependabot.com/yannickcr/eslint-plugin-react/issues/2808">#2808</a>[], <a href="https://github-redirect.dependabot.com/yannickcr/eslint-plugin-react/issues/2820">#2820</a>[] <a href="https://github.com/Moong0122">Moong0122</a>)</li>
<li>[Deps] update <code>jsx-ast-utils</code> (<a href="https://github-redirect.dependabot.com/yannickcr/eslint-plugin-react/issues/2822">#2822</a>[] [jsx-eslint/jsx-ast-utils#102][] <a href="https://github.com/ljharb">ljharb</a>)</li>
</ul>
<p><a href="https://github-redirect.dependabot.com/yannickcr/eslint-plugin-react/issues/2822">#2822</a>: <a href="https://github-redirect.dependabot.com/yannickcr/eslint-plugin-react/issues/2822">yannickcr/eslint-plugin-react#2822</a>
<a href="https://github-redirect.dependabot.com/yannickcr/eslint-plugin-react/issues/2820">#2820</a>: <a href="https://github-redirect.dependabot.com/yannickcr/eslint-plugin-react/pull/2820">yannickcr/eslint-plugin-react#2820</a>
<a href="https://github-redirect.dependabot.com/yannickcr/eslint-plugin-react/issues/2815">#2815</a>: <a href="https://github-redirect.dependabot.com/yannickcr/eslint-plugin-react/pull/2815">yannickcr/eslint-plugin-react#2815</a>
<a href="https://github-redirect.dependabot.com/yannickcr/eslint-plugin-react/issues/2808">#2808</a>: <a href="https://github-redirect.dependabot.com/yannickcr/eslint-plugin-react/pull/2808">yannickcr/eslint-plugin-react#2808</a>
[jsx-eslint/jsx-ast-utils#102]: <a href="https://github-redirect.dependabot.com/jsx-eslint/jsx-ast-utils/pull/102">jsx-eslint/jsx-ast-utils#102</a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="632639ba26"><code>632639b</code></a> Update CHANGELOG and bump version</li>
<li><a href="802cdb80be"><code>802cdb8</code></a> [readme] clear up Fragment docs</li>
<li><a href="896fe4b7ec"><code>896fe4b</code></a> [Tests] <code>jsx-indent-props</code> : Apply indentation when used expression</li>
<li><a href="b7b023f1e2"><code>b7b023f</code></a> [Deps] update <code>jsx-ast-utils</code></li>
<li><a href="959fb23365"><code>959fb23</code></a> [Fix] <code>jsx-indent-props</code>: Apply indentation when operator is used in front of...</li>
<li><a href="f84dc8b208"><code>f84dc8b</code></a> [Refactor] cleanup <code>no-mixed-operators</code> warnings</li>
<li><a href="71a0e8f43e"><code>71a0e8f</code></a> [Fix] <code>no-unused-prop-types</code>: Silence false positive on <code>never</code> type in TS</li>
<li>See full diff in <a href="https://github.com/yannickcr/eslint-plugin-react/compare/v7.21.3...v7.21.4">compare view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=eslint-plugin-react&package-manager=npm_and_yarn&previous-version=7.21.3&new-version=7.21.4)](https://docs.github.com/en/github/managing-security-vulnerabilities/configuring-github-dependabot-security-updates)

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/1584

Reviewed By: mweststrate

Differential Revision: D24249930

Pulled By: nikoant

fbshipit-source-id: 42f9bb2c0ea8fb34486836cb76abf7e10a10cb69
2020-10-13 03:09:15 -07:00
Michel Weststrate
ffbccf2331 Fixed more missing namespaces
Summary: See the previous diffs, we pollute the global namespace here and there. Found some more missing namespace wrappers. Tried to wrap `FlipperStep` as well, which passed tests but gave weird linking errors in Wilde, so reverted that part (the name is not very ambiguous anyway)

Reviewed By: cekkaewnumchai

Differential Revision: D24193109

fbshipit-source-id: 111c479e421fdb321e898f948586229f30a7d777
2020-10-13 03:06:38 -07:00
Marco Marinangeli
05f4c0f54f Fix ConnectionContextStore namespaces (#1581)
Summary:
It should fix this [issue](https://github.com/facebook/flipper/issues/1565)

I'm not a C++ expert. Any kind of comment or advice is very appreciated.

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

Reviewed By: passy

Differential Revision: D24189366

Pulled By: mweststrate

fbshipit-source-id: cc93fe36036d557b63c9c1baa62ed9bcc14c08ab
2020-10-13 03:06:38 -07:00
dependabot[bot]
d0828f6837 Bump live-plugin-manager from 0.14.1 to 0.15.1 in /desktop (#1588)
Summary:
Bumps [live-plugin-manager](https://github.com/davideicardi/live-plugin-manager) from 0.14.1 to 0.15.1.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/davideicardi/live-plugin-manager/releases">live-plugin-manager's releases</a>.</em></p>
<blockquote>
<h2>v0.15.1</h2>
<ul>
<li>fix <code>console</code> object not correctly copied inside plugin's <code>global</code> object</li>
</ul>
<h2>v0.15.0</h2>
<ul>
<li>Moved typescript output to <code>dist</code> to avoid compilation issue. <a href="https://github-redirect.dependabot.com/davideicardi/live-plugin-manager/issues/30">https://github.com/facebook/flipper/issues/30</a> (Thanks <a href="https://github.com/fketchakeu">fketchakeu</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="881a95c8a0"><code>881a95c</code></a> 0.15.1</li>
<li><a href="b30cf37ffe"><code>b30cf37</code></a> fix console global object in plugin</li>
<li><a href="6c74ecd87e"><code>6c74ecd</code></a> 0.15.0</li>
<li><a href="f5dd7c4163"><code>f5dd7c4</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/davideicardi/live-plugin-manager/issues/30">https://github.com/facebook/flipper/issues/30</a> from goldenbrick/fketchakeu/ts-jest</li>
<li><a href="dc91492808"><code>dc91492</code></a> Fix compatibility issues with JEST and similar frameworks.</li>
<li><a href="1fa4387035"><code>1fa4387</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/davideicardi/live-plugin-manager/issues/27">https://github.com/facebook/flipper/issues/27</a> from goldenbrick/fketchakeu/fix-ts-errors</li>
<li><a href="cbd9def319"><code>cbd9def</code></a> Fix 'variable declared but its value is never read' Typescript errors</li>
<li><a href="2d28968185"><code>2d28968</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/davideicardi/live-plugin-manager/issues/20">https://github.com/facebook/flipper/issues/20</a> from xxczaki/patch-1</li>
<li><a href="445a284c04"><code>445a284</code></a> Use markdown comments to enable syntax highlighting</li>
<li>See full diff in <a href="https://github.com/davideicardi/live-plugin-manager/compare/v0.14.1...v0.15.1">compare view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=live-plugin-manager&package-manager=npm_and_yarn&previous-version=0.14.1&new-version=0.15.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/configuring-github-dependabot-security-updates)

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/1588

Reviewed By: mweststrate

Differential Revision: D24250130

Pulled By: nikoant

fbshipit-source-id: d4c6431f6fe1c01fb523e845020f3257d3db7df8
2020-10-13 03:04:11 -07:00
dependabot[bot]
9a3a32005a Bump console-feed from 3.1.0 to 3.1.7 in /desktop (#1587)
Summary:
Bumps [console-feed](https://github.com/samdenty99/console-feed) from 3.1.0 to 3.1.7.
<details>
<summary>Commits</summary>
<ul>
<li><a href="07a720b795"><code>07a720b</code></a> v3.1.7</li>
<li><a href="3ba0e2facd"><code>3ba0e2f</code></a> feat: display caught errors on properties</li>
<li><a href="e447954462"><code>e447954</code></a> Fixing the regeneratorRuntime error and React.memo error (<a href="https://github-redirect.dependabot.com/samdenty99/console-feed/issues/54">https://github.com/facebook/flipper/issues/54</a>)</li>
<li><a href="2fca873a16"><code>2fca873</code></a> update README.md</li>
<li>See full diff in <a href="https://github.com/samdenty99/console-feed/compare/v3.1.0...v3.1.7">compare view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=console-feed&package-manager=npm_and_yarn&previous-version=3.1.0&new-version=3.1.7)](https://docs.github.com/en/github/managing-security-vulnerabilities/configuring-github-dependabot-security-updates)

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/1587

Reviewed By: mweststrate

Differential Revision: D24250090

Pulled By: nikoant

fbshipit-source-id: 007908667af7f440787af371ae83a84f7a5488ff
2020-10-13 03:01:56 -07:00
dependabot[bot]
4c1bcf1e34 Bump jest from 26.5.2 to 26.5.3 in /react-native/ReactNativeFlipperExample (#1586)
Summary:
Bumps [jest](https://github.com/facebook/jest) from 26.5.2 to 26.5.3.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/facebook/jest/releases">jest's releases</a>.</em></p>
<blockquote>
<h2>26.5.3</h2>
<h3>Features</h3>
<ul>
<li><code>[jest-runtime]</code> add support for dynamic <code>import()</code> from CommonJS (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/10620">#10620</a>)</li>
</ul>
<h3>Fixes</h3>
<ul>
<li><code>[jest-runner, jest-runtime]</code> <code>require.main</code> should not be <code>undefined</code> with <code>createRequire()</code> (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/10610">#10610</a>)</li>
<li><code>[jest-runtime]</code> add missing <code>module.path</code> property (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/10615">#10615</a>)</li>
<li><code>[jest-runtime]</code> Add <code>mainModule</code> instance variable to runtime (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/10621">#10621</a>)</li>
<li><code>[jest-runtime]</code> Evaluate Node core modules on dynamic <code>import()</code> (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/10622">#10622</a>)</li>
<li><code>[jest-validate]</code> Show suggestion only when unrecognized cli param is longer than 1 character (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/10604">#10604</a>)</li>
<li><code>[jest-validate]</code> Validate <code>testURL</code> as CLI option (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/10595">#10595</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/facebook/jest/blob/master/CHANGELOG.md">jest's changelog</a>.</em></p>
<blockquote>
<h2>26.5.3</h2>
<h3>Features</h3>
<ul>
<li><code>[jest-runtime]</code> add support for dynamic <code>import()</code> from CommonJS (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/10620">#10620</a>)</li>
</ul>
<h3>Fixes</h3>
<ul>
<li><code>[jest-runner, jest-runtime]</code> <code>require.main</code> should not be <code>undefined</code> with <code>createRequire()</code> (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/10610">#10610</a>)</li>
<li><code>[jest-runtime]</code> add missing <code>module.path</code> property (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/10615">#10615</a>)</li>
<li><code>[jest-runtime]</code> Add <code>mainModule</code> instance variable to runtime (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/10621">#10621</a>)</li>
<li><code>[jest-runtime]</code> Evaluate Node core modules on dynamic <code>import()</code> (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/10622">#10622</a>)</li>
<li><code>[jest-validate]</code> Show suggestion only when unrecognized cli param is longer than 1 character (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/10604">#10604</a>)</li>
<li><code>[jest-validate]</code> Validate <code>testURL</code> as CLI option (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/10595">#10595</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="71152afbbd"><code>71152af</code></a> v26.5.3</li>
<li><a href="1746240664"><code>1746240</code></a> chore: update changelog for release</li>
<li><a href="e0f8c1f82b"><code>e0f8c1f</code></a> fix(esm): evaluate node core modules on dynamic import (<a href="https://github-redirect.dependabot.com/facebook/jest/issues/10622">#10622</a>)</li>
<li><a href="c41420f3f2"><code>c41420f</code></a> fix: add <code>require.main</code> when using <code>isolateModules</code> (<a href="https://github-redirect.dependabot.com/facebook/jest/issues/10621">#10621</a>)</li>
<li><a href="5c221d86f5"><code>5c221d8</code></a> feat: add support for dynamic imports in CJS (<a href="https://github-redirect.dependabot.com/facebook/jest/issues/10620">#10620</a>)</li>
<li><a href="98776b705d"><code>98776b7</code></a> chore: bump deps (<a href="https://github-redirect.dependabot.com/facebook/jest/issues/10618">#10618</a>)</li>
<li><a href="6f85827a4c"><code>6f85827</code></a> fix: add missing <code>module.path</code> field to modules (<a href="https://github-redirect.dependabot.com/facebook/jest/issues/10615">#10615</a>)</li>
<li><a href="acd7c83c83"><code>acd7c83</code></a> fix: <code>require.main</code> undefined with <code>createRequire()</code> (<a href="https://github-redirect.dependabot.com/facebook/jest/issues/10610">#10610</a>)</li>
<li><a href="c80911aaa6"><code>c80911a</code></a> chore: add info about ES modules to docs (<a href="https://github-redirect.dependabot.com/facebook/jest/issues/10611">#10611</a>)</li>
<li><a href="bb45b8c2c3"><code>bb45b8c</code></a> chore: bump v8-to-istanbul (<a href="https://github-redirect.dependabot.com/facebook/jest/issues/10606">#10606</a>)</li>
<li>Additional commits viewable in <a href="https://github.com/facebook/jest/compare/v26.5.2...v26.5.3">compare view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=jest&package-manager=npm_and_yarn&previous-version=26.5.2&new-version=26.5.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/configuring-github-dependabot-security-updates)

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/1586

Reviewed By: mweststrate

Differential Revision: D24250120

Pulled By: nikoant

fbshipit-source-id: 6a0797c88a4bb147fbc551d379ee38cbd230d4f9
2020-10-13 02:56:45 -07:00