781df776f258b4d54f040a18339ff11590f050fc
1692 Commits
| Author | SHA1 | Message | Date | |
|---|---|---|---|---|
|
|
bbf1aeaa55 |
Delay app loading until persisted state loaded
Summary: This diff fixes the issue when some Flipper persisted state is required just after startup, but is loaded too late. This is easy to notice with a flag indicating whether Welcome window should be shown. Even if the flag is disabled, Flipper will still show the window on the next launch because it loads the state later than needed. Differential Revision: D29426004 fbshipit-source-id: 011b5890034a6e254ce9ab834f098f1a2ab62a70 |
||
|
|
9f27b374f4 |
Guess content type if no header present
Summary: Changelog: [Network] The network plugin will now detect utf-8 strings if no content header is present Fixes https://github.com/facebook/flipper/issues/2406 Reviewed By: nikoant Differential Revision: D29388968 fbshipit-source-id: 7017828a5f3f28dcf220eeda1d30888f1fc5f07a |
||
|
|
2b0ce88c22 |
Fix Typo In Setup Doctor (#2506)
Summary: Simple fix for a minor typo ## Changelog SetupDoctorScreen.tsx:55: discoverd -> discovered Pull Request resolved: https://github.com/facebook/flipper/pull/2506 Test Plan: ### Visual diff: |Before: | |---| | <img width="566" alt="Screen Shot 2021-06-24 at 10 59 14 AM" src="https://user-images.githubusercontent.com/68758506/123316824-24cc5380-d4e2-11eb-8337-1e7fa0dbf838.png"> | |After:| | <img width="562" alt="Screen Shot 2021-06-24 at 11 54 32 AM" src="https://user-images.githubusercontent.com/68758506/123317505-f3a05300-d4e2-11eb-89a5-e9903279836f.png"> | Reviewed By: passy Differential Revision: D29390183 Pulled By: cekkaewnumchai fbshipit-source-id: 56869dc778bbce0ab98dda1645e2ac883a139184 |
||
|
|
5b4179d482 |
Move plugin installer away from immutable
Summary: Trying to get rid of immutable_table, which is used in only 3 places. One of them being the plugin installer. Reviewed By: jknoxville Differential Revision: D29295534 fbshipit-source-id: dfae9476635c3a8ebba9f1439905bae693fdfd57 |
||
|
|
729922e8ad |
clean up createTablePlugin abstraction
Summary: createTablePlugin isn't used anymore, since all FB plugins now use flipper-plugin's, version. Verified that no public OSS plugins use the abstraction either. This is part of a bigger stack to clean up immutable js usage / managed table duplication and export performance speed Reviewed By: jknoxville Differential Revision: D29265565 fbshipit-source-id: dd6671f0b3af857db1a512c6658e1ff75c49358d |
||
|
|
2127dea447 |
Fix initialisation error
Summary: There was an initialisation error possible if the crash reporter tried to start with an initial selection (after coming from a deeplink or the notification pane), which would cause an unending update loop. Reviewed By: passy Differential Revision: D29331127 fbshipit-source-id: 14e75e483c232039e6a80aa131fa5ce7c105b670 |
||
|
|
01db303a6e |
Flipper Release: v0.95.0
Summary: Releasing version 0.95.0 Reviewed By: cekkaewnumchai Differential Revision: D29330364 fbshipit-source-id: 19226a166731841fcba91ce6a6da09204c38ced9 |
||
|
|
70c1532ed5 |
Bump set-getter from 0.1.0 to 0.1.1 in /desktop (#2500)
Summary: Bumps [set-getter](https://github.com/doowb/set-getter) from 0.1.0 to 0.1.1. <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/doowb/set-getter/commits/0.1.1">compare view</a></li> </ul> </details> <br /> [](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) You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/facebook/flipper/network/alerts). </details> Pull Request resolved: https://github.com/facebook/flipper/pull/2500 Reviewed By: cekkaewnumchai Differential Revision: D29328248 Pulled By: passy fbshipit-source-id: cd44010f616d937b986f274292a04320ad562e61 |
||
|
|
16e668df9c |
Fix selection not updating
Summary: Fix accidental cleanup last week where selection wasn't updated anymore in crash reporter Reviewed By: cekkaewnumchai Differential Revision: D29328297 fbshipit-source-id: 4a5eb391d1a173e5e7ff189637c3731a483916fc |
||
|
|
603cd08767 |
Stop printing false positive debug message
Summary: Per title. Deserves a more coherent solution. Reviewed By: passy Differential Revision: D29296206 fbshipit-source-id: b8547ebc1f99c24282f79f4b98a8a5fa1d1947cd |
||
|
|
b9250e7795 |
Make screen dimension reflection fast
Summary: After loading a layout plugin snapshot, I noticed the plugin feels really sluggish. I noticed that getDimensions, which recursively walks the full tree, is triggered on every rendering, although the state it introduces is only required when opening a screenshot visualizer. So Moved the function invocation to there. Also did some first steps on supporting iOS; the visualizer will no show a preview of iOS as well. I'll leave implementing the highlights to a volunteer :) Reviewed By: passy Differential Revision: D29262697 fbshipit-source-id: b13b19b013eeeb98abb66fb648a193c69688a7e3 |
||
|
|
c6a7d48864 |
Bump eslint from 7.28.0 to 7.29.0 in /desktop (#2493)
Summary: Bumps [eslint](https://github.com/eslint/eslint) from 7.28.0 to 7.29.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/eslint/eslint/releases">eslint's releases</a>.</em></p> <blockquote> <h2>v7.29.0</h2> <ul> <li><a href=" |
||
|
|
95f1a42c0f |
Bump @types/inquirer from 7.3.1 to 7.3.2 in /desktop (#2488)
Summary: Bumps [types/inquirer](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/inquirer) from 7.3.1 to 7.3.2. <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/inquirer">compare view</a></li> </ul> </details> <br /> [](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/2488 Reviewed By: nikoant Differential Revision: D29264225 Pulled By: mweststrate fbshipit-source-id: bf7080f95bbb654bdc6cc9af144131a354729cb9 |
||
|
|
be997f09ee |
Bump @typescript-eslint/eslint-plugin from 4.26.1 to 4.27.0 in /desktop (#2492)
Summary: Bumps [typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) from 4.26.1 to 4.27.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/typescript-eslint/typescript-eslint/releases"><code>@typescript-eslint/eslint-plugin</code>'s releases</a>.</em></p> <blockquote> <h2>v4.27.0</h2> <h1><a href="https://github.com/typescript-eslint/typescript-eslint/compare/v4.26.1...v4.27.0">4.27.0</a> (2021-06-14)</h1> <h3>Bug Fixes</h3> <ul> <li><strong>eslint-plugin:</strong> allow explicit any for no-unsafe-return (<a href="https://github-redirect.dependabot.com/typescript-eslint/typescript-eslint/issues/3498">#3498</a>) (<a href=" |
||
|
|
da6e6705ac |
Bump @types/node from 15.12.2 to 15.12.4 in /desktop (#2490)
Summary: Bumps [types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 15.12.2 to 15.12.4. <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 /> [](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/2490 Reviewed By: nikoant Differential Revision: D29264230 Pulled By: mweststrate fbshipit-source-id: 646d31335ed728211de35e4038544c0d9f18a5d9 |
||
|
|
143a0da280 |
Bump pretty-format from 26.6.2 to 27.0.2 in /desktop (#2491)
Summary: Bumps [pretty-format](https://github.com/facebook/jest/tree/HEAD/packages/pretty-format) from 26.6.2 to 27.0.2. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/facebook/jest/releases">pretty-format's releases</a>.</em></p> <blockquote> <h2>27.0.2</h2> <h3>Features</h3> <ul> <li><code>[jest-circus]</code> Add some APIs to make it easier to build your own test runner</li> <li><code>[jest-reporters]</code> Expose the <code>getResultHeader</code> util (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/11460">#11460</a>)</li> <li><code>[jest-resolver]</code> Export <code>resolve*</code> utils for different Jest modules (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/11466">#11466</a>)</li> <li><code>[jest/test-result]</code> Export <code>Test</code>, <code>TestEvents</code> and <code>TestFileEvent</code> (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/11466">#11466</a>)</li> </ul> <h3>Fixes</h3> <ul> <li><code>[jest-circus]</code> Add missing <code>slash</code> dependency (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/11465">#11465</a>)</li> <li><code>[jest-circus, jest/test-sequencer]</code> Remove dependency on <code>jest-runner</code> (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/11466">#11466</a>)</li> <li><code>[jest-config]</code> Resolve <code>config.runner</code> to absolute path (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/11465">#11465</a>)</li> <li><code>[jest-config]</code> Make sure to support functions as config (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/11475">#11475</a>)</li> <li><code>[jest-core]</code> Do not warn about <code>DNSCHANNEL</code> handles when using the <code>--detectOpenHandles</code> option (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/11470">#11470</a>)</li> <li><code>[jest-runner]</code> Remove dependency on <code>jest-config</code> (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/11466">#11466</a>)</li> <li><code>[jest-worker]</code> Loosen engine requirement to <code>>= 10.13.0</code> (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/11451">#11451</a>)</li> </ul> <h2>27.0.1</h2> <h3>Fixes</h3> <ul> <li><code>[jest-environment-jsdom]</code> Bump version of JSDOM to avoid deprecated <code>request</code> package (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/11442">#11442</a>)</li> </ul> <h2>27.0.0</h2> <p><a href="https://jestjs.io/blog/2021/03/09/jest-website-upgrade">Blog post</a></p> <h3>Features</h3> <ul> <li><code>[babel-jest]</code> Add async transformation (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/11192">#11192</a>)</li> <li><code>[jest-changed-files]</code> Use '--' to separate paths from revisions (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/11160">#11160</a>)</li> <li><code>[jest-circus]</code> [<strong>BREAKING</strong>] Fail tests when multiple <code>done()</code> calls are made (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/10624">#10624</a>)</li> <li><code>[jest-circus, jest-jasmine2]</code> [<strong>BREAKING</strong>] Fail the test instead of just warning when describe returns a value (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/10947">#10947</a>)</li> <li><code>[jest-config]</code> [<strong>BREAKING</strong>] Default to Node testing environment instead of browser (JSDOM) (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/9874">#9874</a>)</li> <li><code>[jest-config]</code> [<strong>BREAKING</strong>] Use <code>jest-circus</code> as default test runner (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/10686">#10686</a>)</li> <li><code>[jest-config]</code> Add support for <code>preset</code> written in ESM (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/11200">#11200</a>)</li> <li><code>[jest-config, jest-runtime]</code> Support ESM for files other than <code>.js</code> and <code>.mjs</code> (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/10823">#10823</a>)</li> <li><code>[jest-config, jest-runtime]</code> [<strong>BREAKING</strong>] Use "modern" implementation as default for fake timers (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/10874">#10874</a> & <a href="https://github-redirect.dependabot.com/facebook/jest/pull/11197">#11197</a>)</li> <li><code>[jest-config</code> Allow passing <code>forceNodeFilesystemAPI</code> through to <code>jest-haste-map</code> (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/11264">#11264</a>)</li> <li><code>[jest-config, jest-haste-map, jest-resolve, jest-runner, jest-runtime, jest-test-sequencer, jest-transform, jest-types]</code> [<strong>BREAKING</strong>] Add custom HasteMap class implementation config option (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/11107">#11107</a>)</li> <li><code>[jest-core]</code> make <code>TestWatcher</code> extend <code>emittery</code> (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/10324">#10324</a>)</li> <li><code>[jest-core]</code> Run failed tests interactively the same way we do with snapshots (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/10858">#10858</a>)</li> <li><code>[jest-core]</code> more <code>TestSequencer</code> methods can be async (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/10980">#10980</a>)</li> <li><code>[jest-core]</code> Add support for <code>testSequencer</code> written in ESM (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/11207">#11207</a>)</li> <li><code>[jest-core]</code> Add support for <code>globalSetup</code> and <code>globalTeardown</code> written in ESM (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/11267">#11267</a>)</li> <li><code>[jest-core]</code> Add support for <code>watchPlugins</code> written in ESM (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/11315">#11315</a>)</li> <li><code>[jest-core]</code> Add support for <code>runner</code> written in ESM (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/11232">#11232</a>)</li> <li><code>[jest-core]</code> Add support for <code>reporters</code> written in ESM (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/11427">#11427</a>)</li> <li><code>[jest-each]</code> Add support for interpolation with object properties (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/11388">#11388</a>)</li> <li><code>[jest-environment-node]</code> Add AbortController to globals (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/11182">#11182</a>)</li> <li><code>[jest/fake-timers]</code> Update to <code>sinonjs/fake-timers</code> to v7 (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/11198">#11198</a>)</li> </ul> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/facebook/jest/blob/master/CHANGELOG.md">pretty-format's changelog</a>.</em></p> <blockquote> <h2>27.0.2</h2> <h3>Features</h3> <ul> <li><code>[jest-circus]</code> Add some APIs to make it easier to build your own test runner</li> <li><code>[jest-reporters]</code> Expose the <code>getResultHeader</code> util (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/11460">#11460</a>)</li> <li><code>[jest-resolver]</code> Export <code>resolve*</code> utils for different Jest modules (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/11466">#11466</a>)</li> <li><code>[jest/test-result]</code> Export <code>Test</code>, <code>TestEvents</code> and <code>TestFileEvent</code> (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/11466">#11466</a>)</li> </ul> <h3>Fixes</h3> <ul> <li><code>[jest-circus]</code> Add missing <code>slash</code> dependency (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/11465">#11465</a>)</li> <li><code>[jest-circus, jest/test-sequencer]</code> Remove dependency on <code>jest-runner</code> (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/11466">#11466</a>)</li> <li><code>[jest-config]</code> Resolve <code>config.runner</code> to absolute path (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/11465">#11465</a>)</li> <li><code>[jest-config]</code> Make sure to support functions as config (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/11475">#11475</a>)</li> <li><code>[jest-core]</code> Do not warn about <code>DNSCHANNEL</code> handles when using the <code>--detectOpenHandles</code> option (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/11470">#11470</a>)</li> <li><code>[jest-runner]</code> Remove dependency on <code>jest-config</code> (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/11466">#11466</a>)</li> <li><code>[jest-worker]</code> Loosen engine requirement to <code>>= 10.13.0</code> (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/11451">#11451</a>)</li> </ul> <h2>27.0.1</h2> <h3>Fixes</h3> <ul> <li><code>[jest-environment-jsdom]</code> Bump version of JSDOM to avoid deprecated <code>request</code> package (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/11442">#11442</a>)</li> </ul> <h2>27.0.0</h2> <h3>Features</h3> <ul> <li><code>[babel-jest]</code> Add async transformation (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/11192">#11192</a>)</li> <li><code>[jest-changed-files]</code> Use '--' to separate paths from revisions (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/11160">#11160</a>)</li> <li><code>[jest-circus]</code> [<strong>BREAKING</strong>] Fail tests when multiple <code>done()</code> calls are made (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/10624">#10624</a>)</li> <li><code>[jest-circus, jest-jasmine2]</code> [<strong>BREAKING</strong>] Fail the test instead of just warning when describe returns a value (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/10947">#10947</a>)</li> <li><code>[jest-config]</code> [<strong>BREAKING</strong>] Default to Node testing environment instead of browser (JSDOM) (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/9874">#9874</a>)</li> <li><code>[jest-config]</code> [<strong>BREAKING</strong>] Use <code>jest-circus</code> as default test runner (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/10686">#10686</a>)</li> <li><code>[jest-config]</code> Add support for <code>preset</code> written in ESM (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/11200">#11200</a>)</li> <li><code>[jest-config, jest-runtime]</code> Support ESM for files other than <code>.js</code> and <code>.mjs</code> (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/10823">#10823</a>)</li> <li><code>[jest-config, jest-runtime]</code> [<strong>BREAKING</strong>] Use "modern" implementation as default for fake timers (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/10874">#10874</a> & <a href="https://github-redirect.dependabot.com/facebook/jest/pull/11197">#11197</a>)</li> <li><code>[jest-config</code> Allow passing <code>forceNodeFilesystemAPI</code> through to <code>jest-haste-map</code> (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/11264">#11264</a>)</li> <li><code>[jest-config, jest-haste-map, jest-resolve, jest-runner, jest-runtime, jest-test-sequencer, jest-transform, jest-types]</code> [<strong>BREAKING</strong>] Add custom HasteMap class implementation config option (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/11107">#11107</a>)</li> <li><code>[jest-core]</code> make <code>TestWatcher</code> extend <code>emittery</code> (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/10324">#10324</a>)</li> <li><code>[jest-core]</code> Run failed tests interactively the same way we do with snapshots (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/10858">#10858</a>)</li> <li><code>[jest-core]</code> more <code>TestSequencer</code> methods can be async (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/10980">#10980</a>)</li> <li><code>[jest-core]</code> Add support for <code>testSequencer</code> written in ESM (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/11207">#11207</a>)</li> <li><code>[jest-core]</code> Add support for <code>globalSetup</code> and <code>globalTeardown</code> written in ESM (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/11267">#11267</a>)</li> <li><code>[jest-core]</code> Add support for <code>watchPlugins</code> written in ESM (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/11315">#11315</a>)</li> <li><code>[jest-core]</code> Add support for <code>runner</code> written in ESM (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/11232">#11232</a>)</li> <li><code>[jest-core]</code> Add support for <code>reporters</code> written in ESM (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/11427">#11427</a>)</li> <li><code>[jest-each]</code> Add support for interpolation with object properties (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/11388">#11388</a>)</li> <li><code>[jest-environment-node]</code> Add AbortController to globals (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/11182">#11182</a>)</li> </ul> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
||
|
|
ccc2a9392b |
Bump open from 8.2.0 to 8.2.1 in /desktop (#2489)
Summary: Bumps [open](https://github.com/sindresorhus/open) from 8.2.0 to 8.2.1. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/sindresorhus/open/releases">open's releases</a>.</em></p> <blockquote> <h2>v8.2.1</h2> <ul> <li>Gracefully handle reused array being passed in (<a href="https://github-redirect.dependabot.com/sindresorhus/open/issues/255">https://github.com/facebook/flipper/issues/255</a>) 492445a</li> </ul> <p><a href="https://github.com/sindresorhus/open/compare/v8.2.0...v8.2.1">https://github.com/sindresorhus/open/compare/v8.2.0...v8.2.1</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
||
|
|
55166598c7 |
Bump ws from 7.4.6 to 7.5.0 in /desktop (#2487)
Summary: Bumps [ws](https://github.com/websockets/ws) from 7.4.6 to 7.5.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/websockets/ws/releases">ws's releases</a>.</em></p> <blockquote> <h2>7.5.0</h2> <h1>Features</h1> <ul> <li>Some errors now have a <code>code</code> property describing the specific type of error that has occurred (<a href="https://github-redirect.dependabot.com/websockets/ws/issues/1901">https://github.com/facebook/flipper/issues/1901</a>).</li> </ul> <h1>Bug fixes</h1> <ul> <li>A close frame is now sent to the remote peer if an error (such as a data framing error) occurs (8806aa9a).</li> <li>The close code is now always 1006 if no close frame is received, even if the connection is closed due to an error (8806aa9a).</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
||
|
|
8df81d2dc0 |
Generate source maps for releases
Summary: Allows for optional generation of source maps while building plugins. Caveat: This will leave a broken `//# sourceMappingURL` comment at the bottom. If you set it to `null`, as the documentation suggests, you will instead get an inlined source map in addition to the written one. Reviewed By: nikoant Differential Revision: D29265385 fbshipit-source-id: 1e21e49d2516ecc5909b086e7797736b298b86ab |
||
|
|
640e06f130 |
Update tests to use the sandyLegacy wrapper by default
Summary: Changed unit test infra to wrap legacy plugins by default in Sandy, and adapted tests where needed. Reviewed By: nikoant Differential Revision: D29264660 fbshipit-source-id: fe7cbc8af826afac5f945103586b3cb9647e7fbd |
||
|
|
00e2c803ef |
Add wrapper support for getActiveNotifications
Summary: Add support for getActive notifications in Sandy wrapped legacy plugins Reviewed By: passy Differential Revision: D29234071 fbshipit-source-id: e05861e27426a592756645441c934b2c76154d44 |
||
|
|
6fb28df855 |
Make Store initialization independent of module order
Summary: Changed some imports, and again the Flipper initialisation broke. Refactored the store initialization to create nowhere module local constants, which prevents generally against module loading issues, making it possible to load all code first, and then intialise things through the `init()` method, which should make Flipper initialisation a lot more robust to changes Reviewed By: passy Differential Revision: D29233603 fbshipit-source-id: 322cb87cba23228b1d7a88634b7b3995e27cc277 |
||
|
|
806dd63f68 |
Add wrapper support for import / export states
Summary: Make sure custom export handlers of classic plugins wrapped in Sandy are respected Reviewed By: passy Differential Revision: D29233604 fbshipit-source-id: 7bab33af3422e0b59697438577906ce8580a28ad |
||
|
|
e40faaef3f |
Add keyboard support to Sandy plugin wrapper
Summary: Per title / see rest of the stack Reviewed By: passy Differential Revision: D29196711 fbshipit-source-id: 63ea52a07b61a11c1ad4013985c5b005045dcf0a |
||
|
|
c1860ec19c |
Introduce Sandy wrapper for legacy plugins
Summary: This diff introduces loading classic Flipper plugins in a Sandy container. By wrapping plugins into Sandy we will be able to remove a lot of code / logic duplication related to state, queue processing, serialization etc. This will allow us to remove most or all of the complex plugin logic from the old system, only keeping onto the legacy components which have a lower maintenance burden. Until all plugins are Sandy. This diff is not feature complete but only implements the core mechanisms for (persisted) state and communication. Keyboard support, serialization, and rewiring tests etc will be added in next diff. The feature is introduced behind GK flipper_use_sandy_plugin_wrapper to have kill switch. Tests will be added later in this diff by redirection a part of the current mechanisms to wrapped plugins. (Will land the stack as a whole) Reviewed By: passy Differential Revision: D29165866 fbshipit-source-id: 57f84794a4a5f898bf765ce2de13cc759267fbc6 |
||
|
|
07199323d1 |
Remove Newsfeed Story Inspector and native plugin mechanism
Summary: Changelog: The 'nativeplugins' on Android are no longer supported Reviewed By: jknoxville Differential Revision: D29163281 fbshipit-source-id: fb4032f240fc306608fe57479f3124d4e7a3400f |
||
|
|
244e3a434c |
Disable data-source terser minification
Summary: I don't think this should make a difference in our size. Will see in the size check. This makes it quite hard right now to read errors that involve the data-source package because terser runs over it. Reviewed By: nikoant Differential Revision: D29228941 fbshipit-source-id: 8cc79e4148be0e8ced9186323967bc79ba781c0b |
||
|
|
068b00c156 |
Improved Flipper update message message
Summary: In support group telling users to merely "pull" seemed to be a bit too vague instruction. Reviewed By: passy Differential Revision: D29225726 fbshipit-source-id: 5c0db1b2d3afd2a398d28caf3438f2959e5d46f1 |
||
|
|
f58e5ef7c9 |
Updated launch.json to pass TZ=Pacific/Pohnpei on debugging jest tests in VSCode
Summary: Running jests tests now requires TZ to be set, so updated launch.json to pass it when debugging is started in VSCode. Reviewed By: mweststrate Differential Revision: D29162031 fbshipit-source-id: 7e767563dd2545f79603ef6a203601056f47414f |
||
|
|
ac9ef7620a |
Refactor plugin lists computations
Summary: This is purely refactoring change. Before that we computed plugin lists in-place in PluginList component. Now we will be re-computing them as side effect and will keep computed lists in redux. This makes it easier to re-use plugin lists in other places outside of PluginList component, e.g. in the upcoming Marketplace UI. Reviewed By: mweststrate Differential Revision: D29161719 fbshipit-source-id: 5cb06d4d8a553aa856101c78b2311fbc078c6bd7 |
||
|
|
0d6262aa5e |
Bump @babel/core from 7.14.3 to 7.14.6 in /desktop (#2468)
Summary: Bumps [babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core) from 7.14.3 to 7.14.6. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/babel/babel/releases"><code>@babel/core</code>'s releases</a>.</em></p> <blockquote> <h2>v7.14.5 (2021-06-09)</h2> <p>Thanks <a href="https://github.com/Eyoatam"><code>@Eyoatam</code></a>, <a href="https://github.com/lightmare"><code>@lightmare</code></a>, <a href="https://github.com/ota-meshi"><code>@ota-meshi</code></a>, and <a href="https://github.com/tony-go"><code>@tony-go</code></a> for your first PRs!</p> <h4>👓 Spec Compliance</h4> <ul> <li><code>babel-plugin-proposal-do-expressions</code>, <code>babel-traverse</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13122">#13122</a> fix: hoist variable declaration within do block (<a href="https://github.com/JLHwung"><code>@JLHwung</code></a>)</li> </ul> </li> <li><code>babel-parser</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13409">#13409</a> Relax import assertion key-is-type constraint (<a href="https://github.com/JLHwung"><code>@JLHwung</code></a>)</li> </ul> </li> </ul> <h4>🐛 Bug Fix</h4> <ul> <li><code>babel-parser</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13418">#13418</a> fix(parser): correctly parse record and tuple tokens (<a href="https://github.com/fedeci"><code>@fedeci</code></a>)</li> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13410">#13410</a> fix: throw when <code>async()</code> call param is object with assignement (<a href="https://github.com/tony-go"><code>@tony-go</code></a>)</li> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13396">#13396</a> Add support for d flag of regex literals in parser (<a href="https://github.com/ota-meshi"><code>@ota-meshi</code></a>)</li> </ul> </li> <li><code>babel-helpers</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13404">#13404</a> fix generate-helpers failing in URL-encoded path (<a href="https://github.com/lightmare"><code>@lightmare</code></a>)</li> </ul> </li> </ul> <h4>🏠 Internal</h4> <ul> <li><code>babel-helper-hoist-variables</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13442">#13442</a> Disallow dependency cycles (<a href="https://github.com/nicolo-ribaudo"><code>@nicolo-ribaudo</code></a>)</li> </ul> </li> <li><code>babel-parser</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13440">#13440</a> update test fixtures (<a href="https://github.com/JLHwung"><code>@JLHwung</code></a>)</li> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13431">#13431</a> Reduce <code>exprAllowed</code> usage (<a href="https://github.com/JLHwung"><code>@JLHwung</code></a>)</li> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13422">#13422</a> fix(<code>babel/parser</code>): fix tokenizer context update code (<a href="https://github.com/Eyoatam"><code>@Eyoatam</code></a>)</li> </ul> </li> <li>Other <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13420">#13420</a> chore: specify <code>@babel/eslint-parser</code> deps (<a href="https://github.com/JLHwung"><code>@JLHwung</code></a>)</li> </ul> </li> <li><em>Every package</em> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13363">#13363</a> chore: setup Yarn constraints (<a href="https://github.com/merceyz"><code>@merceyz</code></a>)</li> </ul> </li> </ul> <h4>🏃♀️ Performance</h4> <ul> <li><code>babel-parser</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13408">#13408</a> Use set in parser scope (<a href="https://github.com/JLHwung"><code>@JLHwung</code></a>)</li> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13386">#13386</a> Faster checkReservedWord (<a href="https://github.com/JLHwung"><code>@JLHwung</code></a>)</li> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13406">#13406</a> Back parser state <code>exportedIdentifiers</code> by set (<a href="https://github.com/JLHwung"><code>@JLHwung</code></a>)</li> </ul> </li> </ul> <h4>Committers: 9</h4> <ul> <li>Daniel Tschinder (<a href="https://github.com/danez"><code>@danez</code></a>)</li> <li>Eyoatam Tamirat (<a href="https://github.com/Eyoatam"><code>@Eyoatam</code></a>)</li> <li>Federico Ciardi (<a href="https://github.com/fedeci"><code>@fedeci</code></a>)</li> <li>Huáng Jùnliàng (<a href="https://github.com/JLHwung"><code>@JLHwung</code></a>)</li> <li>Kristoffer K. (<a href="https://github.com/merceyz"><code>@merceyz</code></a>)</li> <li>Nicolò Ribaudo (<a href="https://github.com/nicolo-ribaudo"><code>@nicolo-ribaudo</code></a>)</li> <li>Tony Gorez (<a href="https://github.com/tony-go"><code>@tony-go</code></a>)</li> <li>Yosuke Ota (<a href="https://github.com/ota-meshi"><code>@ota-meshi</code></a>)</li> <li><a href="https://github.com/lightmare"><code>@lightmare</code></a></li> </ul> <h2>v7.14.4 (2021-05-28)</h2> <p>Thanks <a href="https://github.com/alanorozco"><code>@alanorozco</code></a>, <a href="https://github.com/devfservant"><code>@devfservant</code></a>, <a href="https://github.com/merceyz"><code>@merceyz</code></a>, <a href="https://github.com/mmorel-35"><code>@mmorel-35</code></a> (and <a href="https://github.com/renovate-bot"><code>@renovate-bot</code></a>! 🤖), <a href="https://github.com/sokra"><code>@sokra</code></a>, and <a href="https://github.com/wbinnssmith"><code>@wbinnssmith</code></a> for your first PRs!</p> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/babel/babel/blob/main/CHANGELOG.md"><code>@babel/core</code>'s changelog</a>.</em></p> <blockquote> <h2>v7.14.6 (2021-06-14)</h2> <h4>🐛 Bug Fix</h4> <ul> <li><code>babel-plugin-transform-spread</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13459">#13459</a> babel-plugin-transform-spread add missing argument in build calls (<a href="https://github.com/zxbodya"><code>@zxbodya</code></a>)</li> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13439">#13439</a> Correctly transform spreads of arrays with holes (<a href="https://github.com/nicolo-ribaudo"><code>@nicolo-ribaudo</code></a>)</li> </ul> </li> <li><code>babel-helpers</code>, <code>babel-plugin-transform-destructuring</code>, <code>babel-plugin-transform-modules-commonjs</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13444">#13444</a> fix destructuring of empty string (<a href="https://github.com/lala7573"><code>@lala7573</code></a>)</li> </ul> </li> <li><code>babel-helper-create-class-features-plugin</code>, <code>babel-plugin-proposal-class-properties</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13429">#13429</a> fix: reference to class expression in private method (<a href="https://github.com/lala7573"><code>@lala7573</code></a>)</li> </ul> </li> <li><code>babel-parser</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13428">#13428</a> [ts] Support override modifiers for parameter properties (<a href="https://github.com/sosukesuzuki"><code>@sosukesuzuki</code></a>)</li> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13449">#13449</a> Disallow JSX tag forming after TS non-null assertion (<a href="https://github.com/JLHwung"><code>@JLHwung</code></a>)</li> </ul> </li> </ul> <h4>🏠 Internal</h4> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13423">#13423</a> Faster babel build (<a href="https://github.com/JLHwung"><code>@JLHwung</code></a>)</li> </ul> <h4>🏃♀️ Performance</h4> <ul> <li><code>babel-parser</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13453">#13453</a> Faster readRegexp (<a href="https://github.com/JLHwung"><code>@JLHwung</code></a>)</li> </ul> </li> </ul> <h2>v7.14.5 (2021-06-09)</h2> <h4>👓 Spec Compliance</h4> <ul> <li><code>babel-plugin-proposal-do-expressions</code>, <code>babel-traverse</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13122">#13122</a> fix: hoist variable declaration within do block (<a href="https://github.com/JLHwung"><code>@JLHwung</code></a>)</li> </ul> </li> <li><code>babel-parser</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13409">#13409</a> Relax import assertion key-is-type constraint (<a href="https://github.com/JLHwung"><code>@JLHwung</code></a>)</li> </ul> </li> </ul> <h4>🐛 Bug Fix</h4> <ul> <li><code>babel-parser</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13418">#13418</a> fix(parser): correctly parse record and tuple tokens (<a href="https://github.com/fedeci"><code>@fedeci</code></a>)</li> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13410">#13410</a> fix: throw when <code>async()</code> call param is object with assignement (<a href="https://github.com/tony-go"><code>@tony-go</code></a>)</li> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13396">#13396</a> Add support for d flag of regex literals in parser (<a href="https://github.com/ota-meshi"><code>@ota-meshi</code></a>)</li> </ul> </li> <li><code>babel-helpers</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13404">#13404</a> fix generate-helpers failing in URL-encoded path (<a href="https://github.com/lightmare"><code>@lightmare</code></a>)</li> </ul> </li> </ul> <h4>🏠 Internal</h4> <ul> <li><code>babel-helper-hoist-variables</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13442">#13442</a> Disallow dependency cycles (<a href="https://github.com/nicolo-ribaudo"><code>@nicolo-ribaudo</code></a>)</li> </ul> </li> <li><code>babel-parser</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13440">#13440</a> update test fixtures (<a href="https://github.com/JLHwung"><code>@JLHwung</code></a>)</li> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13431">#13431</a> Reduce <code>exprAllowed</code> usage (<a href="https://github.com/JLHwung"><code>@JLHwung</code></a>)</li> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13422">#13422</a> fix(<code>babel/parser</code>): fix tokenizer context update code (<a href="https://github.com/Eyoatam"><code>@Eyoatam</code></a>)</li> </ul> </li> <li>Other <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13420">#13420</a> chore: specify <code>@babel/eslint-parser</code> deps (<a href="https://github.com/JLHwung"><code>@JLHwung</code></a>)</li> </ul> </li> <li><code>babel-cli</code>, <code>babel-code-frame</code>, <code>babel-compat-data</code>, <code>babel-core</code>, <code>babel-generator</code>, <code>babel-helper-annotate-as-pure</code>, <code>babel-helper-builder-binary-assignment-operator-visitor</code>, <code>babel-helper-builder-react-jsx</code>, <code>babel-helper-compilation-targets</code>, <code>babel-helper-create-class-features-plugin</code>, <code>babel-helper-create-regexp-features-plugin</code>, <code>babel-helper-define-map</code>, <code>babel-helper-explode-assignable-expression</code>, <code>babel-helper-fixtures</code>, <code>babel-helper-function-name</code>, <code>babel-helper-get-function-arity</code>, <code>babel-helper-hoist-variables</code>, <code>babel-helper-member-expression-to-functions</code>, <code>babel-helper-module-imports</code>, <code>babel-helper-module-transforms</code>, <code>babel-helper-optimise-call-expression</code>, <code>babel-helper-plugin-test-runner</code>, <code>babel-helper-plugin-utils</code>, <code>babel-helper-remap-async-to-generator</code>, <code>babel-helper-replace-supers</code>, <code>babel-helper-simple-access</code>, <code>babel-helper-skip-transparent-expression-wrappers</code>, <code>babel-helper-split-export-declaration</code>, <code>babel-helper-transform-fixture-test-runner</code>, <code>babel-helper-validator-identifier</code>, <code>babel-helper-validator-option</code>, <code>babel-helper-wrap-function</code>, <code>babel-helpers</code>, <code>babel-highlight</code>, <code>babel-node</code>, <code>babel-parser</code>, <code>babel-plugin-bugfix-v8-spread-parameters-in-optional-chaining</code>, <code>babel-plugin-external-helpers</code>, <code>babel-plugin-proposal-async-do-expressions</code>, <code>babel-plugin-proposal-async-generator-functions</code>, <code>babel-plugin-proposal-class-properties</code>, <code>babel-plugin-proposal-class-static-block</code>, <code>babel-plugin-proposal-decorators</code>, <code>babel-plugin-proposal-do-expressions</code>, <code>babel-plugin-proposal-dynamic-import</code>, <code>babel-plugin-proposal-export-default-from</code>, <code>babel-plugin-proposal-export-namespace-from</code>, <code>babel-plugin-proposal-function-bind</code>, <code>babel-plugin-proposal-function-sent</code>, <code>babel-plugin-proposal-json-strings</code>, <code>babel-plugin-proposal-logical-assignment-operators</code>, <code>babel-plugin-proposal-nullish-coalescing-operator</code>, <code>babel-plugin-proposal-numeric-separator</code>, <code>babel-plugin-proposal-object-rest-spread</code>, <code>babel-plugin-proposal-optional-catch-binding</code>, <code>babel-plugin-proposal-optional-chaining</code>, <code>babel-plugin-proposal-partial-application</code>, <code>babel-plugin-proposal-pipeline-operator</code>, <code>babel-plugin-proposal-private-methods</code>, <code>babel-plugin-proposal-private-property-in-object</code>, <code>babel-plugin-proposal-record-and-tuple</code>, <code>babel-plugin-proposal-throw-expressions</code>, <code>babel-plugin-proposal-unicode-property-regex</code>, <code>babel-plugin-syntax-async-do-expressions</code>, <code>babel-plugin-syntax-class-static-block</code>, <code>babel-plugin-syntax-decimal</code>, <code>babel-plugin-syntax-decorators</code>, <code>babel-plugin-syntax-do-expressions</code>, <code>babel-plugin-syntax-export-default-from</code>, <code>babel-plugin-syntax-flow</code>, <code>babel-plugin-syntax-function-bind</code>, <code>babel-plugin-syntax-function-sent</code>, <code>babel-plugin-syntax-import-assertions</code>, <code>babel-plugin-syntax-jsx</code>, <code>babel-plugin-syntax-module-blocks</code>, <code>babel-plugin-syntax-partial-application</code>, <code>babel-plugin-syntax-pipeline-operator</code>, <code>babel-plugin-syntax-private-property-in-object</code>, <code>babel-plugin-syntax-record-and-tuple</code>, <code>babel-plugin-syntax-throw-expressions</code>, <code>babel-plugin-syntax-top-level-await</code>, <code>babel-plugin-syntax-typescript</code>, <code>babel-plugin-transform-arrow-functions</code>, <code>babel-plugin-transform-async-to-generator</code>, <code>babel-plugin-transform-block-scoped-functions</code>, <code>babel-plugin-transform-block-scoping</code>, <code>babel-plugin-transform-classes</code>, <code>babel-plugin-transform-computed-properties</code>, <code>babel-plugin-transform-destructuring</code>, <code>babel-plugin-transform-dotall-regex</code>, <code>babel-plugin-transform-duplicate-keys</code>, <code>babel-plugin-transform-exponentiation-operator</code>, <code>babel-plugin-transform-flow-comments</code>, <code>babel-plugin-transform-flow-strip-types</code>, <code>babel-plugin-transform-for-of</code>, <code>babel-plugin-transform-function-name</code>, <code>babel-plugin-transform-instanceof</code>, <code>babel-plugin-transform-jscript</code>, <code>babel-plugin-transform-literals</code>, <code>babel-plugin-transform-member-expression-literals</code>, <code>babel-plugin-transform-modules-amd</code>, <code>babel-plugin-transform-modules-commonjs</code>, <code>babel-plugin-transform-modules-systemjs</code>, <code>babel-plugin-transform-modules-umd</code>, <code>babel-plugin-transform-named-capturing-groups-regex</code>, <code>babel-plugin-transform-new-target</code>, <code>babel-plugin-transform-object-assign</code>, <code>babel-plugin-transform-object-set-prototype-of-to-assign</code>, <code>babel-plugin-transform-object-super</code>, <code>babel-plugin-transform-parameters</code>, <code>babel-plugin-transform-property-literals</code>, <code>babel-plugin-transform-property-mutators</code>, <code>babel-plugin-transform-proto-to-assign</code>, <code>babel-plugin-transform-react-constant-elements</code>, <code>babel-plugin-transform-react-display-name</code>, <code>babel-plugin-transform-react-inline-elements</code>, <code>babel-plugin-transform-react-jsx-compat</code>, <code>babel-plugin-transform-react-jsx-development</code>, <code>babel-plugin-transform-react-jsx-self</code>, <code>babel-plugin-transform-react-jsx-source</code>, <code>babel-plugin-transform-react-jsx</code>, <code>babel-plugin-transform-react-pure-annotations</code>, <code>babel-plugin-transform-regenerator</code>, <code>babel-plugin-transform-reserved-words</code>, <code>babel-plugin-transform-runtime</code>, <code>babel-plugin-transform-shorthand-properties</code>, <code>babel-plugin-transform-spread</code>, <code>babel-plugin-transform-sticky-regex</code>, <code>babel-plugin-transform-strict-mode</code>, <code>babel-plugin-transform-template-literals</code>, <code>babel-plugin-transform-typeof-symbol</code>, <code>babel-plugin-transform-typescript</code>, <code>babel-plugin-transform-unicode-escapes</code>, <code>babel-plugin-transform-unicode-regex</code>, <code>babel-preset-env</code>, <code>babel-preset-flow</code>, <code>babel-preset-react</code>, <code>babel-preset-typescript</code>, <code>babel-register</code>, <code>babel-runtime-corejs2</code>, <code>babel-runtime-corejs3</code>, <code>babel-runtime</code>, <code>babel-standalone</code>, <code>babel-template</code>, <code>babel-traverse</code>, <code>babel-types</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13363">#13363</a> chore: setup Yarn constraints (<a href="https://github.com/merceyz"><code>@merceyz</code></a>)</li> </ul> </li> </ul> <h4>🏃♀️ Performance</h4> <ul> <li><code>babel-parser</code></li> </ul> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
||
|
|
e708b2b693 |
Fix links not always opening outside Electron
Summary: Changelog: Fix links not always openening in the Browser As reported in https://fb.workplace.com/groups/flippersupport/permalink/1154240895056567/, in some cases links would open inside Flipper itself, and as a result the user would be stick as he can't navigate away. This happened only when a `Link` was being deconstructed from `Typography` by a module that was loaded before `Link.tsx`, which fixes `Typography.Link` to do that automatically. For example: ``` import {Typograph} from "antd" const {Link} = Typography; ``` Addressed this issue by patching the antd package directly during build, rather than during application start. Reviewed By: passy Differential Revision: D29193899 fbshipit-source-id: b291018406e343c0f7de1d1d899924902159d8c7 |
||
|
|
c83bd7900f |
Deprecate Native plugins
Reviewed By: fabiomassimo Differential Revision: D29163280 fbshipit-source-id: 368e966bf86cc0de1ee0125a6b1166811ef6d2f0 |
||
|
|
1facf49bbf |
Bump @babel/plugin-transform-typescript from 7.14.5 to 7.14.6 in /desktop (#2471)
Summary: Bumps [babel/plugin-transform-typescript](https://github.com/babel/babel/tree/HEAD/packages/babel-plugin-transform-typescript) from 7.14.5 to 7.14.6. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/babel/babel/blob/main/CHANGELOG.md"><code>@babel/plugin-transform-typescript</code>'s changelog</a>.</em></p> <blockquote> <h2>v7.14.6 (2021-06-14)</h2> <h4>🐛 Bug Fix</h4> <ul> <li><code>babel-plugin-transform-spread</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13459">#13459</a> babel-plugin-transform-spread add missing argument in build calls (<a href="https://github.com/zxbodya"><code>@zxbodya</code></a>)</li> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13439">#13439</a> Correctly transform spreads of arrays with holes (<a href="https://github.com/nicolo-ribaudo"><code>@nicolo-ribaudo</code></a>)</li> </ul> </li> <li><code>babel-helpers</code>, <code>babel-plugin-transform-destructuring</code>, <code>babel-plugin-transform-modules-commonjs</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13444">#13444</a> fix destructuring of empty string (<a href="https://github.com/lala7573"><code>@lala7573</code></a>)</li> </ul> </li> <li><code>babel-helper-create-class-features-plugin</code>, <code>babel-plugin-proposal-class-properties</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13429">#13429</a> fix: reference to class expression in private method (<a href="https://github.com/lala7573"><code>@lala7573</code></a>)</li> </ul> </li> <li><code>babel-parser</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13428">#13428</a> [ts] Support override modifiers for parameter properties (<a href="https://github.com/sosukesuzuki"><code>@sosukesuzuki</code></a>)</li> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13449">#13449</a> Disallow JSX tag forming after TS non-null assertion (<a href="https://github.com/JLHwung"><code>@JLHwung</code></a>)</li> </ul> </li> </ul> <h4>🏠 Internal</h4> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13423">#13423</a> Faster babel build (<a href="https://github.com/JLHwung"><code>@JLHwung</code></a>)</li> </ul> <h4>🏃♀️ Performance</h4> <ul> <li><code>babel-parser</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13453">#13453</a> Faster readRegexp (<a href="https://github.com/JLHwung"><code>@JLHwung</code></a>)</li> </ul> </li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
||
|
|
9a9105ff10 |
Bump algoliasearch from 4.9.2 to 4.9.3 in /desktop (#2470)
Summary: Bumps [algoliasearch](https://github.com/algolia/algoliasearch-client-javascript) from 4.9.2 to 4.9.3. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/algolia/algoliasearch-client-javascript/releases">algoliasearch's releases</a>.</em></p> <blockquote> <h2>4.9.3</h2> <h2><a href="https://github.com/algolia/algoliasearch-client-javascript/compare/4.9.2...4.9.3">v4.9.3</a></h2> <ul> <li>fix(ts): make all keys in facetOrdering optional (<a href="https://github.com/algolia/algoliasearch-client-javascript/commit/d772f98">d772f98</a>)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/algolia/algoliasearch-client-javascript/blob/master/CHANGELOG.md">algoliasearch's changelog</a>.</em></p> <blockquote> <h2><a href="https://github.com/algolia/algoliasearch-client-javascript/compare/4.9.2...4.9.3">v4.9.3</a></h2> <ul> <li>fix(ts): make all keys in facetOrdering optional (<a href="https://github.com/algolia/algoliasearch-client-javascript/commit/d772f98">d772f98</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
||
|
|
ede1d6e51f |
Bump @babel/parser from 7.14.4 to 7.14.6 in /desktop (#2467)
Summary: Bumps [babel/parser](https://github.com/babel/babel/tree/HEAD/packages/babel-parser) from 7.14.4 to 7.14.6. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/babel/babel/releases"><code>@babel/parser</code>'s releases</a>.</em></p> <blockquote> <h2>v7.14.5 (2021-06-09)</h2> <p>Thanks <a href="https://github.com/Eyoatam"><code>@Eyoatam</code></a>, <a href="https://github.com/lightmare"><code>@lightmare</code></a>, <a href="https://github.com/ota-meshi"><code>@ota-meshi</code></a>, and <a href="https://github.com/tony-go"><code>@tony-go</code></a> for your first PRs!</p> <h4>👓 Spec Compliance</h4> <ul> <li><code>babel-plugin-proposal-do-expressions</code>, <code>babel-traverse</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13122">#13122</a> fix: hoist variable declaration within do block (<a href="https://github.com/JLHwung"><code>@JLHwung</code></a>)</li> </ul> </li> <li><code>babel-parser</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13409">#13409</a> Relax import assertion key-is-type constraint (<a href="https://github.com/JLHwung"><code>@JLHwung</code></a>)</li> </ul> </li> </ul> <h4>🐛 Bug Fix</h4> <ul> <li><code>babel-parser</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13418">#13418</a> fix(parser): correctly parse record and tuple tokens (<a href="https://github.com/fedeci"><code>@fedeci</code></a>)</li> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13410">#13410</a> fix: throw when <code>async()</code> call param is object with assignement (<a href="https://github.com/tony-go"><code>@tony-go</code></a>)</li> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13396">#13396</a> Add support for d flag of regex literals in parser (<a href="https://github.com/ota-meshi"><code>@ota-meshi</code></a>)</li> </ul> </li> <li><code>babel-helpers</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13404">#13404</a> fix generate-helpers failing in URL-encoded path (<a href="https://github.com/lightmare"><code>@lightmare</code></a>)</li> </ul> </li> </ul> <h4>🏠 Internal</h4> <ul> <li><code>babel-helper-hoist-variables</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13442">#13442</a> Disallow dependency cycles (<a href="https://github.com/nicolo-ribaudo"><code>@nicolo-ribaudo</code></a>)</li> </ul> </li> <li><code>babel-parser</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13440">#13440</a> update test fixtures (<a href="https://github.com/JLHwung"><code>@JLHwung</code></a>)</li> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13431">#13431</a> Reduce <code>exprAllowed</code> usage (<a href="https://github.com/JLHwung"><code>@JLHwung</code></a>)</li> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13422">#13422</a> fix(<code>babel/parser</code>): fix tokenizer context update code (<a href="https://github.com/Eyoatam"><code>@Eyoatam</code></a>)</li> </ul> </li> <li>Other <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13420">#13420</a> chore: specify <code>@babel/eslint-parser</code> deps (<a href="https://github.com/JLHwung"><code>@JLHwung</code></a>)</li> </ul> </li> <li><em>Every package</em> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13363">#13363</a> chore: setup Yarn constraints (<a href="https://github.com/merceyz"><code>@merceyz</code></a>)</li> </ul> </li> </ul> <h4>🏃♀️ Performance</h4> <ul> <li><code>babel-parser</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13408">#13408</a> Use set in parser scope (<a href="https://github.com/JLHwung"><code>@JLHwung</code></a>)</li> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13386">#13386</a> Faster checkReservedWord (<a href="https://github.com/JLHwung"><code>@JLHwung</code></a>)</li> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13406">#13406</a> Back parser state <code>exportedIdentifiers</code> by set (<a href="https://github.com/JLHwung"><code>@JLHwung</code></a>)</li> </ul> </li> </ul> <h4>Committers: 9</h4> <ul> <li>Daniel Tschinder (<a href="https://github.com/danez"><code>@danez</code></a>)</li> <li>Eyoatam Tamirat (<a href="https://github.com/Eyoatam"><code>@Eyoatam</code></a>)</li> <li>Federico Ciardi (<a href="https://github.com/fedeci"><code>@fedeci</code></a>)</li> <li>Huáng Jùnliàng (<a href="https://github.com/JLHwung"><code>@JLHwung</code></a>)</li> <li>Kristoffer K. (<a href="https://github.com/merceyz"><code>@merceyz</code></a>)</li> <li>Nicolò Ribaudo (<a href="https://github.com/nicolo-ribaudo"><code>@nicolo-ribaudo</code></a>)</li> <li>Tony Gorez (<a href="https://github.com/tony-go"><code>@tony-go</code></a>)</li> <li>Yosuke Ota (<a href="https://github.com/ota-meshi"><code>@ota-meshi</code></a>)</li> <li><a href="https://github.com/lightmare"><code>@lightmare</code></a></li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/babel/babel/blob/main/CHANGELOG.md"><code>@babel/parser</code>'s changelog</a>.</em></p> <blockquote> <h2>v7.14.6 (2021-06-14)</h2> <h4>🐛 Bug Fix</h4> <ul> <li><code>babel-plugin-transform-spread</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13459">#13459</a> babel-plugin-transform-spread add missing argument in build calls (<a href="https://github.com/zxbodya"><code>@zxbodya</code></a>)</li> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13439">#13439</a> Correctly transform spreads of arrays with holes (<a href="https://github.com/nicolo-ribaudo"><code>@nicolo-ribaudo</code></a>)</li> </ul> </li> <li><code>babel-helpers</code>, <code>babel-plugin-transform-destructuring</code>, <code>babel-plugin-transform-modules-commonjs</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13444">#13444</a> fix destructuring of empty string (<a href="https://github.com/lala7573"><code>@lala7573</code></a>)</li> </ul> </li> <li><code>babel-helper-create-class-features-plugin</code>, <code>babel-plugin-proposal-class-properties</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13429">#13429</a> fix: reference to class expression in private method (<a href="https://github.com/lala7573"><code>@lala7573</code></a>)</li> </ul> </li> <li><code>babel-parser</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13428">#13428</a> [ts] Support override modifiers for parameter properties (<a href="https://github.com/sosukesuzuki"><code>@sosukesuzuki</code></a>)</li> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13449">#13449</a> Disallow JSX tag forming after TS non-null assertion (<a href="https://github.com/JLHwung"><code>@JLHwung</code></a>)</li> </ul> </li> </ul> <h4>🏠 Internal</h4> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13423">#13423</a> Faster babel build (<a href="https://github.com/JLHwung"><code>@JLHwung</code></a>)</li> </ul> <h4>🏃♀️ Performance</h4> <ul> <li><code>babel-parser</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13453">#13453</a> Faster readRegexp (<a href="https://github.com/JLHwung"><code>@JLHwung</code></a>)</li> </ul> </li> </ul> <h2>v7.14.5 (2021-06-09)</h2> <h4>👓 Spec Compliance</h4> <ul> <li><code>babel-plugin-proposal-do-expressions</code>, <code>babel-traverse</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13122">#13122</a> fix: hoist variable declaration within do block (<a href="https://github.com/JLHwung"><code>@JLHwung</code></a>)</li> </ul> </li> <li><code>babel-parser</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13409">#13409</a> Relax import assertion key-is-type constraint (<a href="https://github.com/JLHwung"><code>@JLHwung</code></a>)</li> </ul> </li> </ul> <h4>🐛 Bug Fix</h4> <ul> <li><code>babel-parser</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13418">#13418</a> fix(parser): correctly parse record and tuple tokens (<a href="https://github.com/fedeci"><code>@fedeci</code></a>)</li> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13410">#13410</a> fix: throw when <code>async()</code> call param is object with assignement (<a href="https://github.com/tony-go"><code>@tony-go</code></a>)</li> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13396">#13396</a> Add support for d flag of regex literals in parser (<a href="https://github.com/ota-meshi"><code>@ota-meshi</code></a>)</li> </ul> </li> <li><code>babel-helpers</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13404">#13404</a> fix generate-helpers failing in URL-encoded path (<a href="https://github.com/lightmare"><code>@lightmare</code></a>)</li> </ul> </li> </ul> <h4>🏠 Internal</h4> <ul> <li><code>babel-helper-hoist-variables</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13442">#13442</a> Disallow dependency cycles (<a href="https://github.com/nicolo-ribaudo"><code>@nicolo-ribaudo</code></a>)</li> </ul> </li> <li><code>babel-parser</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13440">#13440</a> update test fixtures (<a href="https://github.com/JLHwung"><code>@JLHwung</code></a>)</li> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13431">#13431</a> Reduce <code>exprAllowed</code> usage (<a href="https://github.com/JLHwung"><code>@JLHwung</code></a>)</li> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13422">#13422</a> fix(<code>babel/parser</code>): fix tokenizer context update code (<a href="https://github.com/Eyoatam"><code>@Eyoatam</code></a>)</li> </ul> </li> <li>Other <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13420">#13420</a> chore: specify <code>@babel/eslint-parser</code> deps (<a href="https://github.com/JLHwung"><code>@JLHwung</code></a>)</li> </ul> </li> <li><code>babel-cli</code>, <code>babel-code-frame</code>, <code>babel-compat-data</code>, <code>babel-core</code>, <code>babel-generator</code>, <code>babel-helper-annotate-as-pure</code>, <code>babel-helper-builder-binary-assignment-operator-visitor</code>, <code>babel-helper-builder-react-jsx</code>, <code>babel-helper-compilation-targets</code>, <code>babel-helper-create-class-features-plugin</code>, <code>babel-helper-create-regexp-features-plugin</code>, <code>babel-helper-define-map</code>, <code>babel-helper-explode-assignable-expression</code>, <code>babel-helper-fixtures</code>, <code>babel-helper-function-name</code>, <code>babel-helper-get-function-arity</code>, <code>babel-helper-hoist-variables</code>, <code>babel-helper-member-expression-to-functions</code>, <code>babel-helper-module-imports</code>, <code>babel-helper-module-transforms</code>, <code>babel-helper-optimise-call-expression</code>, <code>babel-helper-plugin-test-runner</code>, <code>babel-helper-plugin-utils</code>, <code>babel-helper-remap-async-to-generator</code>, <code>babel-helper-replace-supers</code>, <code>babel-helper-simple-access</code>, <code>babel-helper-skip-transparent-expression-wrappers</code>, <code>babel-helper-split-export-declaration</code>, <code>babel-helper-transform-fixture-test-runner</code>, <code>babel-helper-validator-identifier</code>, <code>babel-helper-validator-option</code>, <code>babel-helper-wrap-function</code>, <code>babel-helpers</code>, <code>babel-highlight</code>, <code>babel-node</code>, <code>babel-parser</code>, <code>babel-plugin-bugfix-v8-spread-parameters-in-optional-chaining</code>, <code>babel-plugin-external-helpers</code>, <code>babel-plugin-proposal-async-do-expressions</code>, <code>babel-plugin-proposal-async-generator-functions</code>, <code>babel-plugin-proposal-class-properties</code>, <code>babel-plugin-proposal-class-static-block</code>, <code>babel-plugin-proposal-decorators</code>, <code>babel-plugin-proposal-do-expressions</code>, <code>babel-plugin-proposal-dynamic-import</code>, <code>babel-plugin-proposal-export-default-from</code>, <code>babel-plugin-proposal-export-namespace-from</code>, <code>babel-plugin-proposal-function-bind</code>, <code>babel-plugin-proposal-function-sent</code>, <code>babel-plugin-proposal-json-strings</code>, <code>babel-plugin-proposal-logical-assignment-operators</code>, <code>babel-plugin-proposal-nullish-coalescing-operator</code>, <code>babel-plugin-proposal-numeric-separator</code>, <code>babel-plugin-proposal-object-rest-spread</code>, <code>babel-plugin-proposal-optional-catch-binding</code>, <code>babel-plugin-proposal-optional-chaining</code>, <code>babel-plugin-proposal-partial-application</code>, <code>babel-plugin-proposal-pipeline-operator</code>, <code>babel-plugin-proposal-private-methods</code>, <code>babel-plugin-proposal-private-property-in-object</code>, <code>babel-plugin-proposal-record-and-tuple</code>, <code>babel-plugin-proposal-throw-expressions</code>, <code>babel-plugin-proposal-unicode-property-regex</code>, <code>babel-plugin-syntax-async-do-expressions</code>, <code>babel-plugin-syntax-class-static-block</code>, <code>babel-plugin-syntax-decimal</code>, <code>babel-plugin-syntax-decorators</code>, <code>babel-plugin-syntax-do-expressions</code>, <code>babel-plugin-syntax-export-default-from</code>, <code>babel-plugin-syntax-flow</code>, <code>babel-plugin-syntax-function-bind</code>, <code>babel-plugin-syntax-function-sent</code>, <code>babel-plugin-syntax-import-assertions</code>, <code>babel-plugin-syntax-jsx</code>, <code>babel-plugin-syntax-module-blocks</code>, <code>babel-plugin-syntax-partial-application</code>, <code>babel-plugin-syntax-pipeline-operator</code>, <code>babel-plugin-syntax-private-property-in-object</code>, <code>babel-plugin-syntax-record-and-tuple</code>, <code>babel-plugin-syntax-throw-expressions</code>, <code>babel-plugin-syntax-top-level-await</code>, <code>babel-plugin-syntax-typescript</code>, <code>babel-plugin-transform-arrow-functions</code>, <code>babel-plugin-transform-async-to-generator</code>, <code>babel-plugin-transform-block-scoped-functions</code>, <code>babel-plugin-transform-block-scoping</code>, <code>babel-plugin-transform-classes</code>, <code>babel-plugin-transform-computed-properties</code>, <code>babel-plugin-transform-destructuring</code>, <code>babel-plugin-transform-dotall-regex</code>, <code>babel-plugin-transform-duplicate-keys</code>, <code>babel-plugin-transform-exponentiation-operator</code>, <code>babel-plugin-transform-flow-comments</code>, <code>babel-plugin-transform-flow-strip-types</code>, <code>babel-plugin-transform-for-of</code>, <code>babel-plugin-transform-function-name</code>, <code>babel-plugin-transform-instanceof</code>, <code>babel-plugin-transform-jscript</code>, <code>babel-plugin-transform-literals</code>, <code>babel-plugin-transform-member-expression-literals</code>, <code>babel-plugin-transform-modules-amd</code>, <code>babel-plugin-transform-modules-commonjs</code>, <code>babel-plugin-transform-modules-systemjs</code>, <code>babel-plugin-transform-modules-umd</code>, <code>babel-plugin-transform-named-capturing-groups-regex</code>, <code>babel-plugin-transform-new-target</code>, <code>babel-plugin-transform-object-assign</code>, <code>babel-plugin-transform-object-set-prototype-of-to-assign</code>, <code>babel-plugin-transform-object-super</code>, <code>babel-plugin-transform-parameters</code>, <code>babel-plugin-transform-property-literals</code>, <code>babel-plugin-transform-property-mutators</code>, <code>babel-plugin-transform-proto-to-assign</code>, <code>babel-plugin-transform-react-constant-elements</code>, <code>babel-plugin-transform-react-display-name</code>, <code>babel-plugin-transform-react-inline-elements</code>, <code>babel-plugin-transform-react-jsx-compat</code>, <code>babel-plugin-transform-react-jsx-development</code>, <code>babel-plugin-transform-react-jsx-self</code>, <code>babel-plugin-transform-react-jsx-source</code>, <code>babel-plugin-transform-react-jsx</code>, <code>babel-plugin-transform-react-pure-annotations</code>, <code>babel-plugin-transform-regenerator</code>, <code>babel-plugin-transform-reserved-words</code>, <code>babel-plugin-transform-runtime</code>, <code>babel-plugin-transform-shorthand-properties</code>, <code>babel-plugin-transform-spread</code>, <code>babel-plugin-transform-sticky-regex</code>, <code>babel-plugin-transform-strict-mode</code>, <code>babel-plugin-transform-template-literals</code>, <code>babel-plugin-transform-typeof-symbol</code>, <code>babel-plugin-transform-typescript</code>, <code>babel-plugin-transform-unicode-escapes</code>, <code>babel-plugin-transform-unicode-regex</code>, <code>babel-preset-env</code>, <code>babel-preset-flow</code>, <code>babel-preset-react</code>, <code>babel-preset-typescript</code>, <code>babel-register</code>, <code>babel-runtime-corejs2</code>, <code>babel-runtime-corejs3</code>, <code>babel-runtime</code>, <code>babel-standalone</code>, <code>babel-template</code>, <code>babel-traverse</code>, <code>babel-types</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13363">#13363</a> chore: setup Yarn constraints (<a href="https://github.com/merceyz"><code>@merceyz</code></a>)</li> </ul> </li> </ul> <h4>🏃♀️ Performance</h4> <ul> <li><code>babel-parser</code></li> </ul> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
||
|
|
f6184fd8aa |
Flipper Release: v0.94.1
Summary: Releasing version 0.94.1 This is OSS-only. Reviewed By: passy Differential Revision: D29166261 fbshipit-source-id: d27bd79c14296519e7c90f138131458b2a5e77e2 |
||
|
|
42a65e467e |
Bump @types/react from 17.0.9 to 17.0.11 in /desktop (#2464)
Summary: Bumps [types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) from 17.0.9 to 17.0.11. <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 /> [](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/2464 Reviewed By: passy Differential Revision: D29132891 Pulled By: priteshrnandgaonkar fbshipit-source-id: d3fc7a48a2e10db8e597ee31c7c15cbefc4ba09a |
||
|
|
7f6cf729d2 |
Bump electron-devtools-installer from 3.1.1 to 3.2.0 in /desktop (#2465)
Summary: Bumps [electron-devtools-installer](https://github.com/MarshallOfSound/electron-devtools-installer) from 3.1.1 to 3.2.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/MarshallOfSound/electron-devtools-installer/releases">electron-devtools-installer's releases</a>.</em></p> <blockquote> <h2>v3.2.0</h2> <h1><a href="https://github.com/MarshallOfSound/electron-devtools-installer/compare/v3.1.1...v3.2.0">3.2.0</a> (2021-04-18)</h1> <h3>Features</h3> <ul> <li>new devtools for VueJS 3 (<a href="https://github-redirect.dependabot.com/MarshallOfSound/electron-devtools-installer/issues/183">https://github.com/facebook/flipper/issues/183</a>) (<a href=" |
||
|
|
f2e67c8055 |
Disable flaky sideEffect test
Summary: See T93353978 Reviewed By: mweststrate Differential Revision: D29160508 fbshipit-source-id: 79ac5247e7fd1b4b0a2903b1a40833e2870e299c |
||
|
|
0aadb862ee |
Use DataList
Summary: With new abstraction, `DataList` matches what the plugin trying to render. Should fix: https://fb.workplace.com/groups/flippersupport/permalink/1145431339270856/ Changelog: [MobileConfig] Fix issues with scrolling not working and several other improvements Reviewed By: cekkaewnumchai Differential Revision: D28314408 fbshipit-source-id: 4d8fbe3d8e868f737750203cd568d94bae8b4108 |
||
|
|
34c862d5f2 |
Wednesday dep bump
Summary: Includes most of the PRs currently open. allow-large-files for antd Reviewed By: mweststrate Differential Revision: D29160385 fbshipit-source-id: b9e6d3b16a806cf615b7b0e24ba3395f3ed44822 |
||
|
|
48883c8f87 |
Flipper Release: v0.94.0
Summary: Releasing version 0.94.0 Reviewed By: mweststrate Differential Revision: D29159753 fbshipit-source-id: 45f62b93e037811ecc7223a6a35273cb8f39663d |
||
|
|
a87069fa4f |
Fix Edit button layout
Summary: Edit button was not visible which blocked editing of databases Reviewed By: passy Differential Revision: D29139000 fbshipit-source-id: d0e8d22ca1a1a39697ec70e94e3eb7422e32de48 |
||
|
|
15d052af52 |
Monday dep bump
Summary: All patch bumps. Reviewed By: muraziz Differential Revision: D29098776 fbshipit-source-id: 7cfb9774ddebaa6b1c61c597869bf0f9cf0c2687 |
||
|
|
fdfcc65720 |
Hard-code d3-array 2.3.3 for Babel compat
Summary: Got this in my dep bump: https://www.internalfb.com/intern/sandcastle/job/13510799320314417/ Babel is having some trouble with a certain syntax in newer d3-array elements: https://github.com/babel/babel/issues/11038 Until that's fixed the recommended work-around is hard-coding the old version which is apparently compatible. Reviewed By: priteshrnandgaonkar Differential Revision: D29107071 fbshipit-source-id: 5a4ba8e698969bc033a76da78ce9116d1cfbbeb4 |
||
|
|
ad5276782e |
Fix enum names being truncated
Summary: Changelog: [Layout] Fixed issue where enum dropdowns would truncate their items Reviewed By: jknoxville Differential Revision: D29130378 fbshipit-source-id: cd05623d3c7db2ec18bb128f8bee3cd7a78cfe19 |
||
|
|
bc14b047cd |
Fix database names being truncated
Summary: Changelog: [Database] Fix database names not being readable in selection dropdowns Reviewed By: jknoxville Differential Revision: D29130379 fbshipit-source-id: 7212e6869efe5f501aa76e6836dad839319204fd |
||
|
|
42c4bfcb47 |
Better error for ports in use
Summary: If port 8088 / 8089 are in use, devices will not be able to connect to Flipper. We have checks for this in place, however it turns out that users can miss them. Potentially this can be caused for mulltiple reasons: 1. The notification is shown fairly short (in my testing it disappeared sometimes in < 2 secs 2. The notification is shown outside of the Flipper area 3. Flipper might not have permissions to show notifs in the first place. Changed the notification to show inside Flipper, not hide automatically, and added clearer instructions. Including mentioning the port number (since there are multiple) Changelog: [Flipper] Provide clearer error if Flipper ports are already in use, making device connections impossible Differential Revision: D29128014 fbshipit-source-id: 16d9b451aa84281744155bfa1042429911a7b774 |
||
|
|
2f1042a9b7 |
Clean up kaios-ram deps
Summary: - recharts includes types now as part of the main distro - the react resolution doesn't make a difference to the `yarn.lock` anymore Reviewed By: mweststrate Differential Revision: D29105837 fbshipit-source-id: 5699b7b9c4f00da00781245fed8b2a94d603bb63 |