Files
flipper/desktop
dependabot[bot] fa915755b7 Bump @adobe/node-fetch-retry from 1.1.2 to 2.0.0 in /desktop (#3034)
Summary:
Bumps [adobe/node-fetch-retry](https://github.com/adobe/node-fetch-retry) from 1.1.2 to 2.0.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/adobe/node-fetch-retry/releases"><code>@​adobe/node-fetch-retry</code>'s releases</a>.</em></p>
<blockquote>
<h2>v2.0.0</h2>
<h1><a href="https://github.com/adobe/node-fetch-retry/compare/v1.1.3...v2.0.0">2.0.0</a> (2021-10-26)</h1>
<h2>v1.1.3</h2>
<h2><a href="https://github.com/adobe/node-fetch-retry/compare/v1.1.2...v1.1.3">1.1.3</a> (2021-10-22)</h2>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="531f3e8553"><code>531f3e8</code></a> [ci skip] no-release: version number update</li>
<li><a href="912281dd4e"><code>912281d</code></a> BREAKING-RELEASE: change default behavior so fetch-retry retries on FetchErro...</li>
<li><a href="48755df4aa"><code>48755df</code></a> [ci skip] no-release: version number update</li>
<li><a href="b650f7faa7"><code>b650f7f</code></a> BUGFIX-RELEASE: more robust handling of http errors to fix dep mod tests (<a href="https://github-redirect.dependabot.com/adobe/node-fetch-retry/issues/62">https://github.com/facebook/flipper/issues/62</a>)</li>
<li>See full diff in <a href="https://github.com/adobe/node-fetch-retry/compare/v1.1.2...v2.0.0">compare view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@adobe/node-fetch-retry&package-manager=npm_and_yarn&previous-version=1.1.2&new-version=2.0.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

 ---

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

You can trigger Dependabot actions by commenting on this PR:
- `dependabot rebase` will rebase this PR
- `dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `dependabot merge` will merge this PR after your CI passes on it
- `dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `dependabot cancel merge` will cancel a previously requested merge and block automerging
- `dependabot reopen` will reopen this PR if it is closed
- `dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- `dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

</details>

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

Reviewed By: nikoant

Differential Revision: D32246964

Pulled By: mweststrate

fbshipit-source-id: cdff2c86b6d3b284fbe5a7d1322156c3eda56170
2021-11-09 04:09:51 -08:00
..
2021-11-08 05:51:50 -08:00
2021-10-19 09:21:36 -07:00
2021-11-08 04:35:53 -08:00
2021-11-08 04:38:16 -08:00
2021-10-19 09:21:36 -07:00
2021-10-19 09:21:36 -07:00
2021-11-05 10:59:55 -07:00
2021-11-05 10:59:55 -07:00
2021-06-29 08:39:34 -07:00
2021-10-12 16:00:52 -07:00
2021-09-22 09:03:33 -07:00
2021-11-03 06:53:22 -07:00
2021-09-27 08:25:20 -07:00
2021-10-08 01:33:03 -07:00

Flipper Desktop

This folder contains everything to run the Flipper 'Desktop', that is, the UI which you use to interact with the device / app under debug.

Packages provided here:

  • flipper-common: utilities & types shared between client, server, flipper-plugin
  • flipper-server-core: all device & client management goes in here. Basically flipper's backend
  • flipper-ui-core: all UI goes in here, as far as it doesn't depend on Electron
  • flipper-ui-electron: the Electron app, will load server-core and ui-core, and glue them together, providing implementations for some electron * specific stuff like dialgos
  • flipper-server: A node process hosting flipper-server-core, that can be connected to over websockets. And probably can serve a browser version of the UI as well.
  • flipper-ui-browser: thin wrapper around flipper-ui-core, providing some browser specific behavior / stubs.
  • flipper-dump: (might remove later), but want to hack a quick and dirt flipper dump in here, as alternative way to test flipper-server-core.
  • flipper-plugin: The flipper SDK used by plugins. Exposes all API's that can be used by plugins
  • pkg: CLI tool to manage building flipper plugins
  • pkg-lib
  • plugin-lib
  • babel-transformer
  • doctor
  • eslint-plugin-flipper

Packages overview

flipper-ui-electron:
   - flipper-server-core (directly embedded)
   - flipper-ui-core
       - plugins (prebundled)
   - plugins (installable)
       - flipper-plugin

flipper-server
   - flipper-server-core
   - flipper-ui-browser (served by webserver)
       - flipper-ui-core (communicates using WebSocket with server-core)
           - plugins (prebundled)
   - plugins (installable)?

flipper-dump
   - flipper-server-core