e4eecc53c4b75f8cd46ff873cbe302daea195b4c
8083 Commits
| Author | SHA1 | Message | Date | |
|---|---|---|---|---|
|
|
e4eecc53c4 |
EventAttribution -> FrameworkEventAttribution
Summary: Make it more specific as to keep it consistent with the other types. Do not export JSON. Reviewed By: antonk52 Differential Revision: D44625218 fbshipit-source-id: 9cab52ee7e7be21d13f85102597a60c9be967fd0 |
||
|
|
0c4ec03e69 |
Add event payload as event properties for the timeline view
Summary: Leverage the properties prop of `TimelineDataDescription`. Whenever an event is selected, the event payload is shown as the event properties. Reviewed By: antonk52 Differential Revision: D44497058 fbshipit-source-id: 09782d583957a0df8c3efd3f5a62af6b321a26e3 |
||
|
|
ce2bfe320b |
Payload and attribution for framework events
Summary: ^ Reviewed By: LukeDefeo Differential Revision: D44496975 fbshipit-source-id: 4f633d0f00239cac16ee332d35755b343d46b124 |
||
|
|
6bf099ef79 |
Flipper Snapshot Bump: v0.188.1-SNAPSHOT
Summary: Releasing snapshot version 0.188.1-SNAPSHOT Reviewed By: LukeDefeo Differential Revision: D44628088 fbshipit-source-id: 7b430c1fb9d8217ac4b0acb1870e4ce9000cb1d5 |
||
|
|
af1842a027 |
Flipper Release: v0.188.0
Summary: Releasing version 0.188.0 Reviewed By: LukeDefeo Differential Revision: D44628090 fbshipit-source-id: a6f22b743331e3e18f2a2787e2fb6471b32cd430 |
||
|
|
04911d9d85 |
Tabs need key now
Summary: Because Tabs now depend on the selected node (i.e. some nodes have events, some don't) they need to use a key. Reviewed By: antonk52 Differential Revision: D44624658 fbshipit-source-id: 693983f6a82c090adae3a2e009873d903626ab75 |
||
|
|
8f9bf978e1 |
Ignore OverlayHandlerView as active child
Summary: On foldable devices, there's an issue whereas the topmost root view is of type `OverlayHandlerView`. This doesn't seem to be related in any way to the running app's UI. Or at least is not something of interest when debugging the running app's UI (for example, ig4a). This change effectively ignores the `OverlayHandlerView` instance as active child and instead returns the next to last root view. Reviewed By: LukeDefeo Differential Revision: D44579223 fbshipit-source-id: cea52289c5ba1e6a96817232ac54725b8d2f48d9 |
||
|
|
5b0ae2a4f8 |
Fix NPE when activeChildIdx points to the non-existent entry
Summary: Based on the stack trace in T145744183, `activeChildIdx` could point to a non-existent array element. Previously, we used to: 1) Find the index of the activeChild in the non-filtered array of children 2) Filter the array As a result, it could lead to some of the elements in the child array to be filtered and shifting activeChildIdx, making it invalid. Now, we search activeChild in the already filtered array. Reviewed By: LukeDefeo Differential Revision: D44575170 fbshipit-source-id: 2cb9a0b24badc8509a859011694f77b048d93316 |
||
|
|
695c669e0c |
TimelineDataDescription to accept any properties
Summary: DataInspector can use `any` value to inspect. Lift the constraint from TimelineDataDescription as ultimately is not necessary i.e. the right inspector will be used based on the type of properties. Reviewed By: antonk52 Differential Revision: D44572963 fbshipit-source-id: ad8a257020c90e18468e905f2beda44c2ee06368 |
||
|
|
2e8427f26b |
Add getUser back as deprecated method
Summary: On downloading the new flipper update some of the older plugins which are on a different release cycle may try to call getUser which was removed in this stack in favour of getCached user and fetchUser, adding this back temporarily so those calls dont fail. This can be removed down the road once those plugins have soaked into the user base Reviewed By: ivanmisuno, aigoncharov Differential Revision: D44541277 fbshipit-source-id: 95e67d5ba11bbc26590d2789127cbf6a68c54f16 |
||
|
|
140ca5991e |
Dont show token notification when sign in sheet open
Summary: This is an edge case where if we make a intern call to fetch user with an invalid token we would imply that the token may have expired. Since we already have a error message in the sign in sheet we dont show the notification Reviewed By: aigoncharov Differential Revision: D44502480 fbshipit-source-id: 531df6db28bc2a6f36ffcf0a3903ee0e8e40be0f |
||
|
|
e47d99a69e |
Remove unused plugin update command / redux action
Summary: This command is never actually dispatched so removing to avoid future confusion. When new plugins are downloaded a check is done here https://fburl.com/code/e3zedljb to see if pluginIsDisabledForAllConnectedClients, if so, load command is queued, which internally calls update (which resets state) If the plugin is not disabled then a message appears asking user to manually reload. Reviewed By: aigoncharov Differential Revision: D44502476 fbshipit-source-id: b796b77f843218c07ee612d9f45cacba073362d3 |
||
|
|
f8e326f4d5 |
Rename login/logout of reducer to setUserProfile
Summary: The source of truth for logging in is the atom, the userprofile is a side effect and is cached so calling these actions login/logout is very confusing, especially considering those functions exist elsewhere that manage the atoms Reviewed By: aigoncharov Differential Revision: D44502481 fbshipit-source-id: 77080cc02134684a58f52fcad74041b4508a22f0 |
||
|
|
ea22ed8f56 |
Force logged in
Summary: This diff introduces a few changes: The login sheet is no longer closable via the x or clicking outside the modal, the cancel button is removed On startup we check if we have a toke and throw up the sheet if logout occurs for any reason we throw up the sheet renamed write_keychain to login, to be consstent with the logout method. It does more than write to key chain since it manages the logged in atom also Reviewed By: aigoncharov Differential Revision: D44502483 fbshipit-source-id: 1d91d4eaae65ca523a08e205d1ad730d4d4d090f |
||
|
|
90069381e8 |
Clean up cache and redux store after logout
Summary: There were redundant places we were cleaning up and logging out, now all syncronisation between the atom world and everything else is done via the atom subscription. Reviewed By: aigoncharov Differential Revision: D44463888 fbshipit-source-id: 9fc2af64b1e0667dd852096557107a48f2fa924c |
||
|
|
91c5a11e1b |
Add state to login button when disconnected
Summary: Indicate intern connection state via an icon, now that we are polling when offline this icon automatically goes away one we reconnect Reviewed By: aigoncharov Differential Revision: D44502479 fbshipit-source-id: fb411940f1e4cad50539fe08df6d6194b176404a |
||
|
|
3a85835a9a |
Sync login atom to prescense of token
Summary: Logged in state now means that we have a valid token. On startup we try to retrieve a token, if its there then we are logged in, if we remove the tokem, due to explicit logout, or if its expired we are logged out. Connected is more dynamic, it means we can actually hit intern with a sucessful response. It implicitly requires a token / being logged in Reviewed By: aigoncharov Differential Revision: D44502482 fbshipit-source-id: e3077101766cba5128a61d62be3bbd1ca1f00b4f |
||
|
|
5a6091f6f8 |
Left rail log in icon decided by atom, cache user profile
Summary: Previously the left rail state was decided by prescense of user profile but we are moving to logged in state being based on the atom. As a result we need to cache the user profile so we have something to display when user not on vpn on startup Reviewed By: aigoncharov Differential Revision: D44502477 fbshipit-source-id: 11462d24c773d6d364e844b4f606e124e5278348 |
||
|
|
cb11b360fc |
Use theme colours
Summary: Stacktrace component was not properly displaying on Light/Dark mode as it was using colours not from the theme. This change addresses that. Reviewed By: ivanmisuno Differential Revision: D44537750 fbshipit-source-id: 1d95313bfc9b5ef386864fa230348b76dce6d648 |
||
|
|
aa6f04815b |
Add option to allow debugging Android services as well (#4631)
Summary: Pull Request resolved: https://github.com/facebook/flipper/pull/4631 In React Native for VR we use `FlipperUtils.shouldEnableFlipper()` to determine whether Flipper should be enabled for the given app build. The problem is that some of our apps are legitimately running as services (e.g. `com.oculus.explore:explore`), so the check added inside Flipper in D5126205 which only enables Flipper for "main application's process". This diff adds an ability to relax this requirement (as we do want to do it for the RN VR applications) Reviewed By: passy Differential Revision: D44511667 fbshipit-source-id: 673912b204391799a9e8821b737681d1f44bd6a8 |
||
|
|
2a52656d0b |
do not strip comments with tsc
Summary: Since tsc strips comments when writing plugins the dx is lacking as the doumentated comments are not discoverable via hovers in text editors Reviewed By: aigoncharov Differential Revision: D44498403 fbshipit-source-id: 8fe262f2d815adfbe989ece5d783359c9af4d180 |
||
|
|
60f4bc1a65 |
enable -Wstrict-prototypes
Summary: The 14.3 toolchain includes `-Wstrict-prototypes` in `-Wall`. Add it to the default warning list to ensure the code is buildable with the 14.3 toolchain. Please forward fix any build breakage introduced by this change. Reviewed By: NSProgrammer Differential Revision: D44371491 fbshipit-source-id: 257c7f7748b079a34ffd5c041339d518bef9d1e5 |
||
|
|
35c145463a |
Limit notification length
Summary: See https://fb.workplace.com/groups/flippersupport/permalink/1593262167821102/ Reviewed By: antonk52 Differential Revision: D44459787 fbshipit-source-id: ef14e560c523fddf4f815d0faafa37e44dc416b8 |
||
|
|
914db21c7d |
Bump ws from 8.12.1 to 8.13.0 in /js/js-flipper (#4594)
Summary: Bumps [ws](https://github.com/websockets/ws) from 8.12.1 to 8.13.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>8.13.0</h2> <h1>Features</h1> <ul> <li>Added the <code>finishRequest</code> option to support late addition of headers (<a href="https://redirect.github.com/websockets/ws/issues/2123">https://github.com/facebook/flipper/issues/2123</a>).</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
||
|
|
29b4b29d85 |
Bump sinon from 15.0.1 to 15.0.2 in /js/js-flipper (#4595)
Summary: skip-frl-buck-targeting Bumps [sinon](https://github.com/sinonjs/sinon) from 15.0.1 to 15.0.2. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/sinonjs/sinon/blob/main/docs/changelog.md">sinon's changelog</a>.</em></p> <blockquote> <h2>15.0.2</h2> <ul> <li><a href=" |
||
|
|
a710503a78 |
Bump eslint from 8.35.0 to 8.36.0 in /js/js-flipper (#4596)
Summary: skip-frl-buck-targeting Bumps [eslint](https://github.com/eslint/eslint) from 8.35.0 to 8.36.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>v8.36.0</h2> <h2>Features</h2> <ul> <li><a href=" |
||
|
|
13275f77be |
Use Buffer polyfill
Summary: Buffer is not available in the browser Reviewed By: lblasa Differential Revision: D44416645 fbshipit-source-id: 9cca069b8b0111f96bb47628e5f2196a22c9812d |
||
|
|
4b5357da7e |
Allow relative import from package root inside of top-level fb folder
Reviewed By: LukeDefeo Differential Revision: D44415645 fbshipit-source-id: d19c5144f9ee374cde0727f93f583552664bc806 |
||
|
|
7f2a0c94f9 |
Deprecate Layout plugin
Summary: ^ Reviewed By: aigoncharov Differential Revision: D44417781 fbshipit-source-id: 7ffb369d88771901c9ffca2bbe8ecbd571373a77 |
||
|
|
1f78f43f4c |
Flipper Snapshot Bump: v0.187.2-SNAPSHOT
Summary: Releasing snapshot version 0.187.2-SNAPSHOT Reviewed By: aigoncharov Differential Revision: D44416757 fbshipit-source-id: c2b142427221fa19ece76893dbf24fb8c6dd5d59 |
||
|
|
bc9d53660a |
Flipper Release: v0.187.1
Summary: Releasing version 0.187.1 Reviewed By: aigoncharov Differential Revision: D44416758 fbshipit-source-id: 2c390e1124c63d873fc442dcdfba7a9ac272530e |
||
|
|
09f7bcf878 |
Fail fast if DataSourceRendererVirtual references an non-existent value
Reviewed By: ivanmisuno Differential Revision: D44417205 fbshipit-source-id: 043b3b12ea44d85f1fb02e2cf030b4c9cc7e5087 |
||
|
|
ea92388b09 |
Bump robolectric from 4.9 to 4.9.2 (#4473)
Summary: Bumps [robolectric](https://github.com/robolectric/robolectric) from 4.9 to 4.9.2. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/robolectric/robolectric/releases">robolectric's releases</a>.</em></p> <blockquote> <p>Robolectric 4.9.2 is a minor release that primarily fixes <a href="https://github-redirect.dependabot.com/robolectric/robolectric/issues/7879">robolectric/robolectric#7879</a>, which was an issue using native SQLite with older Linux machines.</p> <p>It also includes:</p> <ul> <li>A fix for ShadowSpeechRecognizer in SDK <= 28 (0df34bf0cb5423afb64d7f4340c95e741ba26aa6, thanks <a href="https://github.com/utzcoz"><code>@utzcoz</code></a>)</li> <li>Some fixes for instrumenting Jacoco-instrumented classes (7534d628fd69caab623b1ed31bf2096fd3c914db and 4e6047d88f7e8d9c83b13842a0d584d7eccd068a). Note there are still known issues with running Robolectric instrumentation on Jacoco-instrumented classes which should hopefully be fixed in 4.10.</li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/robolectric/robolectric/compare/robolectric-4.9.1...robolectric-4.9.2">https://github.com/robolectric/robolectric/compare/robolectric-4.9.1...robolectric-4.9.2</a></p> <p>Robolectric 4.9.1 is a minor release that fixes several issues:</p> <ul> <li>Fixes sdk levels in ShadowAppOpsManager (50e2cfa4294c5dcfb7127f51f355a366f947c89a, thanks <a href="https://github.com/paulsowden"><code>@paulsowden</code></a>)</li> <li>Fixes an issue loading the native runtime on concurrent threads (0b4e996c27b85f05f7f52f75bc9d5109be7ef767)</li> <li>Fixes some uses of LineBreaker and StaticLayout in Compose (ed2d7d3d600972090de29bcf9ad37d65a4d7ef47, thanks <a href="https://github.com/samliu000"><code>@samliu000</code></a>)</li> <li>Added proxy settings for fetching artifacts (bed3ca5a4ea314f730a9d58331b0099ca4c0abeb, thanks <a href="https://github.com/sebastienrussell"><code>@sebastienrussell</code></a>)</li> <li>Avoid referring to Android S TelephonyCallback (d43ae9ad7b74512dbf89518247769ca5c2c4128c, thanks <a href="https://github.com/styluo"><code>@styluo</code></a>)</li> <li>Fix data race in ShadowPausedLooper (cb231c8c133b6f2ed4e46148d1a4f551fdd52dd2)</li> <li>Add shadow for LocaleManager#getSystemLocales (24d49f41227c35e0e3ce8564e404a39481c312e6, thanks <a href="https://github.com/utzcoz"><code>@utzcoz</code></a>)</li> <li>Use uninterruptibly acquire for ResTable's lock (a221f6829110fd40b124527bde5317123f1737d9, thanks <a href="https://github.com/utzcoz"><code>@utzcoz</code></a>)</li> <li>Update androidx.test dependencies to latest stable releases (0bdf89b884ac7c50c0e4d7a2b2fff848d795bf16, thanks <a href="https://github.com/utzcoz"><code>@utzcoz</code></a>)</li> <li>Support zip files where EOCD's offset to central dir is -1 (9b36bc6b013db9e9eef5c509b2471cc8b0a7395a)</li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/robolectric/robolectric/compare/robolectric-4.9...robolectric-4.9.1">https://github.com/robolectric/robolectric/compare/robolectric-4.9...robolectric-4.9.1</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
||
|
|
ccdc6735c6 |
Log mock errors only for connected devices
Reviewed By: antonk52 Differential Revision: D44367935 fbshipit-source-id: e6de3bf08d9daef9e607b9d24200892f4d04ecd2 |
||
|
|
905f5eea0f |
Back out "Bump @oclif/command from 1.8.16 to 1.8.22 in /desktop"
Summary: Original commit changeset: a9b2be74bd3f Original Phabricator Diff: D43905200 It seems that ti caused NPM publishing to start failing https://github.com/facebook/flipper/actions/workflows/publish-npm.yml Reviewed By: passy Differential Revision: D44367845 fbshipit-source-id: eef31c80561872d40babe03227a3ce0fc32eee72 |
||
|
|
77905f30c8 |
Add context to AbstractClient rawCall errors
Summary: Attempting to fix T146503217. There is no context to the error so this should make it easier in the future. In the MID it says that the layout plugin was selected i made sure to handle any promise rejections in that plugin Reviewed By: passy Differential Revision: D44302939 fbshipit-source-id: 987e2c4efd2dc47d2e032d1b21f90458ec5a2df5 |
||
|
|
c158177ea6 |
Bump androidx.test.espresso:espresso-intents from 3.5.0 to 3.5.1 (#4531)
Summary: Bumps androidx.test.espresso:espresso-intents from 3.5.0 to 3.5.1. [](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/4531 Reviewed By: ivanmisuno Differential Revision: D44215185 Pulled By: mweststrate fbshipit-source-id: 3be15f103d44725c08ec2e6c979741b2548f5363 |
||
|
|
0bfc2cfe2a |
Bump org.jetbrains.dokka:dokka-gradle-plugin from 1.7.20 to 1.8.10 (#4590)
Summary: Bumps [org.jetbrains.dokka:dokka-gradle-plugin](https://github.com/Kotlin/dokka) from 1.7.20 to 1.8.10. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/Kotlin/dokka/releases">org.jetbrains.dokka:dokka-gradle-plugin's releases</a>.</em></p> <blockquote> <h2>1.8.10 Beta</h2> <p>Dokka's documentation has been entirely rewritten and can now be found on <a href="https://kotlinlang.org/docs/dokka-introduction.html">kotlinlang.org</a>:</p> <ul> <li>More examples, including Groovy DSL for Gradle project configuration</li> <li>More guidelines to help beginners</li> <li>More details for complex projects</li> </ul> <p><strong>Note</strong>: Version 1.8.0 was skipped due to a Metaspace memory leak in Kotlin's reflection (<a href="https://youtrack.jetbrains.com/issue/KT-56093">KT-56093</a>). Dokka 1.8.10 should be fully compatible with Kotlin 1.8.0.</p> <h2>Improvements</h2> <ul> <li>Revise project documentation and examples (<a href="https://redirect.github.com/Kotlin/dokka/issues/2728">https://github.com/facebook/flipper/issues/2728</a>, <a href="https://redirect.github.com/Kotlin/dokka/issues/2737">https://github.com/facebook/flipper/issues/2737</a>, <a href="https://redirect.github.com/Kotlin/dokka/issues/2736">https://github.com/facebook/flipper/issues/2736</a>). Thanks to <a href="https://github.com/sarahhaggarty"><code>@sarahhaggarty</code></a> for helping!</li> <li>Support generating documentation for Kotlin/Wasm projects (<a href="https://redirect.github.com/Kotlin/dokka/issues/2814">#2814</a>). Thanks to <a href="https://github.com/igoriakovlev"><code>@igoriakovlev</code></a>!</li> <li>Move the contents of <code>Inheritors</code>, <code>Parameters</code>, <code>See also</code> and <code>Samples</code> tabs into the main declaration description (<a href="https://redirect.github.com/Kotlin/dokka/issues/2688">https://github.com/facebook/flipper/issues/2688</a>).</li> <li>Add <code>Members</code> and <code>Members & Extensions</code> tabs to class-like declaration pages (<a href="https://redirect.github.com/Kotlin/dokka/issues/2764">https://github.com/facebook/flipper/issues/2764</a>).</li> <li>Display source set / platform indicators at all times, which should help identify the supported platform of single-platform libraries and modules. (<a href="https://redirect.github.com/Kotlin/dokka/issues/2847">https://github.com/facebook/flipper/issues/2847</a>).</li> <li>Generate the default no-arg constructor for Java declarations (<a href="https://redirect.github.com/Kotlin/dokka/issues/2765">https://github.com/facebook/flipper/issues/2765</a>).</li> </ul> <h2>Bugfixes</h2> <ul> <li>Fixed analysis environment not being properly disposed (<a href="https://redirect.github.com/Kotlin/dokka/issues/2755">https://github.com/facebook/flipper/issues/2755</a>).</li> <li>Fixed nondeterministic sorting of function/property overloads (<a href="https://redirect.github.com/Kotlin/dokka/issues/2784">https://github.com/facebook/flipper/issues/2784</a>).</li> <li>Fixed inconsistent alphabetical order of element groups in index and navigation (<a href="https://redirect.github.com/Kotlin/dokka/issues/2861">https://github.com/facebook/flipper/issues/2861</a>).</li> <li>Fixed constructors being rendered as functions (<a href="https://redirect.github.com/Kotlin/dokka/issues/2689">https://github.com/facebook/flipper/issues/2689</a>).</li> <li>Fixed default values for <code>var</code> properties being displayed (<a href="https://redirect.github.com/Kotlin/dokka/issues/2717">https://github.com/facebook/flipper/issues/2717</a>).</li> <li>Fixed source links leading to the KDoc instead of the declaration (<a href="https://redirect.github.com/Kotlin/dokka/issues/2724">https://github.com/facebook/flipper/issues/2724</a>).</li> <li>Fixed thread-safety issues in <code>DokkaLogger</code> (<a href="https://redirect.github.com/Kotlin/dokka/issues/2827">#2827</a>).</li> <li>Fixed documentation not being inherited in case of diamond inheritance (<a href="https://redirect.github.com/Kotlin/dokka/issues/2686">https://github.com/facebook/flipper/issues/2686</a>).</li> </ul> <h3>Gradle Plugin</h3> <ul> <li>Fixed <code>NoSuchMethodError</code> when running under Gradle 8 (<a href="https://redirect.github.com/Kotlin/dokka/issues/2796">#2796</a>).</li> <li>Fixed possible metaspace leaks due to external thread locals not being disposed (<a href="https://redirect.github.com/Kotlin/dokka/issues/2678">https://github.com/facebook/flipper/issues/2678</a>).</li> <li>Fixed premature initialization of <code>outputDirectory</code> input property (<a href="https://redirect.github.com/Kotlin/dokka/issues/556">https://github.com/facebook/flipper/issues/556</a>).</li> <li>Fixed premature initialization of <code>moduleVersion</code> input property (<a href="https://redirect.github.com/Kotlin/dokka/issues/2799">#2799</a>). Thanks to <a href="https://github.com/JavierSegoviaCordoba"><code>@JavierSegoviaCordoba</code></a>!</li> <li>Fixed unnecessary snapshotting of source link directory input which led to performance problems (<a href="https://redirect.github.com/Kotlin/dokka/issues/2807">#2807</a>).</li> <li>Fixed missing group and description for <code>MultiModule</code> tasks (<a href="https://redirect.github.com/Kotlin/dokka/issues/2806">#2806</a>). Thanks to <a href="https://github.com/TWiStErRob"><code>@TWiStErRob</code></a>!</li> </ul> <h3>Javadoc</h3> <ul> <li>Fixed truncation of module and package description after the first sentence (<a href="https://redirect.github.com/Kotlin/dokka/issues/2055">https://github.com/facebook/flipper/issues/2055</a>). Thanks to <a href="https://github.com/BlackAnubis7"><code>@BlackAnubis7</code></a>!</li> <li>Fixed rendering of empty/useless Kotlin companion objects (<a href="https://redirect.github.com/Kotlin/dokka/issues/200">https://github.com/facebook/flipper/issues/200</a>, <a href="https://redirect.github.com/Kotlin/dokka/issues/2086">https://github.com/facebook/flipper/issues/2086</a>)</li> <li>Fixed leaking configuration/environment details in generated links (<a href="https://redirect.github.com/Kotlin/dokka/issues/2803">#2803</a>).</li> <li>Fixed incorrect links when <code>javadoc.jar</code> produced by Dokka is imported into IntelliJ IDEA / Android Studio (<a href="https://redirect.github.com/Kotlin/dokka/issues/2734">https://github.com/facebook/flipper/issues/2734</a>). Thanks to <a href="https://github.com/bomberaya"><code>@bomberaya</code></a>!</li> </ul> <h2>Plugin API</h2> <ul> <li>Mark Plugin API as experimental (<a href="https://redirect.github.com/Kotlin/dokka/issues/2716">https://github.com/facebook/flipper/issues/2716</a>).</li> </ul> <h2>Infrastructure</h2> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
||
|
|
f1c88dc8ed |
Bump org.mockito:mockito-core from 5.0.0 to 5.2.0 (#4591)
Summary: Bumps [org.mockito:mockito-core](https://github.com/mockito/mockito) from 5.0.0 to 5.2.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/mockito/mockito/releases">org.mockito:mockito-core's releases</a>.</em></p> <blockquote> <h2>v5.2.0</h2> <p><!-- raw HTML omitted --><!-- raw HTML omitted --><em>Changelog generated by <a href="https://github.com/shipkit/shipkit-changelog">Shipkit Changelog Gradle Plugin</a></em><!-- raw HTML omitted --><!-- raw HTML omitted --></p> <h4>5.2.0</h4> <ul> <li>2023-03-09 - <a href="https://github.com/mockito/mockito/compare/v5.1.1...v5.2.0">25 commit(s)</a> by Andriy Redko, Iulian Dragos, Roberto Trunfio, Róbert Papp, dependabot[bot], jfrantzius, tobiasbaum</li> <li>Fixes 2933: IOUtils does not depend on platform encoding any more [(<a href="https://redirect.github.com/mockito/mockito/issues/2935">https://github.com/facebook/flipper/issues/2935</a>)](<a href="https://redirect.github.com/mockito/mockito/pull/2935">mockito/mockito#2935</a>)</li> <li>Execution with mockito-inline fails on platforms with EBCDIC as default encoding [(<a href="https://redirect.github.com/mockito/mockito/issues/2933">https://github.com/facebook/flipper/issues/2933</a>)](<a href="https://redirect.github.com/mockito/mockito/issues/2933">mockito/mockito#2933</a>)</li> <li>Bump io.github.gradle-nexus:publish-plugin from 1.2.0 to 1.3.0 [(<a href="https://redirect.github.com/mockito/mockito/issues/2932">https://github.com/facebook/flipper/issues/2932</a>)](<a href="https://redirect.github.com/mockito/mockito/pull/2932">mockito/mockito#2932</a>)</li> <li>Bump versions.bytebuddy from 1.14.0 to 1.14.1 [(<a href="https://redirect.github.com/mockito/mockito/issues/2931">https://github.com/facebook/flipper/issues/2931</a>)](<a href="https://redirect.github.com/mockito/mockito/pull/2931">mockito/mockito#2931</a>)</li> <li>Bump com.diffplug.spotless from 6.15.0 to 6.16.0 [(<a href="https://redirect.github.com/mockito/mockito/issues/2930">https://github.com/facebook/flipper/issues/2930</a>)](<a href="https://redirect.github.com/mockito/mockito/pull/2930">mockito/mockito#2930</a>)</li> <li>Bump com.google.googlejavaformat:google-java-format from 1.15.0 to 1.16.0 [(<a href="https://redirect.github.com/mockito/mockito/issues/2928">https://github.com/facebook/flipper/issues/2928</a>)](<a href="https://redirect.github.com/mockito/mockito/pull/2928">mockito/mockito#2928</a>)</li> <li>Bump io.github.gradle-nexus:publish-plugin from 1.1.0 to 1.2.0 [(<a href="https://redirect.github.com/mockito/mockito/issues/2924">https://github.com/facebook/flipper/issues/2924</a>)](<a href="https://redirect.github.com/mockito/mockito/pull/2924">mockito/mockito#2924</a>)</li> <li>Feature 2921 generic types [(<a href="https://redirect.github.com/mockito/mockito/issues/2923">https://github.com/facebook/flipper/issues/2923</a>)](<a href="https://redirect.github.com/mockito/mockito/pull/2923">mockito/mockito#2923</a>)</li> <li>Bump com.github.ben-manes.versions from 0.45.0 to 0.46.0 [(<a href="https://redirect.github.com/mockito/mockito/issues/2922">https://github.com/facebook/flipper/issues/2922</a>)](<a href="https://redirect.github.com/mockito/mockito/pull/2922">mockito/mockito#2922</a>)</li> <li>Use generic type information in TypeBasedCandidateFilter to circumvent type erasure [(<a href="https://redirect.github.com/mockito/mockito/issues/2921">https://github.com/facebook/flipper/issues/2921</a>)](<a href="https://redirect.github.com/mockito/mockito/issues/2921">mockito/mockito#2921</a>)</li> <li>Make project relocatable by using relative paths in the OSGi test task [(<a href="https://redirect.github.com/mockito/mockito/issues/2920">https://github.com/facebook/flipper/issues/2920</a>)](<a href="https://redirect.github.com/mockito/mockito/pull/2920">mockito/mockito#2920</a>)</li> <li>Cache misses due to OSGi tests referencing absolute paths [(<a href="https://redirect.github.com/mockito/mockito/issues/2919">https://github.com/facebook/flipper/issues/2919</a>)](<a href="https://redirect.github.com/mockito/mockito/issues/2919">mockito/mockito#2919</a>)</li> <li>Bump versions.bytebuddy from 1.13.0 to 1.14.0 [(<a href="https://redirect.github.com/mockito/mockito/issues/2918">https://github.com/facebook/flipper/issues/2918</a>)](<a href="https://redirect.github.com/mockito/mockito/pull/2918">mockito/mockito#2918</a>)</li> <li>Bump gradle/wrapper-validation-action from 1.0.5 to 1.0.6 [(<a href="https://redirect.github.com/mockito/mockito/issues/2917">https://github.com/facebook/flipper/issues/2917</a>)](<a href="https://redirect.github.com/mockito/mockito/pull/2917">mockito/mockito#2917</a>)</li> <li>Bump com.diffplug.spotless from 6.14.1 to 6.15.0 [(<a href="https://redirect.github.com/mockito/mockito/issues/2913">https://github.com/facebook/flipper/issues/2913</a>)](<a href="https://redirect.github.com/mockito/mockito/pull/2913">mockito/mockito#2913</a>)</li> <li>Bump versions.bytebuddy from 1.12.23 to 1.13.0 [(<a href="https://redirect.github.com/mockito/mockito/issues/2912">https://github.com/facebook/flipper/issues/2912</a>)](<a href="https://redirect.github.com/mockito/mockito/pull/2912">mockito/mockito#2912</a>)</li> <li>Bump ru.vyarus.animalsniffer from 1.6.0 to 1.7.0 [(<a href="https://redirect.github.com/mockito/mockito/issues/2911">https://github.com/facebook/flipper/issues/2911</a>)](<a href="https://redirect.github.com/mockito/mockito/pull/2911">mockito/mockito#2911</a>)</li> <li>Bump org.codehaus.groovy:groovy from 3.0.14 to 3.0.15 [(<a href="https://redirect.github.com/mockito/mockito/issues/2910">https://github.com/facebook/flipper/issues/2910</a>)](<a href="https://redirect.github.com/mockito/mockito/pull/2910">mockito/mockito#2910</a>)</li> <li>Fixes <a href="https://redirect.github.com/mockito/mockito/issues/2905">https://github.com/facebook/flipper/issues/2905</a> : ThreadLocal classes can be mocked. [(<a href="https://redirect.github.com/mockito/mockito/issues/2908">https://github.com/facebook/flipper/issues/2908</a>)](<a href="https://redirect.github.com/mockito/mockito/pull/2908">mockito/mockito#2908</a>)</li> <li>StackOverflow while mocking a ThreadLocal on Mockito 5.1.1 [(<a href="https://redirect.github.com/mockito/mockito/issues/2905">https://github.com/facebook/flipper/issues/2905</a>)](<a href="https://redirect.github.com/mockito/mockito/issues/2905">mockito/mockito#2905</a>)</li> <li>Fix most Gradle warnings in build [(<a href="https://redirect.github.com/mockito/mockito/issues/2904">https://github.com/facebook/flipper/issues/2904</a>)](<a href="https://redirect.github.com/mockito/mockito/pull/2904">mockito/mockito#2904</a>)</li> <li>Android CI improvements, improves <a href="https://redirect.github.com/mockito/mockito/issues/2892">https://github.com/facebook/flipper/issues/2892</a> [(<a href="https://redirect.github.com/mockito/mockito/issues/2903">https://github.com/facebook/flipper/issues/2903</a>)](<a href="https://redirect.github.com/mockito/mockito/pull/2903">mockito/mockito#2903</a>)</li> <li>Bump com.diffplug.spotless from 6.14.0 to 6.14.1 [(<a href="https://redirect.github.com/mockito/mockito/issues/2902">https://github.com/facebook/flipper/issues/2902</a>)](<a href="https://redirect.github.com/mockito/mockito/pull/2902">mockito/mockito#2902</a>)</li> <li>Bump versions.bytebuddy from 1.12.22 to 1.12.23 [(<a href="https://redirect.github.com/mockito/mockito/issues/2901">https://github.com/facebook/flipper/issues/2901</a>)](<a href="https://redirect.github.com/mockito/mockito/pull/2901">mockito/mockito#2901</a>)</li> <li>CI on Android API level 33 for Java 11 compatibility testing [(<a href="https://redirect.github.com/mockito/mockito/issues/2899">https://github.com/facebook/flipper/issues/2899</a>)](<a href="https://redirect.github.com/mockito/mockito/pull/2899">mockito/mockito#2899</a>)</li> <li>Bump kotlinVersion from 1.8.0 to 1.8.10 [(<a href="https://redirect.github.com/mockito/mockito/issues/2897">https://github.com/facebook/flipper/issues/2897</a>)](<a href="https://redirect.github.com/mockito/mockito/pull/2897">mockito/mockito#2897</a>)</li> <li>Bump com.github.ben-manes.versions from 0.44.0 to 0.45.0 [(<a href="https://redirect.github.com/mockito/mockito/issues/2895">https://github.com/facebook/flipper/issues/2895</a>)](<a href="https://redirect.github.com/mockito/mockito/pull/2895">mockito/mockito#2895</a>)</li> <li>Simplify and modernize Android Test module. [(<a href="https://redirect.github.com/mockito/mockito/issues/2894">https://github.com/facebook/flipper/issues/2894</a>)](<a href="https://redirect.github.com/mockito/mockito/pull/2894">mockito/mockito#2894</a>)</li> <li>Set up Android Github Action pipeline. Fixes <a href="https://redirect.github.com/mockito/mockito/issues/2892">https://github.com/facebook/flipper/issues/2892</a> [(<a href="https://redirect.github.com/mockito/mockito/issues/2893">https://github.com/facebook/flipper/issues/2893</a>)](<a href="https://redirect.github.com/mockito/mockito/pull/2893">mockito/mockito#2893</a>)</li> </ul> <h2>v5.1.1</h2> <p><!-- raw HTML omitted --><!-- raw HTML omitted --><em>Changelog generated by <a href="https://github.com/shipkit/shipkit-changelog">Shipkit Changelog Gradle Plugin</a></em><!-- raw HTML omitted --><!-- raw HTML omitted --></p> <h4>5.1.1</h4> <ul> <li>2023-01-30 - <a href="https://github.com/mockito/mockito/compare/v5.1.0...v5.1.1">1 commit(s)</a> by Andriy Redko</li> <li>StackWalker.Option not found on Mockito 5.1.0 [(<a href="https://redirect.github.com/mockito/mockito/issues/2891">https://github.com/facebook/flipper/issues/2891</a>)](<a href="https://redirect.github.com/mockito/mockito/pull/2891">mockito/mockito#2891</a>)</li> <li>StackWalker.Option not found on Mockito 5.1.0 [(<a href="https://redirect.github.com/mockito/mockito/issues/2890">https://github.com/facebook/flipper/issues/2890</a>)](<a href="https://redirect.github.com/mockito/mockito/issues/2890">mockito/mockito#2890</a>)</li> </ul> <h2>v5.1.0</h2> <p><!-- raw HTML omitted --><!-- raw HTML omitted --><em>Changelog generated by <a href="https://github.com/shipkit/shipkit-changelog">Shipkit Changelog Gradle Plugin</a></em><!-- raw HTML omitted --><!-- raw HTML omitted --></p> <h4>5.1.0</h4> <ul> <li>2023-01-29 - <a href="https://github.com/mockito/mockito/compare/v5.0.0...v5.1.0">12 commit(s)</a> by Andriy Redko, Ashley, Róbert Papp, Stephan Schroevers, Tim te Beek, dependabot[bot]</li> <li>Fixes some mistakes and missing details in documentation [(<a href="https://redirect.github.com/mockito/mockito/issues/2889">https://github.com/facebook/flipper/issues/2889</a>)](<a href="https://redirect.github.com/mockito/mockito/pull/2889">mockito/mockito#2889</a>)</li> <li>Bump com.diffplug.spotless from 6.13.0 to 6.14.0 [(<a href="https://redirect.github.com/mockito/mockito/issues/2888">https://github.com/facebook/flipper/issues/2888</a>)](<a href="https://redirect.github.com/mockito/mockito/pull/2888">mockito/mockito#2888</a>)</li> </ul> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
||
|
|
075de45076 |
Bump react-refresh from 0.11.0 to 0.14.0 in /desktop (#4540)
Summary: Bumps [react-refresh](https://github.com/facebook/react/tree/HEAD/packages/react) from 0.11.0 to 0.14.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/facebook/react/releases">react-refresh's releases</a>.</em></p> <blockquote> <h2>v0.14.0</h2> <p>See <a href="http://facebook.github.io/react/blog/2015/10/07/react-v0.14.html">http://facebook.github.io/react/blog/2015/10/07/react-v0.14.html</a>.</p> <h2>v0.13.3</h2> <h3>React Core</h3> <h4>New Features</h4> <ul> <li>Added <code>clipPath</code> element and attribute for SVG</li> <li>Improved warnings for deprecated methods in plain JS classes</li> </ul> <h4>Bug Fixes</h4> <ul> <li>Loosened <code>dangerouslySetInnerHTML</code> restrictions so <code>{__html: undefined}</code> will no longer throw</li> <li>Fixed extraneous context warning with non-pure <code>getChildContext</code></li> <li>Ensure <code>replaceState(obj)</code> retains prototype of <code>obj</code></li> </ul> <h3>React with Add-ons</h3> <h3>Bug Fixes</h3> <ul> <li>Test Utils: Ensure that shallow rendering works when components define <code>contextTypes</code></li> </ul> <h2>v0.13.2</h2> <h3>React Core</h3> <h4>New Features</h4> <ul> <li>Added <code>strokeDashoffset</code>, <code>flexPositive</code>, <code>flexNegative</code> to the list of unitless CSS properties</li> <li>Added support for more DOM properties: <ul> <li><code>scoped</code> - for <code><style></code> elements</li> <li><code>high</code>, <code>low</code>, <code>optimum</code> - for <code><meter></code> elements</li> <li><code>unselectable</code> - IE-specific property to prevent user selection</li> </ul> </li> </ul> <h4>Bug Fixes</h4> <ul> <li>Fixed a case where re-rendering after rendering null didn't properly pass context</li> <li>Fixed a case where re-rendering after rendering with <code>style={null}</code> didn't properly update <code>style</code></li> <li>Update <code>uglify</code> dependency to prevent a bug in IE8</li> <li>Improved warnings</li> </ul> <h3>React with Add-Ons</h3> <h4>Bug Fixes</h4> <ul> <li>Immutabilty Helpers: Ensure it supports <code>hasOwnProperty</code> as an object key</li> </ul> <h3>React Tools</h3> <ul> <li>Improve documentation for new options</li> </ul> <h2>v0.13.1</h2> <h3>React Core</h3> <h4>Bug Fixes</h4> <ul> <li>Don't throw when rendering empty <code><select></code> elements</li> <li>Ensure updating <code>style</code> works when transitioning from <code>null</code></li> </ul> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/facebook/react/blob/main/CHANGELOG.md">react-refresh's changelog</a>.</em></p> <blockquote> <h2>0.14.0 (October 7, 2015)</h2> <h3>Major changes</h3> <ul> <li>Split the main <code>react</code> package into two: <code>react</code> and <code>react-dom</code>. This paves the way to writing components that can be shared between the web version of React and React Native. This means you will need to include both files and some functions have been moved from <code>React</code> to <code>ReactDOM</code>.</li> <li>Addons have been moved to separate packages (<code>react-addons-clone-with-props</code>, <code>react-addons-create-fragment</code>, <code>react-addons-css-transition-group</code>, <code>react-addons-linked-state-mixin</code>, <code>react-addons-perf</code>, <code>react-addons-pure-render-mixin</code>, <code>react-addons-shallow-compare</code>, <code>react-addons-test-utils</code>, <code>react-addons-transition-group</code>, <code>react-addons-update</code>, <code>ReactDOM.unstable_batchedUpdates</code>).</li> <li>Stateless functional components - React components were previously created using React.createClass or using ES6 classes. This release adds a <a href="https://reactjs.org/docs/reusable-components.html#stateless-functions">new syntax</a> where a user defines a single <a href="https://reactjs.org/docs/reusable-components.html#stateless-functions">stateless render function</a> (with one parameter: <code>props</code>) which returns a JSX element, and this function may be used as a component.</li> <li>Refs to DOM components as the DOM node itself. Previously the only useful thing you can do with a DOM component is call <code>getDOMNode()</code> to get the underlying DOM node. Starting with this release, a ref to a DOM component <em>is</em> the actual DOM node. <strong>Note that refs to custom (user-defined) components work exactly as before; only the built-in DOM components are affected by this change.</strong></li> </ul> <h3>Breaking changes</h3> <ul> <li><code>React.initializeTouchEvents</code> is no longer necessary and has been removed completely. Touch events now work automatically.</li> <li>Add-Ons: Due to the DOM node refs change mentioned above, <code>TestUtils.findAllInRenderedTree</code> and related helpers are no longer able to take a DOM component, only a custom component.</li> <li>The <code>props</code> object is now frozen, so mutating props after creating a component element is no longer supported. In most cases, <a href="https://reactjs.org/docs/react-api.html#cloneelement"><code>React.cloneElement</code></a> should be used instead. This change makes your components easier to reason about and enables the compiler optimizations mentioned above.</li> <li>Plain objects are no longer supported as React children; arrays should be used instead. You can use the <a href="https://reactjs.org/docs/create-fragment.html"><code>createFragment</code></a> helper to migrate, which now returns an array.</li> <li>Add-Ons: <code>classSet</code> has been removed. Use <a href="https://github.com/JedWatson/classnames">classnames</a> instead.</li> <li>Web components (custom elements) now use native property names. Eg: <code>class</code> instead of <code>className</code>.</li> </ul> <h3>Deprecations</h3> <ul> <li><code>this.getDOMNode()</code> is now deprecated and <code>ReactDOM.findDOMNode(this)</code> can be used instead. Note that in the common case, <code>findDOMNode</code> is now unnecessary since a ref to the DOM component is now the actual DOM node.</li> <li><code>setProps</code> and <code>replaceProps</code> are now deprecated. Instead, call ReactDOM.render again at the top level with the new props.</li> <li>ES6 component classes must now extend <code>React.Component</code> in order to enable stateless function components. The <a href="https://reactjs.org/blog/2015/01/27/react-v0.13.0-beta-1.html#other-languages">ES3 module pattern</a> will continue to work.</li> <li>Reusing and mutating a <code>style</code> object between renders has been deprecated. This mirrors our change to freeze the <code>props</code> object.</li> <li>Add-Ons: <code>cloneWithProps</code> is now deprecated. Use <a href="https://reactjs.org/docs/react-api.html#cloneelement"><code>React.cloneElement</code></a> instead (unlike <code>cloneWithProps</code>, <code>cloneElement</code> does not merge <code>className</code> or <code>style</code> automatically; you can merge them manually if needed).</li> <li>Add-Ons: To improve reliability, <code>CSSTransitionGroup</code> will no longer listen to transition events. Instead, you should specify transition durations manually using props such as <code>transitionEnterTimeout={500}</code>.</li> </ul> <h3>Notable enhancements</h3> <ul> <li>Added <code>React.Children.toArray</code> which takes a nested children object and returns a flat array with keys assigned to each child. This helper makes it easier to manipulate collections of children in your <code>render</code> methods, especially if you want to reorder or slice <code>this.props.children</code> before passing it down. In addition, <code>React.Children.map</code> now returns plain arrays too.</li> <li>React uses <code>console.error</code> instead of <code>console.warn</code> for warnings so that browsers show a full stack trace in the console. (Our warnings appear when you use patterns that will break in future releases and for code that is likely to behave unexpectedly, so we do consider our warnings to be “must-fix” errors.)</li> <li>Previously, including untrusted objects as React children <a href="http://danlec.com/blog/xss-via-a-spoofed-react-element">could result in an XSS security vulnerability</a>. This problem should be avoided by properly validating input at the application layer and by never passing untrusted objects around your application code. As an additional layer of protection, <a href="https://github-redirect.dependabot.com/facebook/react/pull/4832">React now tags elements</a> with a specific <a href="http://www.2ality.com/2014/12/es6-symbols.html">ES2015 (ES6) <code>Symbol</code></a> in browsers that support it, in order to ensure that React never considers untrusted JSON to be a valid element. If this extra security protection is important to you, you should add a <code>Symbol</code> polyfill for older browsers, such as the one included by <a href="https://babeljs.io/docs/usage/polyfill/">Babel’s polyfill</a>.</li> <li>When possible, React DOM now generates XHTML-compatible markup.</li> <li>React DOM now supports these standard HTML attributes: <code>capture</code>, <code>challenge</code>, <code>inputMode</code>, <code>is</code>, <code>keyParams</code>, <code>keyType</code>, <code>minLength</code>, <code>summary</code>, <code>wrap</code>. It also now supports these non-standard attributes: <code>autoSave</code>, <code>results</code>, <code>security</code>.</li> <li>React DOM now supports these SVG attributes, which render into namespaced attributes: <code>xlinkActuate</code>, <code>xlinkArcrole</code>, <code>xlinkHref</code>, <code>xlinkRole</code>, <code>xlinkShow</code>, <code>xlinkTitle</code>, <code>xlinkType</code>, <code>xmlBase</code>, <code>xmlLang</code>, <code>xmlSpace</code>.</li> <li>The <code>image</code> SVG tag is now supported by React DOM.</li> <li>In React DOM, arbitrary attributes are supported on custom elements (those with a hyphen in the tag name or an <code>is="..."</code> attribute).</li> <li>React DOM now supports these media events on <code>audio</code> and <code>video</code> tags: <code>onAbort</code>, <code>onCanPlay</code>, <code>onCanPlayThrough</code>, <code>onDurationChange</code>, <code>onEmptied</code>, <code>onEncrypted</code>, <code>onEnded</code>, <code>onError</code>, <code>onLoadedData</code>, <code>onLoadedMetadata</code>, <code>onLoadStart</code>, <code>onPause</code>, <code>onPlay</code>, <code>onPlaying</code>, <code>onProgress</code>, <code>onRateChange</code>, <code>onSeeked</code>, <code>onSeeking</code>, <code>onStalled</code>, <code>onSuspend</code>, <code>onTimeUpdate</code>, <code>onVolumeChange</code>, <code>onWaiting</code>.</li> <li>Many small performance improvements have been made.</li> <li>Many warnings show more context than before.</li> <li>Add-Ons: A <a href="https://github-redirect.dependabot.com/facebook/react/pull/3355"><code>shallowCompare</code></a> add-on has been added as a migration path for <code>PureRenderMixin</code> in ES6 classes.</li> <li>Add-Ons: <code>CSSTransitionGroup</code> can now use <a href="https://github.com/facebook/react/blob/48942b85/docs/docs/10.1-animation.md#custom-classes">custom class names</a> instead of appending <code>-enter-active</code> or similar to the transition name.</li> </ul> <h3>New helpful warnings</h3> <ul> <li>React DOM now warns you when nesting HTML elements invalidly, which helps you avoid surprising errors during updates.</li> <li>Passing <code>document.body</code> directly as the container to <code>ReactDOM.render</code> now gives a warning as doing so can cause problems with browser extensions that modify the DOM.</li> <li>Using multiple instances of React together is not supported, so we now warn when we detect this case to help you avoid running into the resulting problems.</li> </ul> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
||
|
|
15e1c99245 |
Bump reselect from 4.1.5 to 4.1.7 in /desktop (#4541)
Summary: Bumps [reselect](https://github.com/reduxjs/reselect) from 4.1.5 to 4.1.7. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/reduxjs/reselect/releases">reselect's releases</a>.</em></p> <blockquote> <h2>v4.1.7</h2> <p>This release updates the TS types to work correctly with TS 4.9, which made a change that broke the existing <code>MergeParameters</code> type implementation. Happily, the TS team <a href="https://github-redirect.dependabot.com/microsoft/TypeScript/pull/50831#issuecomment-1253830522">provided a better (and simpler!) <code>MergeParameters</code> implementation</a>. Since that only works with TS 4.7+, we've reworked the internals to handle providing the old implementation to TS 4.2..4.6, and the new implementation to TS 4.7 and greater.</p> <p>As a user, there should be no visible change - just update to 4.1.7.</p> <h2>What's Changed</h2> <ul> <li>Include 4.6 in the TS test matrix by <a href="https://github.com/lukeapage"><code>@lukeapage</code></a> in <a href="https://github-redirect.dependabot.com/reduxjs/reselect/pull/576">reduxjs/reselect#576</a></li> <li>TS 4.9 compat by <a href="https://github.com/markerikson"><code>@markerikson</code></a> in <a href="https://github-redirect.dependabot.com/reduxjs/reselect/pull/587">reduxjs/reselect#587</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/reduxjs/reselect/compare/v4.1.6...v4.1.7">https://github.com/reduxjs/reselect/compare/v4.1.6...v4.1.7</a></p> <h2>v4.1.6</h2> <p>This release updates the TS types to better handle cases with default parameters, or <code>any/unknown</code> types.</p> <h2>What's Changed</h2> <ul> <li>Fix <a href="https://github-redirect.dependabot.com/reduxjs/reselect/issues/563">https://github.com/facebook/flipper/issues/563</a> - Make it an error when the typings become incorrect by <a href="https://github.com/lukeapage"><code>@lukeapage</code></a> in <a href="https://github-redirect.dependabot.com/reduxjs/reselect/pull/572">reduxjs/reselect#572</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/reduxjs/reselect/compare/v4.1.5...v4.1.6">https://github.com/reduxjs/reselect/compare/v4.1.5...v4.1.6</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
||
|
|
fa8f108c01 |
Bump @emotion/babel-plugin from 11.10.2 to 11.10.6 in /desktop (#4554)
Summary: Bumps [emotion/babel-plugin](https://github.com/emotion-js/emotion) from 11.10.2 to 11.10.6. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/emotion-js/emotion/releases"><code>@emotion/babel-plugin</code>'s releases</a>.</em></p> <blockquote> <h2><code>@emotion/babel-plugin</code><a href="https://github.com/11"><code>@11</code></a>.10.6</h2> <h3>Patch Changes</h3> <ul> <li><a href="https://github-redirect.dependabot.com/emotion-js/emotion/pull/2985">https://github.com/facebook/flipper/issues/2985</a> <a href=" |
||
|
|
81d37ee085 |
Bump metro-config from 0.75.0 to 0.76.0 in /react-native/react-native-flipper (#4580)
Summary: Bumps [metro-config](https://github.com/facebook/metro) from 0.75.0 to 0.76.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/facebook/metro/releases">metro-config's releases</a>.</em></p> <blockquote> <h2>v0.76.0</h2> <ul> <li><strong>[Breaking]</strong>: Increase minimum Node version from 14 to 16. (<a href=" |
||
|
|
182afaa3d8 |
Bump metro-react-native-babel-preset from 0.74.1 to 0.76.0 in /react-native/ReactNativeFlipperExample (#4581)
Summary: Bumps [metro-react-native-babel-preset](https://github.com/facebook/metro) from 0.74.1 to 0.76.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/facebook/metro/releases">metro-react-native-babel-preset's releases</a>.</em></p> <blockquote> <h2>v0.76.0</h2> <ul> <li><strong>[Breaking]</strong>: Increase minimum Node version from 14 to 16. (<a href=" |
||
|
|
90a398cdea |
Bump babel-jest from 29.4.3 to 29.5.0 in /react-native/ReactNativeFlipperExample (#4574)
Summary:
Bumps [babel-jest](https://github.com/facebook/jest/tree/HEAD/packages/babel-jest) from 29.4.3 to 29.5.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/facebook/jest/releases">babel-jest's releases</a>.</em></p>
<blockquote>
<h2>v29.5.0</h2>
<h2>Features</h2>
<ul>
<li><code>[jest-changed-files]</code> Support Sapling (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13941">#13941</a>)</li>
<li><code>[jest-circus, jest/cli, jest-config]</code> Add feature to randomize order of tests via CLI flag or through the config file(<a href="https://github-redirect.dependabot.com/facebook/jest/pull/12922">#12922</a>)</li>
<li><code>[jest-cli, jest-config, jest/core, jest-haste-map, jest/reporters, jest-runner, jest-runtime, jest/types]</code> Add <code>workerThreads</code> configuration option to allow using <a href="https://nodejs.org/dist/latest/docs/api/worker_threads.html">worker threads</a> for parallelization (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13939">#13939</a>)</li>
<li><code>[jest-cli]</code> Export <code>yargsOptions</code> (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13970">#13970</a>)</li>
<li><code>[jest-config]</code> Add <code>openHandlesTimeout</code> option to configure possible open handles warning. (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13875">#13875</a>)</li>
<li><code>[jest/create-cache-key-function]</code> Allow passing <code>length</code> argument to <code>createCacheKey()</code> function and set its default value to <code>16</code> on Windows (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13827">#13827</a>)</li>
<li><code>[jest-message-util]</code> Add support for <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/AggregateError">AggregateError</a> (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13946">#13946</a> & <a href="https://github-redirect.dependabot.com/facebook/jest/pull/13947">#13947</a>)</li>
<li><code>[jest-message-util]</code> Add support for <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error/cause">Error causes</a> in <code>test</code> and <code>it</code> (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13935">#13935</a> & <a href="https://github-redirect.dependabot.com/facebook/jest/pull/13966">#13966</a>)</li>
<li><code>[jest-reporters]</code> Add <code>summaryThreshold</code> option to summary reporter to allow overriding the internal threshold that is used to print the summary of all failed tests when the number of test suites surpasses it (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13895">#13895</a>)</li>
<li><code>[jest-runtime]</code> Expose <code>sinonjs/fake-timers</code> async APIs functions <code>advanceTimersByTimeAsync(msToRun)</code> (<code>tickAsync(msToRun)</code>), <code>advanceTimersToNextTimerAsync(steps)</code> (<code>nextAsync</code>), <code>runAllTimersAsync</code> (<code>runAllAsync</code>), and <code>runOnlyPendingTimersAsync</code> (<code>runToLastAsync</code>) (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13981">#13981</a>)</li>
<li><code>[jest-runtime, jest/transform]</code> Allow V8 coverage provider to collect coverage from files which were not loaded explicitly (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13974">#13974</a>)</li>
<li><code>[jest-snapshot]</code> Add support to <code>cts</code> and <code>mts</code> TypeScript files to inline snapshots (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13975">#13975</a>)</li>
<li><code>[jest-worker]</code> Add <code>start</code> method to worker farms (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13937">#13937</a>)</li>
<li><code>[jest-worker]</code> Support passing a URL as path to worker (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13982">#13982</a>)</li>
</ul>
<h2>Fixes</h2>
<ul>
<li><code>[babel-plugin-jest-hoist]</code> Fix unwanted hoisting of nested <code>jest</code> usages (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13952">#13952</a>)</li>
<li><code>[jest-circus]</code> Send test case results for <code>todo</code> tests (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13915">#13915</a>)</li>
<li><code>[jest-circus]</code> Update message printed on test timeout (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13830">#13830</a>)</li>
<li><code>[jest-circus]</code> Avoid creating the word "testfalse" when <code>takesDoneCallback</code> is <code>false</code> in the message printed on test timeout AND updated timeouts test (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13954">#13954</a>)</li>
<li><code>[jest-environment-jsdom]</code> Stop setting <code>document</code> to <code>null</code> on teardown (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13972">#13972</a>)</li>
<li><code>[jest/expect-utils]</code> Update <code>toStrictEqual()</code> to be able to check <code>jest.fn().mock.calls</code> (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13960">#13960</a>)</li>
<li><code>[jest/test-result]</code> Allow <code>TestResultsProcessor</code> type to return a Promise (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13950">#13950</a>)</li>
</ul>
<h2>Chore & Maintenance</h2>
<ul>
<li><code>[jest-snapshot]</code> Remove dependency on <code>jest-haste-map</code> (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13977">#13977</a>)</li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a href="https://github.com/frosas"><code>@frosas</code></a> made their first contribution in <a href="https://github-redirect.dependabot.com/facebook/jest/pull/13932">facebook/jest#13932</a></li>
<li><a href="https://github.com/akshitsinha"><code>@akshitsinha</code></a> made their first contribution in <a href="https://github-redirect.dependabot.com/facebook/jest/pull/13915">facebook/jest#13915</a></li>
<li><a href="https://github.com/trajano"><code>@trajano</code></a> made their first contribution in <a href="https://github-redirect.dependabot.com/facebook/jest/pull/13827">facebook/jest#13827</a></li>
<li><a href="https://github.com/DercilioFontes"><code>@DercilioFontes</code></a> made their first contribution in <a href="https://github-redirect.dependabot.com/facebook/jest/pull/13954">facebook/jest#13954</a></li>
<li><a href="https://github.com/jsnajdr"><code>@jsnajdr</code></a> made their first contribution in <a href="https://github-redirect.dependabot.com/facebook/jest/pull/13952">facebook/jest#13952</a></li>
<li><a href="https://github.com/SteveFlames"><code>@SteveFlames</code></a> made their first contribution in <a href="https://github-redirect.dependabot.com/facebook/jest/pull/13895">facebook/jest#13895</a></li>
<li><a href="https://github.com/willc001"><code>@willc001</code></a> made their first contribution in <a href="https://github-redirect.dependabot.com/facebook/jest/pull/13970">facebook/jest#13970</a></li>
<li><a href="https://github.com/benjaminhobbs"><code>@benjaminhobbs</code></a> made their first contribution in <a href="https://github-redirect.dependabot.com/facebook/jest/pull/13901">facebook/jest#13901</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a href="https://github.com/facebook/jest/compare/v29.4.3...v29.5.0">https://github.com/facebook/jest/compare/v29.4.3...v29.5.0</a></p>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/facebook/jest/blob/main/CHANGELOG.md">babel-jest's changelog</a>.</em></p>
<blockquote>
<h2>29.5.0</h2>
<h3>Features</h3>
<ul>
<li><code>[jest-changed-files]</code> Support Sapling (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13941">#13941</a>)</li>
<li><code>[jest-circus, jest/cli, jest-config]</code> Add feature to randomize order of tests via CLI flag or through the config file(<a href="https://github-redirect.dependabot.com/facebook/jest/pull/12922">#12922</a>)</li>
<li><code>[jest-cli, jest-config, jest/core, jest-haste-map, jest/reporters, jest-runner, jest-runtime, jest/types]</code> Add <code>workerThreads</code> configuration option to allow using <a href="https://nodejs.org/dist/latest/docs/api/worker_threads.html">worker threads</a> for parallelization (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13939">#13939</a>)</li>
<li><code>[jest-cli]</code> Export <code>yargsOptions</code> (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13970">#13970</a>)</li>
<li><code>[jest-config]</code> Add <code>openHandlesTimeout</code> option to configure possible open handles warning. (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13875">#13875</a>)</li>
<li><code>[jest/create-cache-key-function]</code> Allow passing <code>length</code> argument to <code>createCacheKey()</code> function and set its default value to <code>16</code> on Windows (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13827">#13827</a>)</li>
<li><code>[jest-message-util]</code> Add support for <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/AggregateError">AggregateError</a> (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13946">#13946</a> & <a href="https://github-redirect.dependabot.com/facebook/jest/pull/13947">#13947</a>)</li>
<li><code>[jest-message-util]</code> Add support for <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error/cause">Error causes</a> in <code>test</code> and <code>it</code> (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13935">#13935</a> & <a href="https://github-redirect.dependabot.com/facebook/jest/pull/13966">#13966</a>)</li>
<li><code>[jest-reporters]</code> Add <code>summaryThreshold</code> option to summary reporter to allow overriding the internal threshold that is used to print the summary of all failed tests when the number of test suites surpasses it (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13895">#13895</a>)</li>
<li><code>[jest-runtime]</code> Expose <code>sinonjs/fake-timers</code> async APIs functions <code>advanceTimersByTimeAsync(msToRun)</code> (<code>tickAsync(msToRun)</code>), <code>advanceTimersToNextTimerAsync(steps)</code> (<code>nextAsync</code>), <code>runAllTimersAsync</code> (<code>runAllAsync</code>), and <code>runOnlyPendingTimersAsync</code> (<code>runToLastAsync</code>) (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13981">#13981</a>)</li>
<li><code>[jest-runtime, jest/transform]</code> Allow V8 coverage provider to collect coverage from files which were not loaded explicitly (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13974">#13974</a>)</li>
<li><code>[jest-snapshot]</code> Add support to <code>cts</code> and <code>mts</code> TypeScript files to inline snapshots (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13975">#13975</a>)</li>
<li><code>[jest-worker]</code> Add <code>start</code> method to worker farms (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13937">#13937</a>)</li>
<li><code>[jest-worker]</code> Support passing a URL as path to worker (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13982">#13982</a>)</li>
</ul>
<h3>Fixes</h3>
<ul>
<li><code>[babel-plugin-jest-hoist]</code> Fix unwanted hoisting of nested <code>jest</code> usages (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13952">#13952</a>)</li>
<li><code>[jest-circus]</code> Send test case results for <code>todo</code> tests (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13915">#13915</a>)</li>
<li><code>[jest-circus]</code> Update message printed on test timeout (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13830">#13830</a>)</li>
<li><code>[jest-circus]</code> Avoid creating the word "testfalse" when <code>takesDoneCallback</code> is <code>false</code> in the message printed on test timeout AND updated timeouts test (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13954">#13954</a>)</li>
<li><code>[jest-environment-jsdom]</code> Stop setting <code>document</code> to <code>null</code> on teardown (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13972">#13972</a>)</li>
<li><code>[jest/expect-utils]</code> Update <code>toStrictEqual()</code> to be able to check <code>jest.fn().mock.calls</code> (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13960">#13960</a>)</li>
<li><code>[jest/test-result]</code> Allow <code>TestResultsProcessor</code> type to return a Promise (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13950">#13950</a>)</li>
</ul>
<h3>Chore & Maintenance</h3>
<ul>
<li><code>[jest-snapshot]</code> Remove dependency on <code>jest-haste-map</code> (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13977">#13977</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="
|
||
|
|
565d26a72f |
Bump @babel/runtime from 7.20.13 to 7.21.0 in /react-native/ReactNativeFlipperExample (#4555)
Summary: Bumps [babel/runtime](https://github.com/babel/babel/tree/HEAD/packages/babel-runtime) from 7.20.13 to 7.21.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/babel/babel/releases"><code>@babel/runtime</code>'s releases</a>.</em></p> <blockquote> <h2>v7.21.0 (2023-02-20)</h2> <p>Thanks <a href="https://github.com/azizghuloum"><code>@azizghuloum</code></a>, <a href="https://github.com/ehoogeveen-medweb"><code>@ehoogeveen-medweb</code></a>, <a href="https://github.com/fwienber"><code>@fwienber</code></a>, and <a href="https://github.com/Lioness100"><code>@Lioness100</code></a> for your first PRs!</p> <h4>🚀 New Feature</h4> <ul> <li><code>babel-core</code>, <code>babel-helper-create-class-features-plugin</code>, <code>babel-plugin-proposal-class-properties</code>, <code>babel-plugin-proposal-private-methods</code>, <code>babel-plugin-proposal-private-property-in-object</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/15435">#15435</a> feat: Implement <code>privateFieldsAsSymbols</code> assumption for classes (<a href="https://github.com/fwienber"><code>@fwienber</code></a>)</li> </ul> </li> <li><code>babel-helper-create-regexp-features-plugin</code>, <code>babel-plugin-proposal-regexp-modifiers</code>, <code>babel-standalone</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/15226">#15226</a> feat: Support regexp modifiers proposal (<a href="https://github.com/liuxingbaoyu"><code>@liuxingbaoyu</code></a>)</li> </ul> </li> <li><code>babel-cli</code>, <code>babel-core</code>, <code>babel-generator</code>, <code>babel-plugin-transform-destructuring</code>, <code>babel-plugin-transform-modules-commonjs</code>, <code>babel-plugin-transform-react-jsx</code>, <code>babel-traverse</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/15022">#15022</a> feat: Generate sourcemaps of friendly call frames (<a href="https://github.com/liuxingbaoyu"><code>@liuxingbaoyu</code></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/15384">#15384</a> [ts] Support <code>const</code> modifier in type parameters (<a href="https://github.com/nicolo-ribaudo"><code>@nicolo-ribaudo</code></a>)</li> </ul> </li> <li><code>babel-generator</code>, <code>babel-helpers</code>, <code>babel-parser</code>, <code>babel-plugin-proposal-decorators</code>, <code>babel-plugin-syntax-decorators</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/15405">#15405</a> Implement decorators as presented at <code>2023-01</code> TC39 meeting (<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/15114">#15114</a> Parser option to allow <code>new.target</code> outside functions (<a href="https://github.com/overlookmotel"><code>@overlookmotel</code></a>)</li> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/15320">#15320</a> Add <code>annexb: false</code> parser option to disable Annex B (<a href="https://github.com/nicolo-ribaudo"><code>@nicolo-ribaudo</code></a>)</li> </ul> </li> <li><code>babel-core</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/15283">#15283</a> feat: Support <code>.cts</code> as configuration file (<a href="https://github.com/liuxingbaoyu"><code>@liuxingbaoyu</code></a>)</li> </ul> </li> <li><code>babel-generator</code>, <code>babel-parser</code>, <code>babel-plugin-transform-typescript</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/15381">#15381</a> [ts] Support <code>export type * from</code> (<a href="https://github.com/nicolo-ribaudo"><code>@nicolo-ribaudo</code></a>)</li> </ul> </li> </ul> <h4>🐛 Bug Fix</h4> <ul> <li><code>babel-plugin-transform-typescript</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/15379">#15379</a> [ts5.0] Better inlining of constants in enums (<a href="https://github.com/liuxingbaoyu"><code>@liuxingbaoyu</code></a>)</li> </ul> </li> <li><code>babel-core</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/15366">#15366</a> handling circular/shared structures in deep-clone (<a href="https://github.com/azizghuloum"><code>@azizghuloum</code></a>)</li> </ul> </li> <li><code>babel-helper-create-class-features-plugin</code>, <code>babel-plugin-proposal-class-properties</code>, <code>babel-plugin-proposal-class-static-block</code>, <code>babel-plugin-proposal-private-methods</code>, <code>babel-plugin-transform-classes</code>, <code>babel-plugin-transform-new-target</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/15406">#15406</a> Preserve class elements comments in class transform (<a href="https://github.com/JLHwung"><code>@JLHwung</code></a>)</li> </ul> </li> <li><code>babel-parser</code>, <code>babel-plugin-transform-flow-comments</code>, <code>babel-plugin-transform-flow-strip-types</code>, <code>babel-types</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/15414">#15414</a> [ts] Fix restrictions for optional parameters (<a href="https://github.com/nicolo-ribaudo"><code>@nicolo-ribaudo</code></a>)</li> </ul> </li> </ul> <h4>💅 Polish</h4> <ul> <li><code>babel-parser</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/15400">#15400</a> polish: improve "<code>await</code> as identifier" error in modules (<a href="https://github.com/JLHwung"><code>@JLHwung</code></a>)</li> </ul> </li> </ul> <h4>🏠 Internal</h4> <ul> <li><code>babel-core</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/15137">#15137</a> Improve CJS compat with ESM-based <code>babel/core</code> (<a href="https://github.com/nicolo-ribaudo"><code>@nicolo-ribaudo</code></a>)</li> </ul> </li> </ul> <h4>🔬 Output optimization</h4> <ul> <li><code>babel-plugin-transform-typescript</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/15418">#15418</a> [ts] Handle exponentiation operator in constant folding (<a href="https://github.com/ehoogeveen-medweb"><code>@ehoogeveen-medweb</code></a>)</li> </ul> </li> </ul> <h4>Committers: 11</h4> <ul> <li>Abdulaziz Ghuloum (<a href="https://github.com/azizghuloum"><code>@azizghuloum</code></a>)</li> <li>Babel Bot (<a href="https://github.com/babel-bot"><code>@babel-bot</code></a>)</li> <li>Emanuel Hoogeveen (<a href="https://github.com/ehoogeveen-medweb"><code>@ehoogeveen-medweb</code></a>)</li> <li>Frank Wienberg (<a href="https://github.com/fwienber"><code>@fwienber</code></a>)</li> </ul> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/babel/babel/blob/main/CHANGELOG.md"><code>@babel/runtime</code>'s changelog</a>.</em></p> <blockquote> <h2>v7.21.0 (2023-02-20)</h2> <h4>🚀 New Feature</h4> <ul> <li><code>babel-core</code>, <code>babel-helper-create-class-features-plugin</code>, <code>babel-plugin-proposal-class-properties</code>, <code>babel-plugin-proposal-private-methods</code>, <code>babel-plugin-proposal-private-property-in-object</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/15435">#15435</a> feat: Implement <code>privateFieldsAsSymbols</code> assumption for classes (<a href="https://github.com/fwienber"><code>@fwienber</code></a>)</li> </ul> </li> <li><code>babel-helper-create-regexp-features-plugin</code>, <code>babel-plugin-proposal-regexp-modifiers</code>, <code>babel-standalone</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/15226">#15226</a> feat: Support regexp modifiers proposal (<a href="https://github.com/liuxingbaoyu"><code>@liuxingbaoyu</code></a>)</li> </ul> </li> <li><code>babel-cli</code>, <code>babel-core</code>, <code>babel-generator</code>, <code>babel-plugin-transform-destructuring</code>, <code>babel-plugin-transform-modules-commonjs</code>, <code>babel-plugin-transform-react-jsx</code>, <code>babel-traverse</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/15022">#15022</a> feat: Generate sourcemaps of friendly call frames (<a href="https://github.com/liuxingbaoyu"><code>@liuxingbaoyu</code></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/15384">#15384</a> [ts] Support <code>const</code> modifier in type parameters (<a href="https://github.com/nicolo-ribaudo"><code>@nicolo-ribaudo</code></a>)</li> </ul> </li> <li><code>babel-generator</code>, <code>babel-helpers</code>, <code>babel-parser</code>, <code>babel-plugin-proposal-decorators</code>, <code>babel-plugin-syntax-decorators</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/15405">#15405</a> Implement decorators as presented at <code>2023-01</code> TC39 meeting (<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/15114">#15114</a> Parser option to allow <code>new.target</code> outside functions (<a href="https://github.com/overlookmotel"><code>@overlookmotel</code></a>)</li> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/15320">#15320</a> Add <code>annexb: false</code> parser option to disable Annex B (<a href="https://github.com/nicolo-ribaudo"><code>@nicolo-ribaudo</code></a>)</li> </ul> </li> <li><code>babel-core</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/15283">#15283</a> feat: Support <code>.cts</code> as configuration file (<a href="https://github.com/liuxingbaoyu"><code>@liuxingbaoyu</code></a>)</li> </ul> </li> <li><code>babel-generator</code>, <code>babel-parser</code>, <code>babel-plugin-transform-typescript</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/15381">#15381</a> [ts] Support <code>export type * from</code> (<a href="https://github.com/nicolo-ribaudo"><code>@nicolo-ribaudo</code></a>)</li> </ul> </li> </ul> <h4>🐛 Bug Fix</h4> <ul> <li><code>babel-plugin-transform-typescript</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/15379">#15379</a> [ts5.0] Better inlining of constants in enums (<a href="https://github.com/liuxingbaoyu"><code>@liuxingbaoyu</code></a>)</li> </ul> </li> <li><code>babel-core</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/15366">#15366</a> handling circular/shared structures in deep-clone (<a href="https://github.com/azizghuloum"><code>@azizghuloum</code></a>)</li> </ul> </li> <li><code>babel-helper-create-class-features-plugin</code>, <code>babel-plugin-proposal-class-properties</code>, <code>babel-plugin-proposal-class-static-block</code>, <code>babel-plugin-proposal-private-methods</code>, <code>babel-plugin-transform-classes</code>, <code>babel-plugin-transform-new-target</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/15406">#15406</a> Preserve class elements comments in class transform (<a href="https://github.com/JLHwung"><code>@JLHwung</code></a>)</li> </ul> </li> <li><code>babel-parser</code>, <code>babel-plugin-transform-flow-comments</code>, <code>babel-plugin-transform-flow-strip-types</code>, <code>babel-types</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/15414">#15414</a> [ts] Fix restrictions for optional parameters (<a href="https://github.com/nicolo-ribaudo"><code>@nicolo-ribaudo</code></a>)</li> </ul> </li> </ul> <h4>💅 Polish</h4> <ul> <li><code>babel-parser</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/15400">#15400</a> polish: improve "<code>await</code> as identifier" error in modules (<a href="https://github.com/JLHwung"><code>@JLHwung</code></a>)</li> </ul> </li> </ul> <h4>🏠 Internal</h4> <ul> <li><code>babel-core</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/15137">#15137</a> Improve CJS compat with ESM-based <code>babel/core</code> (<a href="https://github.com/nicolo-ribaudo"><code>@nicolo-ribaudo</code></a>)</li> </ul> </li> </ul> <h4>🔬 Output optimization</h4> <ul> <li><code>babel-plugin-transform-typescript</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/15418">#15418</a> [ts] Handle exponentiation operator in constant folding (<a href="https://github.com/ehoogeveen-medweb"><code>@ehoogeveen-medweb</code></a>)</li> </ul> </li> </ul> <h2>v7.20.15 (2023-02-02)</h2> <h4>👓 Spec Compliance</h4> <ul> <li><code>babel-parser</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/15391">#15391</a> Disallow await as bound name in using declaration (<a href="https://github.com/JLHwung"><code>@JLHwung</code></a>)</li> </ul> </li> <li><code>babel-generator</code>, <code>babel-parser</code>, <code>babel-plugin-proposal-export-namespace-from</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/15385">#15385</a> Disallows specifiers after export * as ns (<a href="https://github.com/JLHwung"><code>@JLHwung</code></a>)</li> </ul> </li> </ul> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
||
|
|
8daa322305 |
Bump jest from 29.4.3 to 29.5.0 in /react-native/ReactNativeFlipperExample (#4572)
Summary:
Bumps [jest](https://github.com/facebook/jest/tree/HEAD/packages/jest) from 29.4.3 to 29.5.0.
<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>v29.5.0</h2>
<h2>Features</h2>
<ul>
<li><code>[jest-changed-files]</code> Support Sapling (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13941">#13941</a>)</li>
<li><code>[jest-circus, jest/cli, jest-config]</code> Add feature to randomize order of tests via CLI flag or through the config file(<a href="https://github-redirect.dependabot.com/facebook/jest/pull/12922">#12922</a>)</li>
<li><code>[jest-cli, jest-config, jest/core, jest-haste-map, jest/reporters, jest-runner, jest-runtime, jest/types]</code> Add <code>workerThreads</code> configuration option to allow using <a href="https://nodejs.org/dist/latest/docs/api/worker_threads.html">worker threads</a> for parallelization (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13939">#13939</a>)</li>
<li><code>[jest-cli]</code> Export <code>yargsOptions</code> (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13970">#13970</a>)</li>
<li><code>[jest-config]</code> Add <code>openHandlesTimeout</code> option to configure possible open handles warning. (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13875">#13875</a>)</li>
<li><code>[jest/create-cache-key-function]</code> Allow passing <code>length</code> argument to <code>createCacheKey()</code> function and set its default value to <code>16</code> on Windows (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13827">#13827</a>)</li>
<li><code>[jest-message-util]</code> Add support for <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/AggregateError">AggregateError</a> (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13946">#13946</a> & <a href="https://github-redirect.dependabot.com/facebook/jest/pull/13947">#13947</a>)</li>
<li><code>[jest-message-util]</code> Add support for <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error/cause">Error causes</a> in <code>test</code> and <code>it</code> (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13935">#13935</a> & <a href="https://github-redirect.dependabot.com/facebook/jest/pull/13966">#13966</a>)</li>
<li><code>[jest-reporters]</code> Add <code>summaryThreshold</code> option to summary reporter to allow overriding the internal threshold that is used to print the summary of all failed tests when the number of test suites surpasses it (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13895">#13895</a>)</li>
<li><code>[jest-runtime]</code> Expose <code>sinonjs/fake-timers</code> async APIs functions <code>advanceTimersByTimeAsync(msToRun)</code> (<code>tickAsync(msToRun)</code>), <code>advanceTimersToNextTimerAsync(steps)</code> (<code>nextAsync</code>), <code>runAllTimersAsync</code> (<code>runAllAsync</code>), and <code>runOnlyPendingTimersAsync</code> (<code>runToLastAsync</code>) (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13981">#13981</a>)</li>
<li><code>[jest-runtime, jest/transform]</code> Allow V8 coverage provider to collect coverage from files which were not loaded explicitly (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13974">#13974</a>)</li>
<li><code>[jest-snapshot]</code> Add support to <code>cts</code> and <code>mts</code> TypeScript files to inline snapshots (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13975">#13975</a>)</li>
<li><code>[jest-worker]</code> Add <code>start</code> method to worker farms (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13937">#13937</a>)</li>
<li><code>[jest-worker]</code> Support passing a URL as path to worker (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13982">#13982</a>)</li>
</ul>
<h2>Fixes</h2>
<ul>
<li><code>[babel-plugin-jest-hoist]</code> Fix unwanted hoisting of nested <code>jest</code> usages (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13952">#13952</a>)</li>
<li><code>[jest-circus]</code> Send test case results for <code>todo</code> tests (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13915">#13915</a>)</li>
<li><code>[jest-circus]</code> Update message printed on test timeout (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13830">#13830</a>)</li>
<li><code>[jest-circus]</code> Avoid creating the word "testfalse" when <code>takesDoneCallback</code> is <code>false</code> in the message printed on test timeout AND updated timeouts test (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13954">#13954</a>)</li>
<li><code>[jest-environment-jsdom]</code> Stop setting <code>document</code> to <code>null</code> on teardown (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13972">#13972</a>)</li>
<li><code>[jest/expect-utils]</code> Update <code>toStrictEqual()</code> to be able to check <code>jest.fn().mock.calls</code> (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13960">#13960</a>)</li>
<li><code>[jest/test-result]</code> Allow <code>TestResultsProcessor</code> type to return a Promise (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13950">#13950</a>)</li>
</ul>
<h2>Chore & Maintenance</h2>
<ul>
<li><code>[jest-snapshot]</code> Remove dependency on <code>jest-haste-map</code> (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13977">#13977</a>)</li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a href="https://github.com/frosas"><code>@frosas</code></a> made their first contribution in <a href="https://github-redirect.dependabot.com/facebook/jest/pull/13932">facebook/jest#13932</a></li>
<li><a href="https://github.com/akshitsinha"><code>@akshitsinha</code></a> made their first contribution in <a href="https://github-redirect.dependabot.com/facebook/jest/pull/13915">facebook/jest#13915</a></li>
<li><a href="https://github.com/trajano"><code>@trajano</code></a> made their first contribution in <a href="https://github-redirect.dependabot.com/facebook/jest/pull/13827">facebook/jest#13827</a></li>
<li><a href="https://github.com/DercilioFontes"><code>@DercilioFontes</code></a> made their first contribution in <a href="https://github-redirect.dependabot.com/facebook/jest/pull/13954">facebook/jest#13954</a></li>
<li><a href="https://github.com/jsnajdr"><code>@jsnajdr</code></a> made their first contribution in <a href="https://github-redirect.dependabot.com/facebook/jest/pull/13952">facebook/jest#13952</a></li>
<li><a href="https://github.com/SteveFlames"><code>@SteveFlames</code></a> made their first contribution in <a href="https://github-redirect.dependabot.com/facebook/jest/pull/13895">facebook/jest#13895</a></li>
<li><a href="https://github.com/willc001"><code>@willc001</code></a> made their first contribution in <a href="https://github-redirect.dependabot.com/facebook/jest/pull/13970">facebook/jest#13970</a></li>
<li><a href="https://github.com/benjaminhobbs"><code>@benjaminhobbs</code></a> made their first contribution in <a href="https://github-redirect.dependabot.com/facebook/jest/pull/13901">facebook/jest#13901</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a href="https://github.com/facebook/jest/compare/v29.4.3...v29.5.0">https://github.com/facebook/jest/compare/v29.4.3...v29.5.0</a></p>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/facebook/jest/blob/main/CHANGELOG.md">jest's changelog</a>.</em></p>
<blockquote>
<h2>29.5.0</h2>
<h3>Features</h3>
<ul>
<li><code>[jest-changed-files]</code> Support Sapling (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13941">#13941</a>)</li>
<li><code>[jest-circus, jest/cli, jest-config]</code> Add feature to randomize order of tests via CLI flag or through the config file(<a href="https://github-redirect.dependabot.com/facebook/jest/pull/12922">#12922</a>)</li>
<li><code>[jest-cli, jest-config, jest/core, jest-haste-map, jest/reporters, jest-runner, jest-runtime, jest/types]</code> Add <code>workerThreads</code> configuration option to allow using <a href="https://nodejs.org/dist/latest/docs/api/worker_threads.html">worker threads</a> for parallelization (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13939">#13939</a>)</li>
<li><code>[jest-cli]</code> Export <code>yargsOptions</code> (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13970">#13970</a>)</li>
<li><code>[jest-config]</code> Add <code>openHandlesTimeout</code> option to configure possible open handles warning. (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13875">#13875</a>)</li>
<li><code>[jest/create-cache-key-function]</code> Allow passing <code>length</code> argument to <code>createCacheKey()</code> function and set its default value to <code>16</code> on Windows (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13827">#13827</a>)</li>
<li><code>[jest-message-util]</code> Add support for <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/AggregateError">AggregateError</a> (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13946">#13946</a> & <a href="https://github-redirect.dependabot.com/facebook/jest/pull/13947">#13947</a>)</li>
<li><code>[jest-message-util]</code> Add support for <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error/cause">Error causes</a> in <code>test</code> and <code>it</code> (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13935">#13935</a> & <a href="https://github-redirect.dependabot.com/facebook/jest/pull/13966">#13966</a>)</li>
<li><code>[jest-reporters]</code> Add <code>summaryThreshold</code> option to summary reporter to allow overriding the internal threshold that is used to print the summary of all failed tests when the number of test suites surpasses it (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13895">#13895</a>)</li>
<li><code>[jest-runtime]</code> Expose <code>sinonjs/fake-timers</code> async APIs functions <code>advanceTimersByTimeAsync(msToRun)</code> (<code>tickAsync(msToRun)</code>), <code>advanceTimersToNextTimerAsync(steps)</code> (<code>nextAsync</code>), <code>runAllTimersAsync</code> (<code>runAllAsync</code>), and <code>runOnlyPendingTimersAsync</code> (<code>runToLastAsync</code>) (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13981">#13981</a>)</li>
<li><code>[jest-runtime, jest/transform]</code> Allow V8 coverage provider to collect coverage from files which were not loaded explicitly (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13974">#13974</a>)</li>
<li><code>[jest-snapshot]</code> Add support to <code>cts</code> and <code>mts</code> TypeScript files to inline snapshots (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13975">#13975</a>)</li>
<li><code>[jest-worker]</code> Add <code>start</code> method to worker farms (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13937">#13937</a>)</li>
<li><code>[jest-worker]</code> Support passing a URL as path to worker (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13982">#13982</a>)</li>
</ul>
<h3>Fixes</h3>
<ul>
<li><code>[babel-plugin-jest-hoist]</code> Fix unwanted hoisting of nested <code>jest</code> usages (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13952">#13952</a>)</li>
<li><code>[jest-circus]</code> Send test case results for <code>todo</code> tests (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13915">#13915</a>)</li>
<li><code>[jest-circus]</code> Update message printed on test timeout (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13830">#13830</a>)</li>
<li><code>[jest-circus]</code> Avoid creating the word "testfalse" when <code>takesDoneCallback</code> is <code>false</code> in the message printed on test timeout AND updated timeouts test (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13954">#13954</a>)</li>
<li><code>[jest-environment-jsdom]</code> Stop setting <code>document</code> to <code>null</code> on teardown (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13972">#13972</a>)</li>
<li><code>[jest/expect-utils]</code> Update <code>toStrictEqual()</code> to be able to check <code>jest.fn().mock.calls</code> (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13960">#13960</a>)</li>
<li><code>[jest/test-result]</code> Allow <code>TestResultsProcessor</code> type to return a Promise (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13950">#13950</a>)</li>
</ul>
<h3>Chore & Maintenance</h3>
<ul>
<li><code>[jest-snapshot]</code> Remove dependency on <code>jest-haste-map</code> (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13977">#13977</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="
|
||
|
|
14b1966d50 |
Bump react-native-flipper from 0.183.0 to 0.184.0 in /react-native/ReactNativeFlipperExample (#4592)
Summary: Bumps [react-native-flipper](https://github.com/facebook/flipper) from 0.183.0 to 0.184.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/facebook/flipper/releases">react-native-flipper's releases</a>.</em></p> <blockquote> <h2>v0.184.0</h2> <p>See <a href="https://github.com/facebook/flipper/blob/main/desktop/static/CHANGELOG.md">https://github.com/facebook/flipper/blob/main/desktop/static/CHANGELOG.md</a> for full notes.</p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
||
|
|
d67b073f20 |
Enhance global error handling
Reviewed By: lblasa Differential Revision: D44332732 fbshipit-source-id: d36b47e820906213cb829fb7d4d2f3b60ae08c71 |
||
|
|
77b7799493 |
Bump @typescript-eslint/parser from 5.54.1 to 5.56.0 in /js/js-flipper (#4622)
Summary: Bumps [typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) from 5.54.1 to 5.56.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/typescript-eslint/typescript-eslint/releases"><code>@typescript-eslint/parser</code>'s releases</a>.</em></p> <blockquote> <h2>v5.56.0</h2> <h1><a href="https://github.com/typescript-eslint/typescript-eslint/compare/v5.55.0...v5.56.0">5.56.0</a> (2023-03-20)</h1> <h3>Bug Fixes</h3> <ul> <li><strong>eslint-plugin:</strong> [member-ordering] check order when optionalityOrder is present with no optional members (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/issues/6619">#6619</a>) (<a href=" |