Commit Graph

4150 Commits

Author SHA1 Message Date
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
dependabot[bot]
6cc9783612 Bump archiver from 5.0.0 to 5.0.2 in /desktop (#1591)
Summary:
Bumps [archiver](https://github.com/archiverjs/node-archiver) from 5.0.0 to 5.0.2.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/archiverjs/node-archiver/releases">archiver's releases</a>.</em></p>
<blockquote>
<h2>5.0.2</h2>
<h2>Maintenance</h2>
<ul>
<li>Force bump tar-stream from 2.1.2 to 2.1.4 (<a href="https://github-redirect.dependabot.com/archiverjs/node-archiver/issues/450">https://github.com/facebook/flipper/issues/450</a>)</li>
</ul>
<h2>5.0.1</h2>
<h2>Maintenance</h2>
<ul>
<li>Bump tar-stream from 2.1.3 to 2.1.4 (<a href="https://github-redirect.dependabot.com/archiverjs/node-archiver/issues/448">https://github.com/facebook/flipper/issues/448</a>)</li>
<li>Update docs (<a href="https://github-redirect.dependabot.com/archiverjs/node-archiver/issues/441">https://github.com/facebook/flipper/issues/441</a>)</li>
<li>Bump mocha from 8.1.1 to 8.1.3 (<a href="https://github-redirect.dependabot.com/archiverjs/node-archiver/issues/444">https://github.com/facebook/flipper/issues/444</a>)</li>
<li>Bump tar from 6.0.2 to 6.0.5 (<a href="https://github-redirect.dependabot.com/archiverjs/node-archiver/issues/439">https://github.com/facebook/flipper/issues/439</a>)</li>
<li>Bump mocha from 8.1.0 to 8.1.1 (<a href="https://github-redirect.dependabot.com/archiverjs/node-archiver/issues/437">https://github.com/facebook/flipper/issues/437</a>)</li>
<li>Bump actions/checkout from v2.3.1 to v2.3.2 (<a href="https://github-redirect.dependabot.com/archiverjs/node-archiver/issues/438">https://github.com/facebook/flipper/issues/438</a>)</li>
<li>Bump mocha from 8.0.1 to 8.1.0 (<a href="https://github-redirect.dependabot.com/archiverjs/node-archiver/issues/436">https://github.com/facebook/flipper/issues/436</a>)</li>
<li>Bump actions/setup-node from v2.1.0 to v2.1.1 (<a href="https://github-redirect.dependabot.com/archiverjs/node-archiver/issues/432">https://github.com/facebook/flipper/issues/432</a>)</li>
<li>Bump jsdoc from 3.6.4 to 3.6.5 (<a href="https://github-redirect.dependabot.com/archiverjs/node-archiver/issues/434">https://github.com/facebook/flipper/issues/434</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="e34d0a39dd"><code>e34d0a3</code></a> bump version for release</li>
<li><a href="5c1ba713df"><code>5c1ba71</code></a> Force bump tar-stream from 2.1.2 to 2.1.4 (<a href="https://github-redirect.dependabot.com/archiverjs/node-archiver/issues/450">https://github.com/facebook/flipper/issues/450</a>)</li>
<li><a href="cef1ac966e"><code>cef1ac9</code></a> bump version for release</li>
<li><a href="34375b574c"><code>34375b5</code></a> Update release-drafter.yml</li>
<li><a href="e3ec39bacb"><code>e3ec39b</code></a> Bump tar-stream from 2.1.3 to 2.1.4 (<a href="https://github-redirect.dependabot.com/archiverjs/node-archiver/issues/448">https://github.com/facebook/flipper/issues/448</a>)</li>
<li><a href="209b2f6fe5"><code>209b2f6</code></a> Update dependabot.yml</li>
<li><a href="cb02bf1963"><code>cb02bf1</code></a> Update docs (<a href="https://github-redirect.dependabot.com/archiverjs/node-archiver/issues/441">https://github.com/facebook/flipper/issues/441</a>)</li>
<li><a href="4eba7ae0fd"><code>4eba7ae</code></a> Bump mocha from 8.1.1 to 8.1.3 (<a href="https://github-redirect.dependabot.com/archiverjs/node-archiver/issues/444">https://github.com/facebook/flipper/issues/444</a>)</li>
<li><a href="ebe5593f9d"><code>ebe5593</code></a> Update release-drafter.yml</li>
<li><a href="b7328ba42d"><code>b7328ba</code></a> Bump tar from 6.0.2 to 6.0.5 (<a href="https://github-redirect.dependabot.com/archiverjs/node-archiver/issues/439">https://github.com/facebook/flipper/issues/439</a>)</li>
<li>Additional commits viewable in <a href="https://github.com/archiverjs/node-archiver/compare/5.0.0...5.0.2">compare view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=archiver&package-manager=npm_and_yarn&previous-version=5.0.0&new-version=5.0.2)](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/1591

Reviewed By: mweststrate

Differential Revision: D24250411

Pulled By: nikoant

fbshipit-source-id: e94e4ea3a002da2e8f83aaa6ff5d9cc07efb3896
2020-10-13 02:56:45 -07:00
dependabot[bot]
703a6e17ae Bump inquirer from 7.1.0 to 7.3.3 in /desktop (#1592)
Summary:
Bumps [inquirer](https://github.com/SBoudrias/Inquirer.js) from 7.1.0 to 7.3.3.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/SBoudrias/Inquirer.js/releases">inquirer's releases</a>.</em></p>
<blockquote>
<h2>inquirer@7.3.3</h2>
<ul>
<li>Fix to release the readline on errors</li>
<li>Security patch (lodash)</li>
</ul>
<h2>inquirer@7.3.2</h2>
<p>Fix the <code>loop: false</code> option in the <code>checkbox</code> prompt.</p>
<h2>inquirer@7.3.1</h2>
<ul>
<li>Fix the <code>loop: false</code> option in the <code>list</code> prompt.</li>
</ul>
<h2>inquirer@7.3.0</h2>
<ul>
<li>New option <code>loop</code> (boolean) for list type prompts. This prevents the list from looping when reaching the top or bottom of the selection.</li>
<li>Bug fix: multi line list type prompts</li>
<li>Core: Bumped dependencies</li>
</ul>
<h2>Inquirer v7.2.0</h2>
<h3>Enhancement</h3>
<ul>
<li>039a55c7ec04d95887bdeb9b164cc634f26beb57 <a href="https://github-redirect.dependabot.com/SBoudrias/Inquirer.js/issues/923">https://github.com/facebook/flipper/issues/923</a> Only import used lodash methods. (<a href="https://github.com/merceyz">merceyz</a>)</li>
</ul>
<h3>Bug Fix</h3>
<ul>
<li>a1171d25cdb48c147b405e3173828a8de2dc735b <a href="https://github-redirect.dependabot.com/SBoudrias/Inquirer.js/issues/918">https://github.com/facebook/flipper/issues/918</a> Fix <code>inquirer/confirm</code> formatted output value. (<a href="https://github.com/rbardini">rbardini</a>)</li>
<li>1bf6413b71e94b52a68ba9a4d331ea67453e3390 Fix <code>engines</code> field for Node.js 8. (<a href="https://github.com/LitoMore">LitoMore</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="808d553853"><code>808d553</code></a> Publish</li>
<li><a href="833a4cde10"><code>833a4cd</code></a> Fix: cleanup when the prompt fails. (<a href="https://github-redirect.dependabot.com/SBoudrias/Inquirer.js/issues/947">https://github.com/facebook/flipper/issues/947</a>)</li>
<li><a href="96db6648dc"><code>96db664</code></a> Update index.js (<a href="https://github-redirect.dependabot.com/SBoudrias/Inquirer.js/issues/948">https://github.com/facebook/flipper/issues/948</a>)</li>
<li><a href="41a506b117"><code>41a506b</code></a> chore(deps): bump lodash to 4.17.19 (<a href="https://github-redirect.dependabot.com/SBoudrias/Inquirer.js/issues/946">https://github.com/facebook/flipper/issues/946</a>)</li>
<li><a href="5dd9fa6150"><code>5dd9fa6</code></a> Publish</li>
<li><a href="ffe393be56"><code>ffe393b</code></a> feat: add loop: false for checkbox type prompts (<a href="https://github-redirect.dependabot.com/SBoudrias/Inquirer.js/issues/945">https://github.com/facebook/flipper/issues/945</a>)</li>
<li><a href="dce97d8d78"><code>dce97d8</code></a> Publish</li>
<li><a href="cbdf405324"><code>cbdf405</code></a> Update yarn.lock</li>
<li><a href="132682ecfb"><code>132682e</code></a> fix: paginator works with loop:false (<a href="https://github-redirect.dependabot.com/SBoudrias/Inquirer.js/issues/939">https://github.com/facebook/flipper/issues/939</a>)</li>
<li><a href="e7b8306d09"><code>e7b8306</code></a> [Snyk] Security upgrade lodash from 4.17.15 to 4.17.16 (<a href="https://github-redirect.dependabot.com/SBoudrias/Inquirer.js/issues/943">https://github.com/facebook/flipper/issues/943</a>)</li>
<li>Additional commits viewable in <a href="https://github.com/SBoudrias/Inquirer.js/compare/inquirer@7.1.0...inquirer@7.3.3">compare view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=inquirer&package-manager=npm_and_yarn&previous-version=7.1.0&new-version=7.3.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/1592

Reviewed By: mweststrate

Differential Revision: D24254913

Pulled By: nikoant

fbshipit-source-id: 87b7d038cfa9187f027a1a92dfb333d81506fcd3
2020-10-13 02:53:20 -07:00
Anton Nikolaev
12dbfe9937 Upgrade docusaurus plugin
Summary: Upgrade docusaurus plugin

Reviewed By: mweststrate

Differential Revision: D24249617

fbshipit-source-id: d92e887b29b9eed43d9bae119fac2c6adbccbbaf
2020-10-13 02:47:48 -07:00
Anton Nikolaev
5ecd353416 Increase memory limit for build scripts (#1594)
Summary:
Pull Request resolved: https://github.com/facebook/flipper/pull/1594

Currently our github actions are failing with OOM, so I've increased heap to 4GB to fix that.

Reviewed By: passy

Differential Revision: D24253742

fbshipit-source-id: d0e87784c334b58a0b4240504814e677f6eeea91
2020-10-12 12:20:30 -07:00
Anton Nikolaev
604b1bf1da Upgrade to Electron 10.1.3
Summary:
It's only a patch bump to fix the security warning we're getting.
Hopefully shouldn't cause too much trouble apart from figuring out
if I got the caches right.

Reviewed By: cekkaewnumchai

Differential Revision: D24221149

fbshipit-source-id: 70dd5052677443eec28c9e03a60bf0f5e5a74cdb
2020-10-12 10:19:54 -07:00
Shuo Yang
f1baf3c1d8 WPM | Fix for missing SonarKit symbols (SKNamed, SKComponentLayoutDescriptor)
Summary:
This should fix build failures with prod config. The symbols should only be in internal builds and not the prod ones.

```
stderr: Undefined symbols for architecture arm64:
  "_OBJC_CLASS_$_SKNamed", referenced from:
  ...
  "_OBJC_CLASS_$_SKComponentLayoutDescriptor", referenced from:
  ...
```

Reviewed By: rzito

Differential Revision: D24250749

fbshipit-source-id: 68c3d066a76baf4b1646f27dac0fd081bcaff41b
2020-10-12 09:37:08 -07:00
GitHub
ccd961a347 Automated: Update Podfile.lock (#1593)
Summary:
This is an automated PR to update the Podfile.lock.
- Make sure that the Podfile.lock contains latest FlipperKit and Flipper pod versions.
- Also make sure that all the dependencies are updated to the latest one.
- This is auto-generated by [create-pull-request](https://github.com/peter-evans/create-pull-request)

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

Reviewed By: cekkaewnumchai

Differential Revision: D24253146

Pulled By: nikoant

fbshipit-source-id: 60a0878b27d2cbc65d0b530fbc48aca228c898ac
2020-10-12 09:26:10 -07:00
generatedunixname89002005306973
08360cf7e6 Flipper Snapshot Bump: v0.62.1-SNAPSHOT
Summary: Releasing snapshot version 0.62.1-SNAPSHOT

Reviewed By: nikoant

Differential Revision: D24248943

fbshipit-source-id: 36d6ea0b2ef5042aabcad0b775e2ab21bbed9122
2020-10-12 06:03:03 -07:00
generatedunixname89002005306973
ca271dd7c3 Flipper Release: v0.62.0
Summary: Releasing version 0.62.0

Reviewed By: nikoant

Differential Revision: D24248944

fbshipit-source-id: 05742031294f6a77c78c0bdccbdffe7d82427f05
2020-10-12 06:03:03 -07:00
Anton Nikolaev
eafc5b220c Disable asar to fix physical ios devices
Summary: Asar packing broke support for physical ios devices

Reviewed By: priteshrnandgaonkar, mweststrate

Differential Revision: D24248599

fbshipit-source-id: fda41970cfa4c8e98f5234cf0356eb2cc3288bcb
2020-10-12 03:27:13 -07:00
Pritesh Nandgaonkar
49e3e1ddfa Rename the plugin identifier
Summary:
This diff renames the plugin identifier of the NT State plugin to `flipper-plugin-bloks-state`.

WWW side changes are here D23991116
Distillery: D24136550

[NOTE]: LAND IT IN WEEKEND TO AVOID CLIENT AND SERVER IN AN UNSYNC STATE

Differential Revision: D23932149

fbshipit-source-id: 1d9d28f83581be48c218150fe2a5cff26e5d846e
2020-10-09 15:13:39 -07:00
Paco Estevez Garcia
8c5c38d9fc Log setData events from layout inspector
Summary: Add logging events for runtime changes, if a logger is set

Reviewed By: passy

Differential Revision: D24195046

fbshipit-source-id: b2d87dd1430c212a679c766e526d83d9958d7e52
2020-10-09 03:57:17 -07:00
dependabot[bot]
bb3fd8c992 Bump @types/node from 13.13.0 to 14.11.5 in /desktop (#1575)
Summary:
Bumps [types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 13.13.0 to 14.11.5.
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a href="https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node">compare view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@types/node&package-manager=npm_and_yarn&previous-version=13.13.0&new-version=14.11.5)](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/1575

Reviewed By: passy

Differential Revision: D24136281

Pulled By: mweststrate

fbshipit-source-id: 4d1011e27870891546430913ed6afc5d436828c4
2020-10-08 09:28:28 -07:00
dependabot[bot]
6dad27c221 Bump react-native from 0.62.2 to 0.63.3 in /react-native/react-native-flipper (#1569)
Summary:
allow-large-files

Bumps [react-native](https://github.com/facebook/react-native) from 0.62.2 to 0.63.3.
<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.3</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#v0633">changelog here</a>.</p>
<p>While in this patch release there's already a commit towards focusing compatibility with Xcode 12, if you are having troubles please refer to this issue <a href="https://github-redirect.dependabot.com/facebook/react-native/issues/29984">facebook/react-native#29984</a> and the workaround described there.</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/212">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>
<h2>v0.63.2</h2>
<p>This release fixes a few minor issues that were reported by the community. While we're working on changelog, you can view the list of commits <a href="https://github.com/facebook/react-native/commits/0.63-stable">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/203">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>
<h2>v0.63.1</h2>
<p>This release fixes a few minor issues that were reported by the community. While we're working on changelog, you can view the list of commits <a href="https://github.com/facebook/react-native/commits/0.63-stable">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/200">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>
<h2>v0.63.0</h2>
<p>0.63 stable is here {emoji:1f389}</p>
<p>Thanks to everyone who contributed and helped to get this together, everyone worked really hard and we hope you are as excited as we are �</p>
<p>Some of the major changes that this version brings:</p>
<ul>
<li>LogBox turned on by default</li>
<li><code>&lt;Pressable /&gt;</code> component</li>
</ul>

</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="7100756bb8"><code>7100756</code></a> [0.63.3] Bump version numbers</li>
<li><a href="8d8b61a695"><code>8d8b61a</code></a> Fix security issues with rnc cli by bumping version (<a href="https://github-redirect.dependabot.com/facebook/react-native/issues/29072">#29072</a>)</li>
<li><a href="09795971f8"><code>0979597</code></a> Do not override decoders to RCTImageLoader (<a href="https://github-redirect.dependabot.com/facebook/react-native/issues/29711">#29711</a>)</li>
<li><a href="e4ec71a1d9"><code>e4ec71a</code></a> Make React-Core compatible with Swift modules (<a href="https://github-redirect.dependabot.com/facebook/react-native/issues/29995">#29995</a>)</li>
<li><a href="ad6005f6bc"><code>ad6005f</code></a> Fix Xcode bundler in staging and release (<a href="https://github-redirect.dependabot.com/facebook/react-native/issues/29477">#29477</a>)</li>
<li><a href="66c8cd393c"><code>66c8cd3</code></a> Update Flipper (<a href="https://github-redirect.dependabot.com/facebook/react-native/issues/29787">#29787</a>)</li>
<li><a href="29e17754b3"><code>29e1775</code></a> Pressability: Remove Default Press Delay</li>
<li><a href="e62b57e525"><code>e62b57e</code></a> Fix Xiaomi TextInput crash in native</li>
<li><a href="c72ecdb906"><code>c72ecdb</code></a> Make flipper pods configurations configurable (<a href="https://github-redirect.dependabot.com/facebook/react-native/issues/29074">#29074</a>)</li>
<li><a href="73747e674c"><code>73747e6</code></a> Fix iOS Image.getSizeWithHeaders (<a href="https://github-redirect.dependabot.com/facebook/react-native/issues/29338">#29338</a>)</li>
<li>Additional commits viewable in <a href="https://github.com/facebook/react-native/compare/v0.62.2...v0.63.3">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.62.2&new-version=0.63.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/1569

Reviewed By: passy

Differential Revision: D24136266

Pulled By: mweststrate

fbshipit-source-id: 51a5e0f50f0654348c844ce6cfa7bb390bf08c55
2020-10-08 09:28:28 -07:00
dependabot[bot]
3e0537f000 Bump @types/react from 16.9.17 to 16.9.51 in /desktop (#1582)
Summary:
Bumps [types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) from 16.9.17 to 16.9.51.
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a href="https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react">compare view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@types/react&package-manager=npm_and_yarn&previous-version=16.9.17&new-version=16.9.51)](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/1582

Reviewed By: passy

Differential Revision: D24191008

Pulled By: mweststrate

fbshipit-source-id: be1152144127493994660f6c9166939d9184c790
2020-10-08 07:36:19 -07:00
Michel Weststrate
c474880413 Bump deps in ReactNativeFlipperExample
Summary: Dependabot bumping deps one by one create a shitload of PRs, so creating a bunch of diffs that bumps all deps per subproject, using `yarn upgrade-interactive`

Reviewed By: passy

Differential Revision: D24137583

fbshipit-source-id: 9517a9029489cb2cfa3d3d96d575778c620be34d
2020-10-08 05:27:16 -07:00
Michel Weststrate
3ba8bbf03c Bump dependencies (attempt 2)
Summary: In D24138822 I basically bumped all desktop deps. That was a bit too much as it affected our build infra and broke it. The problem wasn't easy to bisect so choose a smaller set of deps instead to update; everything transpile & lint related + a few well tested runtime deps.

Reviewed By: cekkaewnumchai

Differential Revision: D24161841

fbshipit-source-id: 67162efeccd05a344b229ce976102cfafe6d1099
2020-10-08 01:49:10 -07:00
Michel Weststrate
8b111e48e6 Bump dependencies in flipper-js-client-sdk
Summary: Dependabot bumping deps one by one create a shitload of PRs, so creating a bunch of diffs that bumps all deps per subproject, using `yarn upgrade-interactive`

Reviewed By: passy

Differential Revision: D24137398

fbshipit-source-id: 2a653a5a92742f8a063e529007949c26899f35e5
2020-10-08 01:39:16 -07:00
Paco Estevez Garcia
51293406d6 Move Litho Flipper Plugin to Litho
Summary:
The current ownership and release model prevents cleanly releasing new versions of the plugin while the code is split between two repos.

This diff moves the flipper-litho plugin to the Litho repository. You'll find new releases as `litho-editor-flipper` that'll be reexported via gradle's `api` to the old artifact.

Reviewed By: colriot

Differential Revision: D23962234

fbshipit-source-id: 7884423342904219ae9b41632c6df90cda870798
2020-10-07 15:44:33 -07:00
Paco Estevez Garcia
08fee986bd Bump litho version to 0.39.0
Summary: ez

Reviewed By: colriot

Differential Revision: D24162362

fbshipit-source-id: 2fa074319d74c546ebc6397a5a0b5c2178f49445
2020-10-07 15:44:33 -07:00
Dustin Shahidehpour
6a22d6dca9 Add docs to SKSubDesciptor
Summary: This tripped me up for a bit. Add some docs.

Reviewed By: Andrey-Mishanin

Differential Revision: D24160934

fbshipit-source-id: a36ac6b205a9edeeb0698f44476456583146907c
2020-10-07 15:44:33 -07:00
Dustin Shahidehpour
7711502413 Add ability to register additional attribute providers.
Summary:
We have some "internal-only" stuff we want to put in the attribute of a layout node.
This allows us to do so a way that keeps it out of open-source and avoid the clunky subclassing.

Reviewed By: adamjernst

Differential Revision: D24162047

fbshipit-source-id: 518ab9fbf0b4274076f5b0ae1b249e197563fa7f
2020-10-07 15:41:44 -07:00
Chaiwat Ekkaewnumchai
2b6bac4227 Add Flipper Doctor Component
Summary:
As designed by Vince [here](https://www.figma.com/file/4e6BMdm2SuZ1L7FSuOPQVC/Flipper?node-id=585%3A127550), this diff adds Flipper Doctor into Sandy

Note:
- The dot on Doctor icon will act similarly to `DoctorBar`
- add type to `count` for `LeftRailButton` to act like dot badge
- Get rid of padding in `antd` modal

Reviewed By: nikoant, mweststrate

Differential Revision: D24137349

fbshipit-source-id: 8ce441e0ed96083eba09d98dfd3a45ff9b5be027
2020-10-07 08:47:55 -07:00
Hugo Cuvillier
41928e0e3a Migrate remaining calls to +[CKImageComponent newWith...] to use the builder
Summary: Last call sites for `CKImageComponent`

Reviewed By: kevin0571

Differential Revision: D24161106

fbshipit-source-id: 6f4593184a772c753f4a571f628d27b0d82367c5
2020-10-07 07:48:01 -07:00
generatedunixname89002005325676
2e1a2e9f89 Daily arc lint --take CLANGFORMAT
Reviewed By: zertosh

Differential Revision: D24158208

fbshipit-source-id: 4a1c1d7958881774a6c23d0d3b1cb390b641f8f4
2020-10-07 04:22:06 -07:00
Chaiwat Ekkaewnumchai
6d1da5bb42 Add Login Component
Summary:
- Add Sandy renderer for `SignInSheet`
- Change background color for default button

Reviewed By: mweststrate

Differential Revision: D24112100

fbshipit-source-id: a602c920c24dd039697834aaba3c79e79f04481e
2020-10-07 03:12:30 -07:00
Michel Weststrate
cd737a0177 Update some prefetch icons
Summary: Enabled all android plugins in Flipper and navigated around. Some additional icons were prefetched.

Reviewed By: passy

Differential Revision: D24138244

fbshipit-source-id: d38ad8b39781bdfea76c849611772de37260d8b3
2020-10-07 02:26:11 -07:00
Michel Weststrate
64d6b7731d Fix scroll issue
Summary: While clicking around in Flipper, noticed that the stack trace in sections plugin wasn't scrollable, fixed that

Reviewed By: Andrey-Mishanin

Differential Revision: D24138245

fbshipit-source-id: 8e08d1d9e92af5f74a047d95d71788da8bf1bd3c
2020-10-07 02:26:11 -07:00
dependabot[bot]
c177ea385f Bump jest from 26.4.2 to 26.5.2 in /react-native/ReactNativeFlipperExample (#1576)
Summary:
Bumps [jest](https://github.com/facebook/jest) from 26.4.2 to 26.5.2.
<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.2</h2>
<h3>Fixes</h3>
<ul>
<li><code>[*]</code> Revert usage of Escalade and rollback Yargs to v15 as it breaks Node 13 (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/10599">#10599</a>)</li>
<li><code>[jest-circus]</code> Setup globals before emitting <code>setup</code>, and include Jest globals in the <code>setup</code> payload (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/10598">#10598</a>)</li>
<li><code>[jest-mock]</code> Fix typings for <code>mockResolvedValue</code>, <code>mockResolvedValueOnce</code>, <code>mockRejectedValue</code> and <code>mockRejectedValueOnce</code> (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/10600">#10600</a>)</li>
</ul>
<h2>26.5.1</h2>
<h3>Fixes</h3>
<ul>
<li><code>[jest-circus]</code> Handle older <code>jest-runtime</code> in <code>jest-circus</code></li>
</ul>
<h2>26.5.0</h2>
<h3>Features</h3>
<ul>
<li><code>[jest-circus, jest-config, jest-runtime]</code> Add new <code>injectGlobals</code> config and CLI option to disable injecting global variables into the runtime (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/10484">#10484</a>)</li>
<li><code>[jest-each]</code> Fixes <code>.each</code> type to always be callable (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/10447">#10447</a>)</li>
<li><code>[jest-runner]</code> Add support for <code>moduleLoader</code>s with <code>default</code> exports (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/10541">#10541</a>)</li>
<li><code>[jest/create-cache-key-function]</code> Added a new package for creating cache keys (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/10587">#10587</a>)</li>
</ul>
<h3>Fixes</h3>
<ul>
<li><code>[jest-circus, jest-jasmine2]</code> Find correct location for <code>test.each</code> tests (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/10413">#10413</a>)</li>
<li><code>[jest-console]</code> Add <code>Console</code> constructor to <code>console</code> object (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/10502">#10502</a>)</li>
<li><code>[jest-globals]</code> Fix lifecycle hook function types (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/10480">#10480</a>)</li>
<li><code>[jest-runtime]</code> Remove usage of <code>vm.compileFunction</code> due to a performance issue (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/10586">#10586</a>)</li>
</ul>
<h3>Chore &amp; Maintenance</h3>
<ul>
<li><code>[jest-resolve]</code> Replace read-pkg-up with escalade package (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/10558">10558</a>)</li>
<li><code>[jest-environment-jsdom]</code> Update jsdom to 16.4.0 (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/10578">10578</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.2</h2>
<h3>Fixes</h3>
<ul>
<li><code>[*]</code> Revert usage of Escalade and rollback Yargs to v15 as it breaks Node 13 (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/10599">#10599</a>)</li>
<li><code>[jest-circus]</code> Setup globals before emitting <code>setup</code>, and include Jest globals in the <code>setup</code> payload (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/10598">#10598</a>)</li>
<li><code>[jest-mock]</code> Fix typings for <code>mockResolvedValue</code>, <code>mockResolvedValueOnce</code>, <code>mockRejectedValue</code> and <code>mockRejectedValueOnce</code> (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/10600">#10600</a>)</li>
</ul>
<h2>26.5.1</h2>
<h3>Fixes</h3>
<ul>
<li><code>[jest-circus]</code> Handle older <code>jest-runtime</code> in <code>jest-circus</code></li>
</ul>
<h2>26.5.0</h2>
<h3>Features</h3>
<ul>
<li><code>[jest-circus, jest-config, jest-runtime]</code> Add new <code>injectGlobals</code> config and CLI option to disable injecting global variables into the runtime (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/10484">#10484</a>)</li>
<li><code>[jest-each]</code> Fixes <code>.each</code> type to always be callable (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/10447">#10447</a>)</li>
<li><code>[jest-runner]</code> Add support for <code>moduleLoader</code>s with <code>default</code> exports (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/10541">#10541</a>)</li>
<li><code>[jest/create-cache-key-function]</code> Added a new package for creating cache keys (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/10587">#10587</a>)</li>
</ul>
<h3>Fixes</h3>
<ul>
<li><code>[jest-circus, jest-jasmine2]</code> Find correct location for <code>test.each</code> tests (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/10413">#10413</a>)</li>
<li><code>[jest-console]</code> Add <code>Console</code> constructor to <code>console</code> object (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/10502">#10502</a>)</li>
<li><code>[jest-globals]</code> Fix lifecycle hook function types (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/10480">#10480</a>)</li>
<li><code>[jest-runtime]</code> Remove usage of <code>vm.compileFunction</code> due to a performance issue (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/10586">#10586</a>)</li>
</ul>
<h3>Chore &amp; Maintenance</h3>
<ul>
<li><code>[jest-resolve]</code> Replace read-pkg-up with escalade package (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/10558">10558</a>)</li>
<li><code>[jest-environment-jsdom]</code> Update jsdom to 16.4.0 (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/10578">10578</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="d2bacceb51"><code>d2bacce</code></a> v26.5.2</li>
<li><a href="05a1bcb4fb"><code>05a1bcb</code></a> chore: update changelog for release</li>
<li><a href="7e51ac129b"><code>7e51ac1</code></a> fix: revert usage of Escalade and yargs@16 as they breaks Node 13 (<a href="https://github-redirect.dependabot.com/facebook/jest/issues/10599">#10599</a>)</li>
<li><a href="75bf0387af"><code>75bf038</code></a> chore: fix type error in test</li>
<li><a href="d49cb30fb2"><code>d49cb30</code></a> fix(circus): make sure to install globals before emitting <code>setup</code> event (<a href="https://github-redirect.dependabot.com/facebook/jest/issues/10598">#10598</a>)</li>
<li><a href="911b74e4d8"><code>911b74e</code></a> Fix type definitions for promises (<a href="https://github-redirect.dependabot.com/facebook/jest/issues/10600">#10600</a>)</li>
<li><a href="999ee46126"><code>999ee46</code></a> chore: update lockfile after publish</li>
<li><a href="8a70bc269e"><code>8a70bc2</code></a> v26.5.1</li>
<li><a href="9d977bc36d"><code>9d977bc</code></a> fix: handle older <code>jest-runtime</code> in <code>jest-circus</code></li>
<li><a href="2a7b77c324"><code>2a7b77c</code></a> chore: update lockfile after publish</li>
<li>Additional commits viewable in <a href="https://github.com/facebook/jest/compare/v26.4.2...v26.5.2">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.4.2&new-version=26.5.2)](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/1576

Reviewed By: passy

Differential Revision: D24136291

Pulled By: mweststrate

fbshipit-source-id: 1ee88a95f87dad6e4c1c5bd5ee60de145760eb63
2020-10-06 11:25:41 -07:00
Christos Botsikas
86e48b2140 Fix network plugin for ios14+ (#1543)
Summary:
Changelog: [iOS][Network] Network plugin now supports iOS 14

Network plugin stopped working for iOS 14 as reported in https://github.com/facebook/flipper/issues/1534.
The fix is based on the origin Flex network observer, as seen in https://github.com/FLEXTool/FLEX/pull/451

- NetworkPlugin supports iOS 14+

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

Test Plan: Verified manually that before this fix the network plugin broken on iOS 14, and after it, it initializes correctly.

Reviewed By: passy

Differential Revision: D24136401

Pulled By: mweststrate

fbshipit-source-id: 87e0e0fa4bc927d082387d937390b1e728125753
2020-10-06 11:21:59 -07:00
GitHub
f9fbca80e7 Automated: Update Podfile.lock (#1577)
Summary:
This is an automated PR to update the Podfile.lock.
- Make sure that the Podfile.lock contains latest FlipperKit and Flipper pod versions.
- Also make sure that all the dependencies are updated to the latest one.
- This is auto-generated by [create-pull-request](https://github.com/peter-evans/create-pull-request)

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

Reviewed By: cekkaewnumchai

Differential Revision: D24136300

Pulled By: mweststrate

fbshipit-source-id: dff95d2d0e0c7c2a27707b39201599ec1217a464
2020-10-06 08:00:56 -07:00
Michel Weststrate
02570136ce Fix ANT line-height leaking into legacy design
Summary:
Fixes layout issue that was caused by ANT line-heights leaking into the old design.

Introduced a `.flipperlegacy_design ` class at the `root` element of Flipper, so that it is easier in the future to bail out / add overrides for certain features in the old design.

Reviewed By: priteshrnandgaonkar

Differential Revision: D24135482

fbshipit-source-id: 40091ebbde71662f2ebea66577f7b727009ca9c6
2020-10-06 04:58:18 -07:00
dependabot[bot]
48c0cdeb07 Bump antd from 4.6.3 to 4.6.6 in /desktop (#1557)
Summary:
allow-large-files

Bumps [antd](https://github.com/ant-design/ant-design) from 4.6.3 to 4.6.6.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/ant-design/ant-design/releases">antd's releases</a>.</em></p>
<blockquote>
<h2>4.6.6</h2>
<ul>
<li>{emoji:1f41e} Fix Steps first item shifts in small screen. <a href="https://github-redirect.dependabot.com/ant-design/ant-design/pull/26894">#26894</a></li>
<li>{emoji:1f484} Fix Divider border style not work when text is provided. <a href="https://github-redirect.dependabot.com/ant-design/ant-design/pull/26863">#26863</a></li>
<li>{emoji:1f41e} Fix Radio.Button validation error highlight. <a href="https://github-redirect.dependabot.com/ant-design/ant-design/pull/26849">#26849</a> <a href="https://github.com/dhorelik">dhorelik</a></li>
<li>{emoji:1f484} Fix Typography link-decoration style. <a href="https://github-redirect.dependabot.com/ant-design/ant-design/pull/26854">#26854</a> <a href="https://github.com/vineetvk01">vineetvk01</a></li>
<li>Locale
<ul>
<li>{emoji:1f310} Add Thai locale support. <a href="https://github-redirect.dependabot.com/ant-design/ant-design/pull/26906">#26906</a> <a href="https://github.com/anawinwz">anawinwz</a></li>
</ul>
</li>
<li>TypeScript
<ul>
<li>� Fix message.destroy parameter type. <a href="https://github-redirect.dependabot.com/ant-design/ant-design/pull/26864">#26864</a> <a href="https://github.com/lihqi">lihqi</a></li>
<li>� Optimize Slider type definition. <a href="https://github-redirect.dependabot.com/ant-design/ant-design/pull/26884">#26884</a></li>
<li>� Form properly export <code>FormListProps</code> type. <a href="https://github-redirect.dependabot.com/ant-design/ant-design/pull/26831">#26831</a> <a href="https://github.com/mgcrea">mgcrea</a></li>
</ul>
</li>
</ul>
<hr />
<ul>
<li>{emoji:1f41e} 修复 Steps 在小屏幕下第一项偏移的问题。<a href="https://github-redirect.dependabot.com/ant-design/ant-design/pull/26894">#26894</a></li>
<li>{emoji:1f484} 修复 Divider 在有文字时,设置边框颜色无效的问题。<a href="https://github-redirect.dependabot.com/ant-design/ant-design/pull/26863">#26863</a></li>
<li>{emoji:1f41e} 修复 Radio.Button 错误校验高亮样式的问题。<a href="https://github-redirect.dependabot.com/ant-design/ant-design/pull/26849">#26849</a> <a href="https://github.com/dhorelik">dhorelik</a></li>
<li>{emoji:1f484} 修复 Typography 链接下划线样式。<a href="https://github-redirect.dependabot.com/ant-design/ant-design/pull/26854">#26854</a> <a href="https://github.com/vineetvk01">vineetvk01</a></li>
<li>国际化
<ul>
<li>{emoji:1f310} 添加泰语支持。<a href="https://github-redirect.dependabot.com/ant-design/ant-design/pull/26906">#26906</a> <a href="https://github.com/anawinwz">anawinwz</a></li>
</ul>
</li>
<li>TypeScript
<ul>
<li>� 修复 message.destroy 参数类型错误。<a href="https://github-redirect.dependabot.com/ant-design/ant-design/pull/26864">#26864</a> <a href="https://github.com/lihqi">lihqi</a></li>
<li>� 优化 Slider 类型定义。<a href="https://github-redirect.dependabot.com/ant-design/ant-design/pull/26884">#26884</a></li>
<li>� 导出 Form 中的 <code>FormListProps</code> 类型。<a href="https://github-redirect.dependabot.com/ant-design/ant-design/pull/26831">#26831</a> <a href="https://github.com/mgcrea">mgcrea</a></li>
</ul>
</li>
</ul>
<h2>4.6.5</h2>
<ul>
<li>{emoji:1f484} Fix Descriptions item long text ellipsis issue. <a href="https://github-redirect.dependabot.com/ant-design/ant-design/pull/26820">#26820</a></li>
<li>{emoji:1f41e} Fix Menu unexpected scrollbar when show and hide. <a href="https://github-redirect.dependabot.com/ant-design/ant-design/pull/26817">#26817</a></li>
<li>{emoji:1f41e} Fix <code>layout-sider-background</code> cannot set to linear gradient color. <a href="https://github-redirect.dependabot.com/ant-design/ant-design/pull/26810">#26810</a></li>
<li>{emoji:1f41e} Fix Select compositing status lost when input first letter in Chinese. <a href="https://github-redirect.dependabot.com/ant-design/ant-design/pull/26796">#26796</a></li>
<li>{emoji:1f41e} Fix Table <code>table-sticky-zindex</code> less compile error issue. <a href="https://github-redirect.dependabot.com/ant-design/ant-design/pull/26800">#26800</a> <a href="https://github.com/chimp1nski">chimp1nski</a></li>
<li>Button
<ul>
<li>{emoji:1f484} Fix Button align issue when has icon only. <a href="https://github-redirect.dependabot.com/ant-design/ant-design/pull/26785">#26785</a></li>
<li>{emoji:1f41e} Fix Button warning <code>Invalid value for prop navigate</code> when using with react-router. <a href="https://github-redirect.dependabot.com/ant-design/ant-design/pull/26740">#26740</a> <a href="https://github.com/knobo">knobo</a></li>
</ul>
</li>
<li>{emoji:1f484} Fix TimePicker column align issue, add <code>picker-time-panel-column-width</code> and <code>picker-time-panel-column-height</code> less variables. <a href="https://github-redirect.dependabot.com/ant-design/ant-design/pull/26784">#26784</a></li>
<li>{emoji:1f41e} Fix AutoComplete warning when using <code>placeholder</code> and <code>allowClear</code>. <a href="https://github-redirect.dependabot.com/ant-design/ant-design/pull/26765">#26765</a></li>
<li>{emoji:1f41e} Fix Space show items when it's render empty dom. <a href="https://github-redirect.dependabot.com/ant-design/ant-design/pull/26721">#26721</a> <a href="https://github.com/knobo">knobo</a></li>
<li>{emoji:1f6e0} Dedupe <code>rc-trigger</code> version to reduce package size. <a href="https://github-redirect.dependabot.com/ant-design/ant-design/pull/26803">#26803</a></li>
<li>TypeScript
<ul>
<li>� Cascader add <code>name</code> and <code>id</code> props definition. <a href="https://github-redirect.dependabot.com/ant-design/ant-design/pull/26660">#26660</a> <a href="https://github.com/alwaysloseall">alwaysloseall</a></li>
</ul>
</li>
</ul>
<hr />
<ul>
<li>{emoji:1f484} 修复 Descriptions 长文本溢出的样式问题。<a href="https://github-redirect.dependabot.com/ant-design/ant-design/pull/26820">#26820</a></li>
<li>{emoji:1f41e} 修复 Menu 子菜单展开/收起时会出现滚动条的问题。<a href="https://github-redirect.dependabot.com/ant-design/ant-design/pull/26817">#26817</a></li>
<li>{emoji:1f41e} 修复 <code>layout-sider-background</code> 变量不能设置为渐变色的问题。<a href="https://github-redirect.dependabot.com/ant-design/ant-design/pull/26810">#26810</a></li>
</ul>

</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/ant-design/ant-design/blob/master/CHANGELOG.en-US.md">antd's changelog</a>.</em></p>
<blockquote>
<h2>4.6.6</h2>
<p><code>2020-09-27</code></p>
<ul>
<li>{emoji:1f41e} Fix Steps first item shifts in small screen. <a href="https://github-redirect.dependabot.com/ant-design/ant-design/pull/26894">#26894</a></li>
<li>{emoji:1f484} Fix Divider border style not work when text is provided. <a href="https://github-redirect.dependabot.com/ant-design/ant-design/pull/26863">#26863</a></li>
<li>{emoji:1f41e} Fix Radio.Button validation error highlight. <a href="https://github-redirect.dependabot.com/ant-design/ant-design/pull/26849">#26849</a> <a href="https://github.com/dhorelik">dhorelik</a></li>
<li>{emoji:1f484} Fix Typography link-decoration style. <a href="https://github-redirect.dependabot.com/ant-design/ant-design/pull/26854">#26854</a> <a href="https://github.com/vineetvk01">vineetvk01</a></li>
<li>Locale
<ul>
<li>{emoji:1f310} Add Thai locale support. <a href="https://github-redirect.dependabot.com/ant-design/ant-design/pull/26906">#26906</a> <a href="https://github.com/anawinwz">anawinwz</a></li>
</ul>
</li>
<li>TypeScript
<ul>
<li>� Fix message.destroy parameter type. <a href="https://github-redirect.dependabot.com/ant-design/ant-design/pull/26864">#26864</a> <a href="https://github.com/lihqi">lihqi</a></li>
<li>� Optimize Slider type definition. <a href="https://github-redirect.dependabot.com/ant-design/ant-design/pull/26884">#26884</a></li>
<li>� Form properly export <code>FormListProps</code> type. <a href="https://github-redirect.dependabot.com/ant-design/ant-design/pull/26831">#26831</a> <a href="https://github.com/mgcrea">mgcrea</a></li>
</ul>
</li>
</ul>
<h2>4.6.5</h2>
<p><code>2020-09-20</code></p>
<ul>
<li>{emoji:1f484} Fix Descriptions item long text ellipsis issue. <a href="https://github-redirect.dependabot.com/ant-design/ant-design/pull/26820">#26820</a></li>
<li>{emoji:1f41e} Fix Menu unexpected scrollbar when show and hide. <a href="https://github-redirect.dependabot.com/ant-design/ant-design/pull/26817">#26817</a></li>
<li>{emoji:1f41e} Fix <code>layout-sider-background</code> cannot set to linear gradient color. <a href="https://github-redirect.dependabot.com/ant-design/ant-design/pull/26810">#26810</a></li>
<li>{emoji:1f41e} Fix Select compositing status lost when input first letter in Chinese. <a href="https://github-redirect.dependabot.com/ant-design/ant-design/pull/26796">#26796</a></li>
<li>{emoji:1f41e} Fix Table <code>table-sticky-zindex</code> less compile error issue. <a href="https://github-redirect.dependabot.com/ant-design/ant-design/pull/26800">#26800</a> <a href="https://github.com/chimp1nski">chimp1nski</a></li>
<li>Button
<ul>
<li>{emoji:1f484} Fix Button align issue when has icon only. <a href="https://github-redirect.dependabot.com/ant-design/ant-design/pull/26785">#26785</a></li>
<li>{emoji:1f41e} Fix Button warning <code>Invalid value for prop navigate</code> when using with react-router. <a href="https://github-redirect.dependabot.com/ant-design/ant-design/pull/26740">#26740</a> <a href="https://github.com/knobo">knobo</a></li>
</ul>
</li>
<li>{emoji:1f484} Fix TimePicker column align issue, add <code>picker-time-panel-column-width</code> and <code>picker-time-panel-column-height</code> less variables. <a href="https://github-redirect.dependabot.com/ant-design/ant-design/pull/26784">#26784</a></li>
<li>{emoji:1f41e} Fix AutoComplete warning when using <code>placeholder</code> and <code>allowClear</code>. <a href="https://github-redirect.dependabot.com/ant-design/ant-design/pull/26765">#26765</a></li>
<li>{emoji:1f41e} Fix Space show items when it's render empty dom. <a href="https://github-redirect.dependabot.com/ant-design/ant-design/pull/26721">#26721</a> <a href="https://github.com/knobo">knobo</a></li>
<li>{emoji:1f6e0} Dedupe <code>rc-trigger</code> version to reduce package size. <a href="https://github-redirect.dependabot.com/ant-design/ant-design/pull/26803">#26803</a></li>
<li>TypeScript
<ul>
<li>� Cascader add <code>name</code> and <code>id</code> props definition. <a href="https://github-redirect.dependabot.com/ant-design/ant-design/pull/26660">#26660</a> <a href="https://github.com/alwaysloseall">alwaysloseall</a></li>
</ul>
</li>
</ul>
<h2>4.6.4</h2>
<p><code>2020-09-13</code></p>
<ul>
<li>{emoji:1f484} style: Card card image has extra 1px border. <a href="https://github-redirect.dependabot.com/ant-design/ant-design/pull/26659">#26659</a></li>
<li>{emoji:1f484} Fix Select <code>placeholder</code> color not same as Input. <a href="https://github-redirect.dependabot.com/ant-design/ant-design/pull/26651">#26651</a> <a href="https://github.com/wangcch">wangcch</a></li>
<li>{emoji:1f41e} Fix Menu not support React.Fragment inside. <a href="https://github-redirect.dependabot.com/ant-design/ant-design/pull/26656">#26656</a></li>
<li>{emoji:1f41e} Fix TextArea different behavior with Input when set <code>value</code> to <code>undefined</code>. <a href="https://github-redirect.dependabot.com/ant-design/ant-design/pull/26652">#26652</a></li>
<li>{emoji:1f41e} Fix Motion related issue like Upload align flash and Form.Item with <code>help</code> ssr issue. <a href="https://github-redirect.dependabot.com/ant-design/ant-design/pull/26628">#26628</a></li>
<li>{emoji:1f41e} Fix Typography.Link warning <code>Invalid value for prop navigate</code> when using with react-router. <a href="https://github-redirect.dependabot.com/ant-design/ant-design/pull/26623">#26623</a></li>
<li>{emoji:1f41e} Fix Table pagination missing when is above table. <a href="https://github-redirect.dependabot.com/ant-design/ant-design/pull/26618">#26618</a></li>
<li>{emoji:1f41e} Fix Upload in control miss file when upload multiple file in same time. <a href="https://github-redirect.dependabot.com/ant-design/ant-design/pull/26612">#26612</a></li>
<li>TypeScript
<ul>
<li>� Fix Table that sorter <code>compare</code> and <code>multiple</code> should be optional. <a href="https://github-redirect.dependabot.com/ant-design/ant-design/pull/26686">#26686</a></li>
</ul>
</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="78b7c01048"><code>78b7c01</code></a> chore: version (<a href="https://github-redirect.dependabot.com/ant-design/ant-design/issues/26918">#26918</a>)</li>
<li><a href="ab33429bf6"><code>ab33429</code></a> release: 4.6.6 (<a href="https://github-redirect.dependabot.com/ant-design/ant-design/issues/26916">#26916</a>)</li>
<li><a href="c7d376001a"><code>c7d3760</code></a> fix({emoji:1f41b}): Steps item shifts in vertical mode (<a href="https://github-redirect.dependabot.com/ant-design/ant-design/issues/26894">#26894</a>)</li>
<li><a href="14ef846eb7"><code>14ef846</code></a> change function name correctly in index.js (<a href="https://github-redirect.dependabot.com/ant-design/ant-design/issues/26850">#26850</a>)</li>
<li><a href="cc37f7d189"><code>cc37f7d</code></a> fix: fix message.destroy parameter (<a href="https://github-redirect.dependabot.com/ant-design/ant-design/issues/26864">#26864</a>)</li>
<li><a href="006abe5e92"><code>006abe5</code></a> chore(slider): optimize type definition (<a href="https://github-redirect.dependabot.com/ant-design/ant-design/issues/26884">#26884</a>)</li>
<li><a href="aac1d4e434"><code>aac1d4e</code></a> chore: Add auto close workflow</li>
<li><a href="80d36fb0ae"><code>80d36fb</code></a> docs: Add Form.List deps faq (<a href="https://github-redirect.dependabot.com/ant-design/ant-design/issues/26873">#26873</a>)</li>
<li><a href="2775049345"><code>2775049</code></a> docs: Update TreeNode isLeaf desc (<a href="https://github-redirect.dependabot.com/ant-design/ant-design/issues/26872">#26872</a>)</li>
<li><a href="1e176ed841"><code>1e176ed</code></a> fix: Divider border style not work on text mode (<a href="https://github-redirect.dependabot.com/ant-design/ant-design/issues/26863">#26863</a>)</li>
<li>Additional commits viewable in <a href="https://github.com/ant-design/ant-design/compare/4.6.3...4.6.6">compare view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=antd&package-manager=npm_and_yarn&previous-version=4.6.3&new-version=4.6.6)](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/1557

Reviewed By: cekkaewnumchai

Differential Revision: D24112926

Pulled By: mweststrate

fbshipit-source-id: 561a7b436c78ef7913876f767b9957a17105159d
2020-10-06 04:23:08 -07:00
dependabot[bot]
b416c39fcd Bump @babel/generator from 7.11.0 to 7.11.6 in /desktop (#1552)
Summary:
Bumps [babel/generator](https://github.com/babel/babel/tree/HEAD/packages/babel-generator) from 7.11.0 to 7.11.6.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/babel/babel/releases">babel/generator's releases</a>.</em></p>
<blockquote>
<h2>v7.11.6 (2020-09-03)</h2>
<p>Thanks <a href="https://github.com/janbrasna">janbrasna</a> for their first PR!</p>
<h4>🏠 Internal</h4>
<ul>
<li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12028">#12028</a> Run prepublish build after versioning (<a href="https://github.com/JLHwung">JLHwung</a>)</li>
</ul>
<h4>↩️ Revert</h4>
<ul>
<li><code>babel-cli</code>, <code>babel-core</code>, <code>babel-generator</code>, <code>babel-helper-transform-fixture-test-runner</code>
<ul>
<li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12027">#12027</a> Revert <a href="https://github.com/babel/babel/tree/HEAD/packages/babel-generator/issues/12014">#12014</a> (<a href="https://github.com/JLHwung">JLHwung</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>Jan Brašna (<a href="https://github.com/janbrasna">janbrasna</a>)</li>
</ul>
<h2>v7.11.5 (2020-08-31)</h2>
<p>Thanks <a href="https://github.com/giovannicalo">giovannicalo</a>, <a href="https://github.com/johanholmerin">johanholmerin</a>, <a href="https://github.com/uhyo">uhyo</a> for their first PRs!</p>
<h4>🐛 Bug Fix</h4>
<ul>
<li><code>babel-helper-builder-react-jsx-experimental</code>, <code>babel-plugin-transform-react-jsx-development</code>
<ul>
<li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12017">#12017</a> Fix <code>jsxDEV</code> for generated elements (<a href="https://github.com/Timer">Timer</a>)</li>
</ul>
</li>
<li><code>babel-parser</code>
<ul>
<li><a href="https://github-redirect.dependabot.com/babel/babel/pull/11931">#11931</a> fix: ExpressionBody should respect [In] parameter (<a href="https://github.com/JLHwung">JLHwung</a>)</li>
<li><a href="https://github-redirect.dependabot.com/babel/babel/pull/11987">#11987</a> Set generator to true during error recovery of accessor (<a href="https://github.com/existentialism">existentialism</a>)</li>
</ul>
</li>
<li><code>babel/eslint-plugin</code>
<ul>
<li><a href="https://github-redirect.dependabot.com/babel/babel/pull/11993">#11993</a> Added linting support for private class methods (<a href="https://github.com/giovannicalo">giovannicalo</a>)</li>
</ul>
</li>
<li><code>babel-plugin-proposal-function-bind</code>
<ul>
<li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12000">#12000</a> fix(plugin-proposal-function-bind): fix invalid code emitted for <code>::super.foo</code> (<a href="https://github.com/uhyo">uhyo</a>)</li>
</ul>
</li>
</ul>
<h4>💅 Polish</h4>
<ul>
<li><code>babel-traverse</code>
<ul>
<li><a href="https://github-redirect.dependabot.com/babel/babel/pull/11832">#11832</a> Forward deopt node path (<a href="https://github.com/johanholmerin">johanholmerin</a>)</li>
</ul>
</li>
</ul>
<h4>🏠 Internal</h4>
<ul>
<li>Other
<ul>
<li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12013">#12013</a> Remove unused enhanced-resolve and normalize lock resolutions (<a href="https://github.com/JLHwung">JLHwung</a>)</li>
<li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12010">#12010</a> chore: use Rollup 2 (<a href="https://github.com/JLHwung">JLHwung</a>)</li>
<li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12002">#12002</a> Restructure CI workflow (<a href="https://github.com/JLHwung">JLHwung</a>)</li>
<li><a href="https://github-redirect.dependabot.com/babel/babel/pull/11781">#11781</a> chore: improve Yarn 2 cache on CI (<a href="https://github.com/JLHwung">JLHwung</a>)</li>
</ul>
</li>
<li>All packages
<ul>
<li><a href="https://github-redirect.dependabot.com/babel/babel/pull/11962">#11962</a> Use Yarn 2 (<a href="https://github.com/JLHwung">JLHwung</a>)</li>
</ul>
</li>
</ul>
<h4>Committers: 6</h4>
<ul>
<li>Brian Ng (<a href="https://github.com/existentialism">existentialism</a>)</li>
<li>Giovanni Calò (<a href="https://github.com/giovannicalo">giovannicalo</a>)</li>
<li>Huáng Jùnliàng (<a href="https://github.com/JLHwung">JLHwung</a>)</li>
<li>Joe Haddad (<a href="https://github.com/Timer">Timer</a>)</li>
<li>Johan Holmerin (<a href="https://github.com/johanholmerin">johanholmerin</a>)</li>
<li>uhyo (<a href="https://github.com/uhyo">uhyo</a>)</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/generator's changelog</a>.</em></p>
<blockquote>
<h2>v7.11.6 (2020-09-03)</h2>
<h4>🏠 Internal</h4>
<ul>
<li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12028">#12028</a> Run prepublish build after versioning (<a href="https://github.com/JLHwung">JLHwung</a>)</li>
</ul>
<h4>↩️ Revert</h4>
<ul>
<li><code>babel-cli</code>, <code>babel-core</code>, <code>babel-generator</code>, <code>babel-helper-transform-fixture-test-runner</code>
<ul>
<li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12027">#12027</a> Revert <a href="https://github.com/babel/babel/tree/HEAD/packages/babel-generator/issues/12014">#12014</a> (<a href="https://github.com/JLHwung">JLHwung</a>)</li>
</ul>
</li>
</ul>
<h2>v7.11.5 (2020-08-31)</h2>
<h4>🐛 Bug Fix</h4>
<ul>
<li><code>babel-helper-builder-react-jsx-experimental</code>, <code>babel-plugin-transform-react-jsx-development</code>
<ul>
<li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12017">#12017</a> Fix <code>jsxDEV</code> for generated elements (<a href="https://github.com/Timer">Timer</a>)</li>
</ul>
</li>
<li><code>babel-parser</code>
<ul>
<li><a href="https://github-redirect.dependabot.com/babel/babel/pull/11931">#11931</a> fix: ExpressionBody should respect [In] parameter (<a href="https://github.com/JLHwung">JLHwung</a>)</li>
<li><a href="https://github-redirect.dependabot.com/babel/babel/pull/11987">#11987</a> Set generator to true during error recovery of accessor (<a href="https://github.com/existentialism">existentialism</a>)</li>
</ul>
</li>
<li>Other
<ul>
<li><a href="https://github-redirect.dependabot.com/babel/babel/pull/11993">#11993</a> Added linting support for private class methods (<a href="https://github.com/giovannicalo">giovannicalo</a>)</li>
</ul>
</li>
<li><code>babel-plugin-proposal-function-bind</code>
<ul>
<li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12000">#12000</a> fix(plugin-proposal-function-bind): fix invalid code emitted for <code>::super.foo</code> (<a href="https://github.com/uhyo">uhyo</a>)</li>
</ul>
</li>
</ul>
<h4>💅 Polish</h4>
<ul>
<li><code>babel-traverse</code>
<ul>
<li><a href="https://github-redirect.dependabot.com/babel/babel/pull/11832">#11832</a> Forward deopt node path (<a href="https://github.com/johanholmerin">johanholmerin</a>)</li>
</ul>
</li>
</ul>
<h4>🏠 Internal</h4>
<ul>
<li>Other
<ul>
<li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12013">#12013</a> Remove unused enhanced-resolve and normalize lock resolutions (<a href="https://github.com/JLHwung">JLHwung</a>)</li>
<li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12010">#12010</a> chore: use Rollup 2 (<a href="https://github.com/JLHwung">JLHwung</a>)</li>
<li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12002">#12002</a> Restructure CI workflow (<a href="https://github.com/JLHwung">JLHwung</a>)</li>
<li><a href="https://github-redirect.dependabot.com/babel/babel/pull/11781">#11781</a> chore: improve Yarn 2 cache on CI (<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/11962">#11962</a> Use Yarn 2 (<a href="https://github.com/JLHwung">JLHwung</a>)</li>
</ul>
</li>
</ul>
<h2>v7.11.4 (2020-08-20)</h2>
<h4>🐛 Bug Fix</h4>
<ul>
<li><code>babel-helper-replace-supers</code>
<ul>
<li><a href="https://github-redirect.dependabot.com/babel/babel/pull/11985">#11985</a> fix: declare babel/traverse as a dependency (<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/11974">#11974</a> Ensure <code>import()</code> is not transpiled in <code>babel-core</code> published source (<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/11979">#11979</a> Throw error on invalid flow async generic arrow syntax (<a href="https://github.com/existentialism">existentialism</a>)</li>
<li><a href="https://github-redirect.dependabot.com/babel/babel/pull/11955">#11955</a> Fix parsing type casted generic flow arrow exprs (<a href="https://github.com/existentialism">existentialism</a>)</li>
<li><a href="https://github-redirect.dependabot.com/babel/babel/pull/11973">#11973</a> fix: do not transform ClassPrivateMethods in estree (<a href="https://github.com/JLHwung">JLHwung</a>)</li>
<li><a href="https://github-redirect.dependabot.com/babel/babel/pull/11941">#11941</a> fix: push new token context when braceHashL is seen (<a href="https://github.com/JLHwung">JLHwung</a>)</li>
<li><a href="https://github-redirect.dependabot.com/babel/babel/pull/11943">#11943</a> fix: reset EndLocation for catch param (<a href="https://github.com/JLHwung">JLHwung</a>)</li>
</ul>
</li>
<li>Other
<ul>
<li><a href="https://github-redirect.dependabot.com/babel/babel/pull/11978">#11978</a> fix: do not mutate newTypes (<a href="https://github.com/JLHwung">JLHwung</a>)</li>
<li><a href="https://github-redirect.dependabot.com/babel/babel/pull/11970">#11970</a> fix: ensure defaults are set in babel/eslint-parser (<a href="https://github.com/kaicataldo">kaicataldo</a>)</li>
</ul>
</li>
<li><code>babel-generator</code></li>
</ul>

</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="e51139d7fd"><code>e51139d</code></a> v7.11.6</li>
<li><a href="a91fdeb1f6"><code>a91fdeb</code></a> Revert <a href="https://github.com/babel/babel/tree/HEAD/packages/babel-generator/issues/12014">#12014</a> (<a href="https://github.com/babel/babel/tree/HEAD/packages/babel-generator/issues/12027">#12027</a>)</li>
<li><a href="af64ccb2b0"><code>af64ccb</code></a> v7.11.5</li>
<li><a href="d5bcc08bf7"><code>d5bcc08</code></a> chore: bump source-map to 0.6.1 (<a href="https://github.com/babel/babel/tree/HEAD/packages/babel-generator/issues/12014">#12014</a>)</li>
<li><a href="3fad7eab9b"><code>3fad7ea</code></a> Use Yarn 2 (<a href="https://github.com/babel/babel/tree/HEAD/packages/babel-generator/issues/11962">#11962</a>)</li>
<li><a href="90b1989569"><code>90b1989</code></a> v7.11.4</li>
<li><a href="3bff1ce35a"><code>3bff1ce</code></a> fix: disallow line break between async and property (<a href="https://github.com/babel/babel/tree/HEAD/packages/babel-generator/issues/11947">#11947</a>)</li>
<li>See full diff in <a href="https://github.com/babel/babel/commits/v7.11.6/packages/babel-generator">compare view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@babel/generator&package-manager=npm_and_yarn&previous-version=7.11.0&new-version=7.11.6)](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/1552

Reviewed By: cekkaewnumchai

Differential Revision: D24112950

Pulled By: mweststrate

fbshipit-source-id: 5b8334410499e7670ecedf6052e33cb320d677ce
2020-10-06 04:23:08 -07:00
dependabot[bot]
55519d5195 Bump eslint-config-prettier from 6.11.0 to 6.12.0 in /flipper-js-client-sdk (#1549)
Summary:
Bumps [eslint-config-prettier](https://github.com/prettier/eslint-config-prettier) from 6.11.0 to 6.12.0.
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/prettier/eslint-config-prettier/blob/master/CHANGELOG.md">eslint-config-prettier's changelog</a>.</em></p>
<blockquote>
<h3>Version 6.12.0 (2020-09-25)</h3>
<ul>
<li>Added: [typescript-eslint/comma-dangle]. Thanks to Masafumi Koba (<a href="https://github.com/ybiquitous">ybiquitous</a>)!!</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="37a62901a3"><code>37a6290</code></a> eslint-config-prettier v6.12.0</li>
<li><a href="3ea5ad584a"><code>3ea5ad5</code></a> Update npm packages</li>
<li><a href="84dfbd5fa6"><code>84dfbd5</code></a> Turn off <code>typescript-eslint/comma-dangle</code> (<a href="https://github-redirect.dependabot.com/prettier/eslint-config-prettier/issues/159">https://github.com/facebook/flipper/issues/159</a>)</li>
<li><a href="9444ee0b20"><code>9444ee0</code></a> Bump lodash from 4.17.15 to 4.17.19 (<a href="https://github-redirect.dependabot.com/prettier/eslint-config-prettier/issues/153">https://github.com/facebook/flipper/issues/153</a>)</li>
<li><a href="1504761368"><code>1504761</code></a> Update npm packages</li>
<li><a href="7cad28d09a"><code>7cad28d</code></a> Remove extra exclamation mark</li>
<li>See full diff in <a href="https://github.com/prettier/eslint-config-prettier/compare/v6.11.0...v6.12.0">compare view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=eslint-config-prettier&package-manager=npm_and_yarn&previous-version=6.11.0&new-version=6.12.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/1549

Reviewed By: cekkaewnumchai

Differential Revision: D24112971

Pulled By: mweststrate

fbshipit-source-id: af3a409c3f61124de6cd158365c372d206cb4bb5
2020-10-06 04:23:08 -07:00
dependabot[bot]
176e2a541e Bump eslint-plugin-import from 2.21.2 to 2.22.1 in /flipper-js-client-sdk (#1547)
Summary:
Bumps [eslint-plugin-import](https://github.com/benmosher/eslint-plugin-import) from 2.21.2 to 2.22.1.
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/benmosher/eslint-plugin-import/blob/master/CHANGELOG.md">eslint-plugin-import's changelog</a>.</em></p>
<blockquote>
<h2>[2.22.1] - 2020-09-27</h2>
<h3>Fixed</h3>
<ul>
<li>[<code>default</code>]/TypeScript: avoid crash on <code>export =</code> with a MemberExpression (<a href="https://github-redirect.dependabot.com/benmosher/eslint-plugin-import/issues/1841">#1841</a>, thanks [<a href="https://github.com/ljharb">ljharb</a>])</li>
<li>[<code>extensions</code>]/importType: Fix @/abc being treated as scoped module (<a href="https://github-redirect.dependabot.com/benmosher/eslint-plugin-import/issues/1854">#1854</a>, thanks [<a href="https://github.com/3nuc">3nuc</a>])</li>
<li>allow using rest operator in named export (<a href="https://github-redirect.dependabot.com/benmosher/eslint-plugin-import/issues/1878">#1878</a>, thanks [<a href="https://github.com/foray1010">foray1010</a>])</li>
<li>[<code>dynamic-import-chunkname</code>]: allow single quotes to match Webpack support (<a href="https://github-redirect.dependabot.com/benmosher/eslint-plugin-import/issues/1848">#1848</a>, thanks [<a href="https://github.com/straub">straub</a>])</li>
</ul>
<h3>Changed</h3>
<ul>
<li>[<code>export</code>]: add tests for a name collision with <code>export * from</code> (<a href="https://github-redirect.dependabot.com/benmosher/eslint-plugin-import/issues/1704">#1704</a>, thanks <a href="https://github.com/tomprats">tomprats</a>)</li>
</ul>
<h2>[2.22.0] - 2020-06-26</h2>
<h3>Added</h3>
<ul>
<li>[<code>no-unused-modules</code>]: consider exported TypeScript interfaces, types and enums (<a href="https://github-redirect.dependabot.com/benmosher/eslint-plugin-import/issues/1819">#1819</a>, thanks [<a href="https://github.com/nicolashenry">nicolashenry</a>])</li>
<li>[<code>no-cycle</code>]: allow <code>maxDepth</code> option to be <code>&quot;∞&quot;</code> (thanks [<a href="https://github.com/ljharb">ljharb</a>])</li>
</ul>
<h3>Fixed</h3>
<ul>
<li>[<code>order</code>]/TypeScript: properly support <code>import = object</code> expressions (<a href="https://github-redirect.dependabot.com/benmosher/eslint-plugin-import/issues/1823">#1823</a>, thanks [<a href="https://github.com/manuth">manuth</a>])</li>
<li>[<code>no-extraneous-dependencies</code>]/TypeScript: do not error when importing type from dev dependencies (<a href="https://github-redirect.dependabot.com/benmosher/eslint-plugin-import/issues/1820">#1820</a>, thanks [<a href="https://github.com/fernandopasik">fernandopasik</a>])</li>
<li>[<code>default</code>]: avoid crash with <code>export =</code> (<a href="https://github-redirect.dependabot.com/benmosher/eslint-plugin-import/issues/1822">#1822</a>, thanks [<a href="https://github.com/AndrewLeedham">AndrewLeedham</a>])</li>
<li>[<code>order</code>]/[<code>newline-after-import</code>]: ignore TypeScript's &quot;export import object&quot; (<a href="https://github-redirect.dependabot.com/benmosher/eslint-plugin-import/issues/1830">#1830</a>, thanks [<a href="https://github.com/be5invis">be5invis</a>])</li>
<li>[<code>dynamic-import-chunkname</code>]/TypeScript: supports <code>typescript-eslint/parser</code> (<a href="https://github-redirect.dependabot.com/benmosher/eslint-plugin-import/issues/1833">#1833</a>, thanks [<a href="https://github.com/noelebrun">noelebrun</a>])</li>
<li>[<code>order</code>]/TypeScript: ignore ordering of object imports (<a href="https://github-redirect.dependabot.com/benmosher/eslint-plugin-import/issues/1831">#1831</a>, thanks [<a href="https://github.com/manuth">manuth</a>])</li>
<li>[<code>namespace</code>]: do not report on shadowed import names (<a href="https://github-redirect.dependabot.com/benmosher/eslint-plugin-import/issues/518">https://github.com/facebook/flipper/issues/518</a>, thanks [<a href="https://github.com/ljharb">ljharb</a>])</li>
<li>[<code>export</code>]: avoid warning on <code>export * as</code> non-conflicts (<a href="https://github-redirect.dependabot.com/benmosher/eslint-plugin-import/issues/1834">#1834</a>, thanks [<a href="https://github.com/ljharb">ljharb</a>])</li>
</ul>
<h3>Changed</h3>
<ul>
<li>[<code>no-extraneous-dependencies</code>]: add tests for importing types (<a href="https://github-redirect.dependabot.com/benmosher/eslint-plugin-import/issues/1824">#1824</a>, thanks [<a href="https://github.com/taye">taye</a>])</li>
<li>[docs] [<code>no-default-export</code>]: Fix docs url (<a href="https://github-redirect.dependabot.com/benmosher/eslint-plugin-import/issues/1836">#1836</a>, thanks [<a href="https://github.com/beatrizrezener">beatrizrezener</a>])</li>
<li>[docs] [<code>imports-first</code>]: deprecation info and link to <code>first</code> docs (<a href="https://github-redirect.dependabot.com/benmosher/eslint-plugin-import/issues/1835">#1835</a>, thanks [<a href="https://github.com/beatrizrezener">beatrizrezener</a>])</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="bdda0691cf"><code>bdda069</code></a> Bump to v2.22.1</li>
<li><a href="aa42759569"><code>aa42759</code></a> [Dev Deps] update <code>coveralls</code>, <code>eslint-import-resolver-typescript</code>, `eslint-p...</li>
<li><a href="b366e50be8"><code>b366e50</code></a> [Deps] update <code>eslint-import-resolver-node</code></li>
<li><a href="fef718cb13"><code>fef718c</code></a> [resolvers/webpack] [Breaking] Allow to resolve config path relative to worki...</li>
<li><a href="bbe529a4ff"><code>bbe529a</code></a> [eslint] don’t warn about console logs in scripts</li>
<li><a href="f40c8aef2a"><code>f40c8ae</code></a> [meta] convert eslint config to json</li>
<li><a href="227d9a2509"><code>227d9a2</code></a> [Fix] <code>dynamic-import-chunkname</code>: allow single quotes to match Webpack support</li>
<li><a href="569d72688f"><code>569d726</code></a> fixup! [Tests] <code>export</code>: add tests for a name collision with <code>export * from</code></li>
<li><a href="b2d3707fdf"><code>b2d3707</code></a> fixup! [Tests] <code>export</code>: add tests for a name collision with <code>export * from</code></li>
<li><a href="1a67453752"><code>1a67453</code></a> [Tests] <code>export</code>: add tests for a name collision with <code>export * from</code></li>
<li>Additional commits viewable in <a href="https://github.com/benmosher/eslint-plugin-import/compare/v2.21.2...v2.22.1">compare view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=eslint-plugin-import&package-manager=npm_and_yarn&previous-version=2.21.2&new-version=2.22.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/1547

Reviewed By: cekkaewnumchai

Differential Revision: D24112982

Pulled By: mweststrate

fbshipit-source-id: 782d6edeab01be0ed46079947f2d63d285fc44d3
2020-10-06 04:23:08 -07:00