d4debc41851dbb9299bca3d392bf34e442109aa6
4127 Commits
| Author | SHA1 | Message | Date | |
|---|---|---|---|---|
|
|
d4debc4185 |
Use dotenv for dev mode customisation
Summary: Allow using of .env file to pass env vars to be used in dev mode. Currently this allow to configure defaults for enabling fast refresh, automatic opening of dev tools and plugins to load. Reviewed By: passy Differential Revision: D24398938 fbshipit-source-id: 30a5d86b7906a7723a404cf84a1b8d50ae497dbc |
||
|
|
2d9cf5a905 |
Option to load only specific plugins in dev mode
Summary: Currently we load all the plugins even if they are not required in dev mode, e.g. when you are developing a specific plugin. This diff adds an env var and command-line option to specify exact list of plugins to load. This makes dev mode startup faster and consume less memory. Reviewed By: passy Differential Revision: D24394146 fbshipit-source-id: 42a78c1ffb2632e657c2411e34e9c80fff18df3a |
||
|
|
966d748ace |
Some fixes in rendering legacy plugins
Summary: Some exploratory testing on all iOS and Android plugins, to see how they behave inside Sandy, and fixed some layout glitches (some were also present without Sandy) General fixes: * Introduced some niceties like searchbox resizing properly, and toolbars wrapping automatically in Sandy, rather than buttons becoming invisible * Containers don't grow anymore by default, but take size of contents * ScrollContainer child is now a Layout.Vertical. Layout.Vertical should be used as default container everywhere (e.g. Tabs, Panels) in the future * Fixed layout issue if a split container had only 1 visible child * DetailsSidebar now scrolls vertically by default * Details sidebar would sometimes render content in-place rather than in the reserved area * AppSelector dropdown and Plugin list will now properly ellipse (...) if there is not enough space Plugin fixes: * Long database / table names in Database plugin would break layout Also fixes https://github.com/facebook/flipper/issues/1611 Reviewed By: passy Differential Revision: D24454188 fbshipit-source-id: c60c867270900a1d4f28587d47067c6ec1072ede |
||
|
|
4f7294c96d |
Add unit tests for selection changes and plugin list computation
Summary: Tests to verify the more complex selection logic resulting from the Metro device exception. Also verifies the logic that computes the available plugins Reviewed By: nikoant Differential Revision: D24445555 fbshipit-source-id: 70110c4470e6aa1356e814aa40744b65c21cad89 |
||
|
|
99dfeacdf8 |
useMemo -> useMemoize
Summary: I love useMemo, and the memoized functions are in principle easy to testable since deps are known But in practice they aren't as they close over their deps, preventing hoisting. So I now use a small `useMemoize` utility that encourages me to write them in a testable manner. Applied this to the PluginList, and it makes it imho cleaner to read. Also, testing is now much easier as demonstrated in the next diff. Reviewed By: nikoant Differential Revision: D24445556 fbshipit-source-id: e156dbd4b8623eb1b90650e174b69a0ec868d2da |
||
|
|
c55be74426 |
Be able to select Metro plugins
Summary: This adds the ability in AppInspect to work with Metro and plugins. Metro remains a weird and hardcoded edge case, as we show it as part of another device. So a few things to notice: - Metro does not have it's own entry in the device/app dropdown - When selecting a metro plugin, the surrounding context (selected main device / app) remains, but you will notice that the device dropdown switches to 'React Native'. This is intentional to reflect that we are talking to React Native in general, and not necessarily to the device / app shown in the context. Reviewed By: nikoant Differential Revision: D24422267 fbshipit-source-id: 239aa71b5c01e19bdda53a930ad9fa8af13b8d4a |
||
|
|
8a7323b9f8 |
Render plugin list
Summary: This diff adds the rough navigation to open pugins, there are some rough egdes still, and tests will be added later, but wanted to keep diffs small, and land the feature early to get some initial dogfooding going on early. Note that we now also show all disabled plugins to help people with trouble shooting. Reviewed By: nikoant Differential Revision: D24418411 fbshipit-source-id: 1402d69efe2e52bc2c81336cfb4f4c9928ea4d80 |
||
|
|
2c6c7fb46c |
(flux stores) 5. make "logs" tab look nicer
Summary:
This diff implement few things:
* Logs tab for plugin
* Sending new state for each action is expensive, that is why flipper side receive only diffs and uses `getStateFromLogItem` to calculate new state
* fixed `keys` in `DataInspector.tsx` which caused `DataInspector` become unresponsive
{F340648998}
Differential Revision: D23021619
fbshipit-source-id: 17490c25f7b86faf9e574a612996563aac18525e
|
||
|
|
6e54ac9bab |
(flux stores) 3. connected FluxLogger to flipper
Summary:
The bridge between Flipper and AMA has been established in previous diff. The goal of this diff - is to actually send data to flipper
{F340648834}
Differential Revision: D22999433
fbshipit-source-id: 72b6ad57bcaa9c0318879a224508397f70e3bc76
|
||
|
|
59921da02a |
Move release infra docs
Summary: It's a lot more than just "launcher" now. Reviewed By: nikoant Differential Revision: D24425780 fbshipit-source-id: 74f6dd4d73a224a43608c4d3f3698dbd16c2e865 |
||
|
|
6eed8a9012 |
Flipper Snapshot Bump: v0.63.1-SNAPSHOT
Summary: Releasing snapshot version 0.63.1-SNAPSHOT Reviewed By: nikoant Differential Revision: D24423407 fbshipit-source-id: 96ed1b64238771d411c0fc2802640a94c2cb4134 |
||
|
|
0f23f409ab |
Flipper Release: v0.63.0
Summary: Releasing version 0.63.0 Reviewed By: nikoant Differential Revision: D24423408 fbshipit-source-id: 0bc12c49d8bf77d8dbf9688adb07dc176b210548 |
||
|
|
1be2f8c987 |
Immutable picker
Summary: Disables the picker if the selection isn't editable Differential Revision: D24419005 fbshipit-source-id: 433229a23db7fac947f574110326f5bf0dc51bc3 |
||
|
|
d733f8131f |
Immutable timeline
Summary: Removes the "Set current" button if the timeline isn't editable Note that the styling does weird stuff to colors when a field is set as not editable Differential Revision: D24419006 fbshipit-source-id: 84dcee2e04d5ed7ebb3dc0255e99d1756f195284 |
||
|
|
38ef16aeeb |
Upgrade jest and babel
Summary: Metro update already uppgraded half of babel libraries and jest update required updating some others, so here I just updated all babel-related and jest-related packages using `yarn upgrade-interactive` so their versions matched Reviewed By: mweststrate Differential Revision: D24421484 fbshipit-source-id: e22a1a8cbc36435253b8d92adadd2439d669e811 |
||
|
|
35a433d1a3 |
Bump metro from 0.60.0 to 0.63.0 in /desktop (#1606)
Summary: Bumps [metro](https://github.com/facebook/metro) from 0.60.0 to 0.63.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/facebook/metro/releases">metro's releases</a>.</em></p> <blockquote> <h2>Release v0.63.0</h2> <ul> <li>[fix] Change initialisation logo and text from RN to Metro</li> </ul> <h2>Release v0.62.0</h2> <ul> <li>[feature] Add onBundleBuilt to ServerOptions</li> </ul> <h2>Release v0.61.0</h2> <p>Contains all changes since 0.60.0:</p> <ul> <li>[Feature]: Add support for blockList and array of regexs</li> <li>[Fix]: Change order of imports to be the same as in source files</li> <li>[Feature]: Add new secureServerOptions option to runServer</li> <li>[Feature]: Add inline-requires option</li> <li>[PetPeeve]: Metro server => Metro</li> </ul> <p>See <a href="https://github.com/facebook/metro/compare/0.60.0...0.61.0">0.59.0...0.60.0</a> for a full list of changes.</p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
||
|
|
abc0ae2b17 |
Update OpenSSL dependency
Summary: Updates the OpenSSL dependency. Enabling bitcode as the latest version of OpenSSL has bitcode support. Reviewed By: mweststrate Differential Revision: D24276537 fbshipit-source-id: 6f135659d64e8849dcf68266458a8f24ef795be7 |
||
|
|
29e528115d |
Support 1 dimension scrolling
Summary: Added `axis` property to scroll container, to make scroll work in one direction, and fill out the other one. Reviewed By: cekkaewnumchai Differential Revision: D24390943 fbshipit-source-id: 5767e753edfb947f43b3998e10d6cebf57f9b53b |
||
|
|
a2fac737f6 |
Render sidebar
Summary: Restore sidebar functionality for Sandy plugins Also needed to fix some circular dependency issues as fallout. Reviewed By: cekkaewnumchai Differential Revision: D24362215 fbshipit-source-id: 0a09ac35ba981322ae0793edc3aa79ffddf2ce73 |
||
|
|
ba5f067320 |
Fix circular imports and lint against them
Summary: When trying to refactor some components, did once again run into circular imports that cause the flipper startup sequence to fail. Added linting rules to make sure this is much less likely to happen in the future, and fixed all resulting errors Reviewed By: nikoant Differential Revision: D24390583 fbshipit-source-id: 9b20cf6a4d3555dc68f0069c2950dd7162b17e67 |
||
|
|
f14a724fa5 |
Device plugin list
Summary: Render a plugin list Will add tests once the entire feature is complete Reviewed By: cekkaewnumchai Differential Revision: D24079897 fbshipit-source-id: db7250ff612b67ab18dfcacdcb9c44dab596933d |
||
|
|
c38a4413dc |
Device Dropdown
Summary: This diff adds the device switcher, filling the switcher with apps and devices. Reviewed By: cekkaewnumchai Differential Revision: D24053787 fbshipit-source-id: 4f69835a12eec90a0e5704f71c8ceed5509f61ce |
||
|
|
79ac1ef009 |
Bump react from 16.13.1 to 16.14.0 in /react-native/ReactNativeFlipperExample (#1605)
Summary: Bumps [react](https://github.com/facebook/react/tree/HEAD/packages/react) from 16.13.1 to 16.14.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/facebook/react/releases">react's releases</a>.</em></p> <blockquote> <h2>16.14.0 (October 14, 2020)</h2> <h3>React</h3> <ul> <li>Add support for the <a href="https://reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html">new JSX transform</a>. (<a href="https://github.com/lunaruan">lunaruan</a> in <a href="https://github-redirect.dependabot.com/facebook/react/pull/18299">#18299</a>)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/facebook/react/blob/master/CHANGELOG.md">react's changelog</a>.</em></p> <blockquote> <h2>16.14.0 (October 14, 2020)</h2> <h3>React</h3> <ul> <li>Add support for the <a href="https://reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html">new JSX transform</a>. (<a href="https://github.com/lunaruan">lunaruan</a> in <a href="https://github-redirect.dependabot.com/facebook/react/pull/18299">#18299</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
||
|
|
904f9fa1a2 |
Bump @babel/runtime from 7.11.2 to 7.12.1 in /react-native/ReactNativeFlipperExample (#1601)
Summary: Bumps [babel/runtime](https://github.com/babel/babel/tree/HEAD/packages/babel-runtime) from 7.11.2 to 7.12.1. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/babel/babel/releases">babel/runtime's releases</a>.</em></p> <blockquote> <h2>v7.12.1 (2020-10-16)</h2> <h4>🐛 Bug Fix</h4> <ul> <li><code>babel-cli</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12182">#12182</a> Don't force chokidar@2 to be downloaded from registry.npmjs.org (<a href="https://github.com/nicolo-ribaudo">nicolo-ribaudo</a>)</li> </ul> </li> <li><code>babel-plugin-transform-runtime</code>, <code>babel-runtime-corejs2</code>, <code>babel-runtime-corejs3</code>, <code>babel-runtime</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12184">#12184</a> Allow importing <code>babel/runtime/package</code> (<a href="https://github.com/nicolo-ribaudo">nicolo-ribaudo</a>)</li> </ul> </li> <li><code>babel-parser</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12183">#12183</a> Reland "Fix: check if param is assignable when parsing arrow return type annotation" (<a href="https://github.com/nicolo-ribaudo">nicolo-ribaudo</a>)</li> </ul> </li> </ul> <h4>🏠 Internal</h4> <ul> <li>Other <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12188">#12188</a> Guard against yarn-issue-1882 (<a href="https://github.com/JLHwung">JLHwung</a>)</li> </ul> </li> <li><em>Every package</em> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12186">#12186</a> chore: use workspace:* for dev deps (<a href="https://github.com/JLHwung">JLHwung</a>)</li> </ul> </li> <li><code>babel-compat-data</code>, <code>babel-helper-compilation-targets</code>, <code>babel-helper-create-class-features-plugin</code>, <code>babel-helper-remap-async-to-generator</code>, <code>babel-helper-simple-access</code>, <code>babel-helper-transform-fixture-test-runner</code>, <code>babel-plugin-transform-named-capturing-groups-regex</code>, <code>babel-plugin-transform-object-assign</code>, <code>babel-plugin-transform-parameters</code>, <code>babel-plugin-transform-react-jsx-self</code>, <code>babel-plugin-transform-react-jsx-source</code>, <code>babel-plugin-transform-template-literals</code>, <code>babel-preset-env</code>, <code>babel-preset-react</code>, <code>babel-runtime-corejs2</code>, <code>babel-runtime</code>, <code>babel-standalone</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12175">#12175</a> Remove unused <code>dependencies</code> and <code>devDependencies</code> (<a href="https://github.com/nicolo-ribaudo">nicolo-ribaudo</a>)</li> </ul> </li> </ul> <h4>Committers: 2</h4> <ul> <li>Huáng Jùnliàng (<a href="https://github.com/JLHwung">JLHwung</a>)</li> <li>Nicolò Ribaudo (<a href="https://github.com/nicolo-ribaudo">nicolo-ribaudo</a>)</li> </ul> <h2>v7.12.0 (2020-10-14)</h2> <p>Thanks <a href="https://github.com/akphi">akphi</a>, <a href="https://github.com/Amareis">Amareis</a>, <a href="https://github.com/barronwei">barronwei</a>, <a href="https://github.com/iamfotx">iamfotx</a>, <a href="https://github.com/mischnic">mischnic</a>, <a href="https://github.com/overlookmotel">overlookmotel</a>, <a href="https://github.com/ryanrhee">ryanrhee</a>, <a href="https://github.com/snitin315">snitin315</a>, <a href="https://github.com/sosukesuzuki">sosukesuzuki</a>, <a href="https://github.com/timgates42">timgates42</a>, <a href="https://github.com/zweimach">zweimach</a> for their first PRs.</p> <h4>👓 Spec Compliance</h4> <ul> <li><code>babel-core</code>, <code>babel-helper-module-transforms</code>, <code>babel-parser</code>, <code>babel-plugin-proposal-export-namespace-from</code>, <code>babel-plugin-syntax-module-string-names</code>, <code>babel-plugin-transform-modules-amd</code>, <code>babel-plugin-transform-modules-commonjs</code>, <code>babel-plugin-transform-modules-systemjs</code>, <code>babel-plugin-transform-modules-umd</code>, <code>babel-types</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12091">#12091</a> String import/export specifier (<a href="https://github.com/JLHwung">JLHwung</a>)</li> </ul> </li> <li><code>babel-parser</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12111">#12111</a> [ts] Throw a syntax error for index signature with <code>declare</code> (<a href="https://github.com/sosukesuzuki">sosukesuzuki</a>)</li> </ul> </li> </ul> <h4>🚀 New Feature</h4> <ul> <li><code>babel-core</code>, <code>babel-generator</code>, <code>babel-parser</code>, <code>babel-plugin-syntax-import-assertions</code>, <code>babel-plugin-syntax-module-attributes</code>, <code>babel-standalone</code>, <code>babel-types</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12139">#12139</a> Parse import-assertions (<a href="https://github.com/xtuc">xtuc</a>)</li> </ul> </li> <li><code>babel-core</code>, <code>babel-helper-create-class-features-plugin</code>, <code>babel-helper-module-transforms</code>, <code>babel-helper-replace-supers</code>, <code>babel-plugin-proposal-class-static-block</code>, <code>babel-plugin-transform-modules-commonjs</code>, <code>babel-standalone</code>, <code>babel-traverse</code>, <code>babel-types</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12143">#12143</a> Transform class static block (<a href="https://github.com/JLHwung">JLHwung</a>)</li> </ul> </li> <li><code>babel-generator</code>, <code>babel-parser</code>, <code>babel-plugin-syntax-class-static-block</code>, <code>babel-types</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12079">#12079</a> Parse class static block (<a href="https://github.com/JLHwung">JLHwung</a>)</li> </ul> </li> <li><code>babel-generator</code>, <code>babel-parser</code>, <code>babel-types</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12129">#12129</a> Support TypeScript mapped type 'as' clauses (<a href="https://github.com/existentialism">existentialism</a>)</li> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12147">#12147</a> [ts] Add support for the "intrinsic" keyword (<a href="https://github.com/nicolo-ribaudo">nicolo-ribaudo</a>)</li> </ul> </li> <li><code>babel-parser</code>, <code>babel-types</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12131">#12131</a> [ts] Add support for template interpolations in types (<a href="https://github.com/nicolo-ribaudo">nicolo-ribaudo</a>)</li> </ul> </li> <li><code>babel-plugin-transform-modules-systemjs</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12163">#12163</a> SystemJS top-level await support (<a href="https://github.com/guybedford">guybedford</a>)</li> </ul> </li> <li><code>babel-plugin-transform-typescript</code>, <code>babel-preset-typescript</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/11950">#11950</a> Add <code>jsxPragmaFrag</code> support to typescript transform (<a href="https://github.com/JLHwung">JLHwung</a>)</li> </ul> </li> <li><code>babel-core</code>, <code>babel-helper-module-transforms</code>, <code>babel-parser</code>, <code>babel-plugin-proposal-export-namespace-from</code>, <code>babel-plugin-syntax-module-string-names</code>, <code>babel-plugin-transform-modules-amd</code>, <code>babel-plugin-transform-modules-commonjs</code>, <code>babel-plugin-transform-modules-systemjs</code>, <code>babel-plugin-transform-modules-umd</code>, <code>babel-types</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12091">#12091</a> String import/export specifier (<a href="https://github.com/JLHwung">JLHwung</a>)</li> </ul> </li> </ul> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/babel/babel/blob/main/CHANGELOG.md">babel/runtime's changelog</a>.</em></p> <blockquote> <h2>v7.12.1 (2020-10-16)</h2> <h4>🐛 Bug Fix</h4> <ul> <li><code>babel-cli</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12182">#12182</a> Don't force chokidar@2 to be downloaded from registry.npmjs.org (<a href="https://github.com/nicolo-ribaudo">nicolo-ribaudo</a>)</li> </ul> </li> <li><code>babel-plugin-transform-runtime</code>, <code>babel-runtime-corejs2</code>, <code>babel-runtime-corejs3</code>, <code>babel-runtime</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12184">#12184</a> Allow importing <code>babel/runtime/package</code> (<a href="https://github.com/nicolo-ribaudo">nicolo-ribaudo</a>)</li> </ul> </li> <li><code>babel-parser</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12183">#12183</a> Reland "Fix: check if param is assignable when parsing arrow return type annotation" (<a href="https://github.com/nicolo-ribaudo">nicolo-ribaudo</a>)</li> </ul> </li> </ul> <h4>🏠 Internal</h4> <ul> <li>Other <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12188">#12188</a> Guard against yarn-issue-1882 (<a href="https://github.com/JLHwung">JLHwung</a>)</li> </ul> </li> <li><code>babel-cli</code>, <code>babel-core</code>, <code>babel-generator</code>, <code>babel-helper-bindify-decorators</code>, <code>babel-helper-call-delegate</code>, <code>babel-helper-compilation-targets</code>, <code>babel-helper-create-class-features-plugin</code>, <code>babel-helper-create-regexp-features-plugin</code>, <code>babel-helper-explode-assignable-expression</code>, <code>babel-helper-explode-class</code>, <code>babel-helper-module-imports</code>, <code>babel-helper-remap-async-to-generator</code>, <code>babel-helper-skip-transparent-expression-wrappers</code>, <code>babel-helpers</code>, <code>babel-node</code>, <code>babel-parser</code>, <code>babel-plugin-external-helpers</code>, <code>babel-plugin-proposal-async-generator-functions</code>, <code>babel-plugin-proposal-class-properties</code>, <code>babel-plugin-proposal-class-static-block</code>, <code>babel-plugin-proposal-decorators</code>, <code>babel-plugin-proposal-do-expressions</code>, <code>babel-plugin-proposal-dynamic-import</code>, <code>babel-plugin-proposal-export-default-from</code>, <code>babel-plugin-proposal-export-namespace-from</code>, <code>babel-plugin-proposal-function-bind</code>, <code>babel-plugin-proposal-function-sent</code>, <code>babel-plugin-proposal-json-strings</code>, <code>babel-plugin-proposal-logical-assignment-operators</code>, <code>babel-plugin-proposal-nullish-coalescing-operator</code>, <code>babel-plugin-proposal-numeric-separator</code>, <code>babel-plugin-proposal-object-rest-spread</code>, <code>babel-plugin-proposal-optional-catch-binding</code>, <code>babel-plugin-proposal-optional-chaining</code>, <code>babel-plugin-proposal-partial-application</code>, <code>babel-plugin-proposal-pipeline-operator</code>, <code>babel-plugin-proposal-private-methods</code>, <code>babel-plugin-proposal-private-property-in-object</code>, <code>babel-plugin-proposal-throw-expressions</code>, <code>babel-plugin-proposal-unicode-property-regex</code>, <code>babel-plugin-syntax-class-properties</code>, <code>babel-plugin-syntax-decorators</code>, <code>babel-plugin-syntax-do-expressions</code>, <code>babel-plugin-syntax-export-default-from</code>, <code>babel-plugin-syntax-flow</code>, <code>babel-plugin-syntax-function-bind</code>, <code>babel-plugin-syntax-function-sent</code>, <code>babel-plugin-syntax-import-assertions</code>, <code>babel-plugin-syntax-jsx</code>, <code>babel-plugin-syntax-module-string-names</code>, <code>babel-plugin-syntax-partial-application</code>, <code>babel-plugin-syntax-pipeline-operator</code>, <code>babel-plugin-syntax-record-and-tuple</code>, <code>babel-plugin-syntax-throw-expressions</code>, <code>babel-plugin-syntax-top-level-await</code>, <code>babel-plugin-syntax-typescript</code>, <code>babel-plugin-transform-arrow-functions</code>, <code>babel-plugin-transform-async-to-generator</code>, <code>babel-plugin-transform-block-scoped-functions</code>, <code>babel-plugin-transform-block-scoping</code>, <code>babel-plugin-transform-classes</code>, <code>babel-plugin-transform-computed-properties</code>, <code>babel-plugin-transform-destructuring</code>, <code>babel-plugin-transform-dotall-regex</code>, <code>babel-plugin-transform-duplicate-keys</code>, <code>babel-plugin-transform-exponentiation-operator</code>, <code>babel-plugin-transform-flow-comments</code>, <code>babel-plugin-transform-flow-strip-types</code>, <code>babel-plugin-transform-for-of</code>, <code>babel-plugin-transform-function-name</code>, <code>babel-plugin-transform-instanceof</code>, <code>babel-plugin-transform-jscript</code>, <code>babel-plugin-transform-literals</code>, <code>babel-plugin-transform-member-expression-literals</code>, <code>babel-plugin-transform-modules-amd</code>, <code>babel-plugin-transform-modules-commonjs</code>, <code>babel-plugin-transform-modules-systemjs</code>, <code>babel-plugin-transform-modules-umd</code>, <code>babel-plugin-transform-named-capturing-groups-regex</code>, <code>babel-plugin-transform-new-target</code>, <code>babel-plugin-transform-object-assign</code>, <code>babel-plugin-transform-object-set-prototype-of-to-assign</code>, <code>babel-plugin-transform-object-super</code>, <code>babel-plugin-transform-parameters</code>, <code>babel-plugin-transform-property-literals</code>, <code>babel-plugin-transform-property-mutators</code>, <code>babel-plugin-transform-proto-to-assign</code>, <code>babel-plugin-transform-react-constant-elements</code>, <code>babel-plugin-transform-react-display-name</code>, <code>babel-plugin-transform-react-inline-elements</code>, <code>babel-plugin-transform-react-jsx-compat</code>, <code>babel-plugin-transform-react-jsx-development</code>, <code>babel-plugin-transform-react-jsx-self</code>, <code>babel-plugin-transform-react-jsx-source</code>, <code>babel-plugin-transform-react-jsx</code>, <code>babel-plugin-transform-react-pure-annotations</code>, <code>babel-plugin-transform-regenerator</code>, <code>babel-plugin-transform-reserved-words</code>, <code>babel-plugin-transform-runtime</code>, <code>babel-plugin-transform-shorthand-properties</code>, <code>babel-plugin-transform-spread</code>, <code>babel-plugin-transform-sticky-regex</code>, <code>babel-plugin-transform-strict-mode</code>, <code>babel-plugin-transform-template-literals</code>, <code>babel-plugin-transform-typeof-symbol</code>, <code>babel-plugin-transform-typescript</code>, <code>babel-plugin-transform-unicode-escapes</code>, <code>babel-plugin-transform-unicode-regex</code>, <code>babel-preset-env</code>, <code>babel-preset-flow</code>, <code>babel-preset-react</code>, <code>babel-preset-typescript</code>, <code>babel-register</code>, <code>babel-standalone</code>, <code>babel-traverse</code>, <code>babel-types</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12186">#12186</a> chore: use workspace:* for dev deps (<a href="https://github.com/JLHwung">JLHwung</a>)</li> </ul> </li> <li><code>babel-compat-data</code>, <code>babel-helper-compilation-targets</code>, <code>babel-helper-create-class-features-plugin</code>, <code>babel-helper-remap-async-to-generator</code>, <code>babel-helper-simple-access</code>, <code>babel-helper-transform-fixture-test-runner</code>, <code>babel-plugin-transform-named-capturing-groups-regex</code>, <code>babel-plugin-transform-object-assign</code>, <code>babel-plugin-transform-parameters</code>, <code>babel-plugin-transform-react-jsx-self</code>, <code>babel-plugin-transform-react-jsx-source</code>, <code>babel-plugin-transform-template-literals</code>, <code>babel-preset-env</code>, <code>babel-preset-react</code>, <code>babel-runtime-corejs2</code>, <code>babel-runtime</code>, <code>babel-standalone</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12175">#12175</a> Remove unused <code>dependencies</code> and <code>devDependencies</code> (<a href="https://github.com/nicolo-ribaudo">nicolo-ribaudo</a>)</li> </ul> </li> </ul> <h2>v7.12.0 (2020-10-14)</h2> <h4>👓 Spec Compliance</h4> <ul> <li><code>babel-core</code>, <code>babel-helper-module-transforms</code>, <code>babel-parser</code>, <code>babel-plugin-proposal-export-namespace-from</code>, <code>babel-plugin-syntax-module-string-names</code>, <code>babel-plugin-transform-modules-amd</code>, <code>babel-plugin-transform-modules-commonjs</code>, <code>babel-plugin-transform-modules-systemjs</code>, <code>babel-plugin-transform-modules-umd</code>, <code>babel-types</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12091">#12091</a> String import/export specifier (<a href="https://github.com/JLHwung">JLHwung</a>)</li> </ul> </li> <li><code>babel-parser</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12111">#12111</a> [ts] Throw a syntax error for index signature with <code>declare</code> (<a href="https://github.com/sosukesuzuki">sosukesuzuki</a>)</li> </ul> </li> </ul> <h4>🚀 New Feature</h4> <ul> <li><code>babel-core</code>, <code>babel-generator</code>, <code>babel-parser</code>, <code>babel-plugin-syntax-import-assertions</code>, <code>babel-plugin-syntax-module-attributes</code>, <code>babel-standalone</code>, <code>babel-types</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12139">#12139</a> Parse import-assertions (<a href="https://github.com/xtuc">xtuc</a>)</li> </ul> </li> <li><code>babel-core</code>, <code>babel-helper-create-class-features-plugin</code>, <code>babel-helper-module-transforms</code>, <code>babel-helper-replace-supers</code>, <code>babel-plugin-proposal-class-static-block</code>, <code>babel-plugin-transform-modules-commonjs</code>, <code>babel-standalone</code>, <code>babel-traverse</code>, <code>babel-types</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12143">#12143</a> Transform class static block (<a href="https://github.com/JLHwung">JLHwung</a>)</li> </ul> </li> <li><code>babel-generator</code>, <code>babel-parser</code>, <code>babel-plugin-syntax-class-static-block</code>, <code>babel-types</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12079">#12079</a> Parse class static block (<a href="https://github.com/JLHwung">JLHwung</a>)</li> </ul> </li> <li><code>babel-generator</code>, <code>babel-parser</code>, <code>babel-types</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12129">#12129</a> Support TypeScript mapped type 'as' clauses (<a href="https://github.com/existentialism">existentialism</a>)</li> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12147">#12147</a> [ts] Add support for the "intrinsic" keyword (<a href="https://github.com/nicolo-ribaudo">nicolo-ribaudo</a>)</li> </ul> </li> <li><code>babel-parser</code>, <code>babel-types</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12131">#12131</a> [ts] Add support for template interpolations in types (<a href="https://github.com/nicolo-ribaudo">nicolo-ribaudo</a>)</li> </ul> </li> <li><code>babel-plugin-transform-modules-systemjs</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12163">#12163</a> SystemJS top-level await support (<a href="https://github.com/guybedford">guybedford</a>)</li> </ul> </li> <li><code>babel-plugin-transform-typescript</code>, <code>babel-preset-typescript</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/11950">#11950</a> Add <code>jsxPragmaFrag</code> support to typescript transform (<a href="https://github.com/JLHwung">JLHwung</a>)</li> </ul> </li> <li><code>babel-core</code>, <code>babel-helper-module-transforms</code>, <code>babel-parser</code>, <code>babel-plugin-proposal-export-namespace-from</code>, <code>babel-plugin-syntax-module-string-names</code>, <code>babel-plugin-transform-modules-amd</code>, <code>babel-plugin-transform-modules-commonjs</code>, <code>babel-plugin-transform-modules-systemjs</code>, <code>babel-plugin-transform-modules-umd</code>, <code>babel-types</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12091">#12091</a> String import/export specifier (<a href="https://github.com/JLHwung">JLHwung</a>)</li> </ul> </li> <li><code>babel-core</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/11907">#11907</a> Return a list of files that were read from loadPartialConfig (<a href="https://github.com/devongovett">devongovett</a>)</li> </ul> </li> </ul> <h4>🐛 Bug Fix</h4> <ul> <li><code>babel-parser</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12167">#12167</a> [ts] Add <code>asserts: false</code> to <code>TSTypePredicate</code> node (<a href="https://github.com/sosukesuzuki">sosukesuzuki</a>)</li> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12161">#12161</a> Move check for TSTypeCastExpression to catch another case (<a href="https://github.com/existentialism">existentialism</a>)</li> </ul> </li> </ul> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
||
|
|
678e12974d |
Add UI for timeline
Summary: Add a GUI for the timeline of a Component based off MarkerTimeline. It enables selecting points on the timeline, which will display their properties (arbitrary KVS). A button allows the user to select the current point of the timeline for the tree. This triggers unselection of the tree as per D24254002. Solving re-selection isn't trivial, which is why the tree collapses on redraw too, and I believe we can live with this UX for this v1. Reviewed By: astreet Differential Revision: D23865369 fbshipit-source-id: 026562e71aa04b4e5e1e7cf1392d8ef140cdf43c |
||
|
|
e9dc645423 |
Add Android support for Timeline detail view
Summary: This diff adds the Java classes that serialize to the data expected by the new timeline widget. See D23865369 for the JS counterpart. Currently the Flipper plugin uses `toString` to get the wire values. I'm not feeling like using a json library or dealing with JSONObject's nonsense, so these are rolled manually for now. Reviewed By: astreet Differential Revision: D24254377 fbshipit-source-id: b2fc00400c40b47ac29c9b83c0b66621c3677974 |
||
|
|
0f9e97e55c |
Add troubleshooting guide for yoga module errors
Summary: Tried to sum up all solutions mentioned in https://github.com/facebook/react-native/issues/28503 for this recurring problem. The most common problem being simply opening the wrong file in XCode. From experience I can tell this is not obvious for iOS noobs like me :-P. Reviewed By: passy Differential Revision: D24359426 fbshipit-source-id: bb4d4951ac287ed2b09203e5414f62628a3feeb0 |
||
|
|
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 |
||
|
|
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¶mMap[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 |
||
|
|
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 |
||
|
|
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 |
||
|
|
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 |
||
|
|
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=" |
||
|
|
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=" |
||
|
|
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 /> [](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 |
||
|
|
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=" |
||
|
|
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 |
||
|
|
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 |
||
|
|
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=" |
||
|
|
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=" |
||
|
|
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=" |
||
|
|
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=" |
||
|
|
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=" |
||
|
|
12dbfe9937 |
Upgrade docusaurus plugin
Summary: Upgrade docusaurus plugin Reviewed By: mweststrate Differential Revision: D24249617 fbshipit-source-id: d92e887b29b9eed43d9bae119fac2c6adbccbbaf |
||
|
|
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 |
||
|
|
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 |
||
|
|
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 |
||
|
|
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 |
||
|
|
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 |
||
|
|
ca271dd7c3 |
Flipper Release: v0.62.0
Summary: Releasing version 0.62.0 Reviewed By: nikoant Differential Revision: D24248944 fbshipit-source-id: 05742031294f6a77c78c0bdccbdffe7d82427f05 |