Commit Graph

227 Commits

Author SHA1 Message Date
dependabot[bot]
848158d9a0 Bump com.vanniktech:gradle-maven-publish-plugin from 0.22.0 to 0.24.0 (#4511)
Summary:
Bumps [com.vanniktech:gradle-maven-publish-plugin](https://github.com/vanniktech/gradle-maven-publish-plugin) from 0.22.0 to 0.24.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/vanniktech/gradle-maven-publish-plugin/releases">com.vanniktech:gradle-maven-publish-plugin's releases</a>.</em></p>
<blockquote>
<h2>0.24.0</h2>
<ul>
<li>Support arbitrary Sonatype hosts instead of just oss.sonatype.org and s01.oss.sonatype.org.</li>
<li>Support adjusting timeouts for Sonatype related requests and operations. <a href="https://vanniktech.github.io/gradle-maven-publish-plugin/central/#timeouts">See docs</a></li>
<li>Internal change on how the sources jar is created.</li>
</ul>
<h2>0.23.2</h2>
<ul>
<li>Fix signing when using Gradle 8.0.</li>
<li>Finding a matching staging profile in Sonatype is more lenient. If there is just one that one will always be used.
The plugin will also fallback to any staging profile that has a matching prefix with the group id.</li>
<li>As a workaround for an issue in Gradle that causes invalid module metadata for <code>java-test-fixtures</code> projects, <code>project.group</code>
and <code>project.version</code> are now being set again for those projects. <a href="https://github-redirect.dependabot.com/vanniktech/gradle-maven-publish-plugin/pull/490">https://github.com/facebook/flipper/issues/490</a></li>
</ul>
<h2>0.23.1</h2>
<p><a href="https://github.com/vanniktech/gradle-maven-publish-plugin/blob/master/CHANGELOG.md#version-0231-2022-12-30">Changelog</a></p>
<h2>0.23.0</h2>
<p><a href="https://github.com/vanniktech/gradle-maven-publish-plugin/blob/master/CHANGELOG.md#version-0230-2022-12-29">Changelog</a></p>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/vanniktech/gradle-maven-publish-plugin/blob/main/CHANGELOG.md">com.vanniktech:gradle-maven-publish-plugin's changelog</a>.</em></p>
<blockquote>
<h2>0.24.0 <em>(2023-01-29)</em></h2>
<ul>
<li>Support arbitrary Sonatype hosts instead of just oss.sonatype.org and s01.oss.sonatype.org.</li>
<li>Support adjusting timeouts for Sonatype related requests and operations. <a href="https://vanniktech.github.io/gradle-maven-publish-plugin/central/#timeouts">See docs</a></li>
<li>Internal change on how the sources jar is created.</li>
</ul>
<h2>0.23.2 <em>(2023-01-17)</em></h2>
<ul>
<li>Fix signing when using Gradle 8.0.</li>
<li>Finding a matching staging profile in Sonatype is more lenient. If there is just one that one will always be used.
The plugin will also fallback to any staging profile that has a matching prefix with the group id.</li>
<li>As a workaround for an issue in Gradle that causes invalid module metadata for <code>java-test-fixtures</code> projects, <code>project.group</code>
and <code>project.version</code> are now being set again for those projects. <a href="https://github-redirect.dependabot.com/vanniktech/gradle-maven-publish-plugin/pull/490">https://github.com/facebook/flipper/issues/490</a></li>
</ul>
<h2>0.23.1 <em>(2022-12-30)</em></h2>
<ul>
<li>Also support publishing sources for the <code>java-test-fixtures</code> plugin in Kotlin/JVM projects.</li>
<li>Suppress Gradle warnings when publishing a project that uses <code>java-test-fixtures</code>.</li>
</ul>
<h2>0.23.0 <em>(2022-12-29)</em></h2>
<p>Updated docs can be found on <a href="https://vanniktech.github.io/gradle-maven-publish-plugin/">the new website</a>.</p>
<ul>
<li><strong>NEW</strong>: It is now possible to set group id, artifact id directly through the DSL
<pre lang="groovy"><code>mavenPublishing {
  coordinates(&quot;com.example&quot;, &quot;library&quot;, &quot;1.0.3&quot;)
}
</code></pre>
</li>
<li><code>project.group</code> and <code>project.version</code> will still be used as default values for group and version if the
<code>GROUP</code>/<code>VERSION_NAME</code> Gradle properties do not exist and <code>coordinates</code> was not called, however there are 2
<strong>behavior changes</strong>:
<ul>
<li>The <code>GROUP</code> and <code>VERSION_NAME</code> Gradle properties take precedence over <code>project.group</code> and <code>project.version</code> instead
of being overwritten by them. If you need to define the properties but replace them for some projects,
please use the new <code>coordinates</code> method instead.</li>
<li>The <code>GROUP</code> and <code>VERSION_NAME</code> Gradle properties will not be explicitly set as <code>project.group</code> and
<code>project.version</code> anymore.</li>
</ul>
</li>
<li><strong>NEW</strong>: Added <code>dropRepository</code> task that will drop a Sonatype staging repository. It is possible to specify
which repository to drop by adding a <code>--repository</code> parameter with the id of the staging repository that was
printed during <code>publish</code>. If no repository is specified and there is only one staging repository, that one
will be dropped.</li>
<li>Added workaround to also publish sources for the <code>java-test-fixtures</code> plugin</li>
<li>Fixed publishing Kotlin/JS projects with the base plugin.</li>
<li>Fixed that a POM configured through the DSL is incomplete when publishing Gradle plugins.</li>
<li>The minimum supported Gradle version has been increased to 7.3.</li>
<li>The plugin now requires using JDK 11+ to run Gradle.</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="7faa441d3a"><code>7faa441</code></a> Prepare changelog for release 0.24.0.</li>
<li><a href="95f5b4eb79"><code>95f5b4e</code></a> make timeouts configurable (<a href="https://github-redirect.dependabot.com/vanniktech/gradle-maven-publish-plugin/issues/508">https://github.com/facebook/flipper/issues/508</a>)</li>
<li><a href="4b4302027a"><code>4b43020</code></a> replace custom sources jar task (<a href="https://github-redirect.dependabot.com/vanniktech/gradle-maven-publish-plugin/issues/507">https://github.com/facebook/flipper/issues/507</a>)</li>
<li><a href="744db566a1"><code>744db56</code></a> Update dependency org.jlleitschuh.gradle:ktlint-gradle to v11.1.0 (<a href="https://github-redirect.dependabot.com/vanniktech/gradle-maven-publish-plugin/issues/506">https://github.com/facebook/flipper/issues/506</a>)</li>
<li><a href="f041faa59d"><code>f041faa</code></a> Open up SonatypeHost (<a href="https://github-redirect.dependabot.com/vanniktech/gradle-maven-publish-plugin/issues/504">https://github.com/facebook/flipper/issues/504</a>)</li>
<li><a href="9300a2be9c"><code>9300a2b</code></a> Update dependency com.vanniktech:gradle-maven-publish-plugin to v0.23.2 (<a href="https://github-redirect.dependabot.com/vanniktech/gradle-maven-publish-plugin/issues/501">https://github.com/facebook/flipper/issues/501</a>)</li>
<li><a href="8f3edf1e75"><code>8f3edf1</code></a> Update CHANGELOG for 0.23.2.</li>
<li><a href="b944e0d46a"><code>b944e0d</code></a> test against Gradle 8.0-rc-2 and AGP 8.0.0-alpha11 (<a href="https://github-redirect.dependabot.com/vanniktech/gradle-maven-publish-plugin/issues/499">https://github.com/facebook/flipper/issues/499</a>)</li>
<li><a href="93a21886fa"><code>93a2188</code></a> make finding a staging profile more lenient (<a href="https://github-redirect.dependabot.com/vanniktech/gradle-maven-publish-plugin/issues/498">https://github.com/facebook/flipper/issues/498</a>)</li>
<li><a href="6686704e1d"><code>6686704</code></a> Update dependency com.android.tools.build:gradle to v7.4.0 (<a href="https://github-redirect.dependabot.com/vanniktech/gradle-maven-publish-plugin/issues/495">https://github.com/facebook/flipper/issues/495</a>)</li>
<li>Additional commits viewable in <a href="https://github.com/vanniktech/gradle-maven-publish-plugin/compare/0.22.0...0.24.0">compare view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=com.vanniktech:gradle-maven-publish-plugin&package-manager=gradle&previous-version=0.22.0&new-version=0.24.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

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

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

 ---

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

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

</details>

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

Reviewed By: ivanmisuno

Differential Revision: D43303376

Pulled By: passy

fbshipit-source-id: f434a912d246bb7e916d0afb2ee9cf3a5d8bd8d4
2023-02-15 09:30:06 -08:00
dependabot[bot]
0622f9d87f Bump de.undercouch.download from 5.2.1 to 5.3.1 (#4497)
Summary:
Bumps [de.undercouch.download](https://github.com/michel-kraemer/gradle-download-task) from 5.2.1 to 5.3.1.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/michel-kraemer/gradle-download-task/releases">de.undercouch.download's releases</a>.</em></p>
<blockquote>
<h2>5.3.1</h2>
<p>Bug fixes:</p>
<ul>
<li>Downgrade slf4j to fix warning on console about missing slf4j provider</li>
<li>Allow <code>download</code> and <code>verify</code> extensions to be created on demand in custom tasks, so these tasks can be made compatible with Gradle's configuration cache (see <a href="https://github-redirect.dependabot.com/michel-kraemer/gradle-download-task/issues/284">https://github.com/facebook/flipper/issues/284</a>). Thanks to <a href="https://github.com/liblit"><code>@​liblit</code></a> for testing!</li>
</ul>
<p>Maintenance:</p>
<ul>
<li>Update dependencies</li>
<li>Improve documentation</li>
<li>Add integration tests for Gradle 6.9.3 and 7.6</li>
</ul>
<h2>5.3.0</h2>
<p>New features:</p>
<ul>
<li>Add <code>path</code> and <code>relativePath</code> properties to the <code>DownloadDetails</code> class so <code>eachFile</code> actions can also change the relative path of a target file and not only its name</li>
<li>Duplicate destination files are now prevented. Specifying a duplicate destination file (e.g. in an <code>eachFile</code> action) will lead to an exception being thrown.</li>
</ul>
<p>Bug fixes:</p>
<ul>
<li>Call <code>eachFile</code> action only once per source</li>
<li>Correctly create list of output files (even if the destination is the project's build directory)</li>
</ul>
<p>Maintenance:</p>
<ul>
<li>Update dependencies</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="a0374fc7c8"><code>a0374fc</code></a> Bump up version number to 5.3.1</li>
<li><a href="612f57a382"><code>612f57a</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/michel-kraemer/gradle-download-task/issues/291">https://github.com/facebook/flipper/issues/291</a> from michel-kraemer/dependabot/npm_and_yarn/screencas...</li>
<li><a href="53af1049f5"><code>53af104</code></a> Bump http-cache-semantics from 4.1.0 to 4.1.1 in /screencast</li>
<li><a href="398c14c05c"><code>398c14c</code></a> Update dependencies</li>
<li><a href="15cf7eecfb"><code>15cf7ee</code></a> Bump up version number to 5.3.1-SNAPSHOT</li>
<li><a href="e3c65ffcb4"><code>e3c65ff</code></a> Allow extensions to be created from tasks</li>
<li><a href="34e2dd4147"><code>34e2dd4</code></a> Downgrade slf4j to fix warning on console about missing slf4j provider</li>
<li><a href="b3fa29f9ff"><code>b3fa29f</code></a> Revert &quot;Update Apache HttpClient to 5.2.1&quot;</li>
<li><a href="01f05e046b"><code>01f05e0</code></a> Add integration tests for Gradle 6.9.3 and 7.6</li>
<li><a href="a998a54490"><code>a998a54</code></a> Upgrade Gradle to 7.6</li>
<li>Additional commits viewable in <a href="https://github.com/michel-kraemer/gradle-download-task/compare/5.2.1...5.3.1">compare view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=de.undercouch.download&package-manager=gradle&previous-version=5.2.1&new-version=5.3.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/4497

Reviewed By: ivanmisuno

Differential Revision: D43117856

Pulled By: mweststrate

fbshipit-source-id: 3efd1008cd92310587a34511ffac1a0ae4403970
2023-02-09 03:22:18 -08:00
dependabot[bot]
c771d5440b Bump espresso-core from 3.5.0 to 3.5.1 (#4472)
Summary:
Bumps espresso-core from 3.5.0 to 3.5.1.

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=androidx.test.espresso:espresso-core&package-manager=gradle&previous-version=3.5.0&new-version=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/4472

Reviewed By: ivanmisuno

Differential Revision: D43117883

Pulled By: mweststrate

fbshipit-source-id: cdc8114536d5ea0a86036bb2ec6459ff8324bbf8
2023-02-09 03:22:18 -08:00
dependabot[bot]
c4b39b4c83 Bump dokka-gradle-plugin from 1.7.10 to 1.7.20 (#4225)
Summary:
Bumps [dokka-gradle-plugin](https://github.com/Kotlin/dokka) from 1.7.10 to 1.7.20.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/Kotlin/dokka/releases">dokka-gradle-plugin's releases</a>.</em></p>
<blockquote>
<h2>1.7.20 Beta</h2>
<p>This release focuses primarily on improving user experience and HTML format in particular.</p>
<h2>Improvements</h2>
<h3>General</h3>
<ul>
<li>Display inherited extensions (can be disabled by setting <code>suppressInheritedMembers</code> configuration property) (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/issues/2625">https://github.com/facebook/flipper/issues/2625</a>)</li>
<li>Display details for <code>Deprecated</code> declarations such as deprecation message, level and proposed replacement (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/issues/2622">https://github.com/facebook/flipper/issues/2622</a>)</li>
<li>Display and document <code>Enum</code>'s synthetic <code>values()</code> and <code>valueOf()</code> functions (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/issues/2650">https://github.com/facebook/flipper/issues/2650</a>)</li>
<li>Do not render constructors for annotation classes (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/issues/2642">https://github.com/facebook/flipper/issues/2642</a>)</li>
<li>Display values of <code>Java</code> constants (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/issues/2609">https://github.com/facebook/flipper/issues/2609</a>)</li>
<li>Trim spaces inside indented code blocks (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/issues/2661">https://github.com/facebook/flipper/issues/2661</a>, <a href="https://github-redirect.dependabot.com/Kotlin/dokka/issues/2232">https://github.com/facebook/flipper/issues/2232</a>, <a href="https://github-redirect.dependabot.com/Kotlin/dokka/issues/2233">https://github.com/facebook/flipper/issues/2233</a>)</li>
<li>Replace package name on the cover of package pages with &quot;Package-level declarations&quot; (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/issues/2586">https://github.com/facebook/flipper/issues/2586</a>)</li>
</ul>
<h3>HTML format</h3>
<ul>
<li>Add IntelliJ icons to the navigation side menu (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/issues/2578">https://github.com/facebook/flipper/issues/2578</a>)</li>
<li>Add auto-scrolling to selected navigation item (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/issues/2575">https://github.com/facebook/flipper/issues/2575</a>)</li>
<li>Use OS color scheme to initialize light/dark mode, thanks to <a href="https://github.com/pt2121"><code>@​pt2121</code></a>! (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/issues/2611">https://github.com/facebook/flipper/issues/2611</a>)</li>
<li>Update styling of all section tabs (including platform tabs) to match <a href="https://kotlinlang.org/docs/home.html">kotlinlang.org</a> (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/issues/2589">https://github.com/facebook/flipper/issues/2589</a>)</li>
<li>Format long signatures dynamically based on client width (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/issues/2659">https://github.com/facebook/flipper/issues/2659</a>)</li>
<li>Add a horizontal divider between function overloads that are displayed on the same page (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/issues/2585">https://github.com/facebook/flipper/issues/2585</a>)</li>
<li>Add <code>Cmd + K</code> / <code>Ctrl + K</code> hotkey for opening search dialog, thanks to <a href="https://github.com/atyrin"><code>@​atyrin</code></a>! (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/issues/2633">https://github.com/facebook/flipper/issues/2633</a>)</li>
<li>Make current breadcrumb element not clickable and of default font color (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/issues/2588">https://github.com/facebook/flipper/issues/2588</a>)</li>
<li>Update code highlighting colors (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/issues/2670">https://github.com/facebook/flipper/issues/2670</a>)</li>
<li>Do not render platform tabs for common-only content (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/issues/2613">https://github.com/facebook/flipper/issues/2613</a>)</li>
<li>Apply the same style to all KDoc tag headers, making it more consistent (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/issues/2587">https://github.com/facebook/flipper/issues/2587</a>)</li>
<li>Move source links into signature, especially helpful on pages with many overloads (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/issues/2476">https://github.com/facebook/flipper/issues/2476</a>)</li>
<li>Add inner/nested declarations to the navigation side menu (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/issues/2597">https://github.com/facebook/flipper/issues/2597</a>)</li>
<li>Disable copy button for signatures (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/issues/2577">https://github.com/facebook/flipper/issues/2577</a>)</li>
</ul>
<h3>Javadoc format</h3>
<ul>
<li>Support <code>var</code> HTML tag, thanks to <a href="https://github.com/atyrin"><code>@​atyrin</code></a> (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/issues/2617">https://github.com/facebook/flipper/issues/2617</a>)</li>
</ul>
<h3>Kotlin-as-Java plugin</h3>
<ul>
<li>Render annotation blocks for transformed classes, previously ignored (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/issues/2549">https://github.com/facebook/flipper/issues/2549</a>)</li>
</ul>
<h3>Gradle runner</h3>
<ul>
<li>Remove <code>kotlin-stdlib</code> dependency, which should fix errors like <code>Module was compiled with an incompatible version of Kotlin</code>, thanks to <a href="https://github.com/martinbonnin"><code>@​martinbonnin</code></a>! (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/issues/2570">https://github.com/facebook/flipper/issues/2570</a>)</li>
</ul>
<h2>Bugfixes</h2>
<ul>
<li>Fixed missing spaces between adjacent <code>Markdown</code> elements, where <code>_try_ *this*</code> would be rendered as <code>trythis</code> (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/issues/2640">https://github.com/facebook/flipper/issues/2640</a>)</li>
<li>Fixed dependency resolution errors when building documentation for multiplatform projects with enabled compatibility metadata variant (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/issues/2634">https://github.com/facebook/flipper/issues/2634</a>)</li>
<li>Fixed a rare <code>StackOverflowError</code> related to type-aliased native references (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/issues/2664">https://github.com/facebook/flipper/issues/2664</a>)</li>
<li>Fixed <code>IllegalStateException</code> that was caused by using JS's dynamic types (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/issues/2645">https://github.com/facebook/flipper/issues/2645</a>)</li>
<li>Fixed a bug where certain <code>private</code> declarations were rendered as <code>public</code> (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/issues/2639">https://github.com/facebook/flipper/issues/2639</a>)</li>
<li>Fixed incorrect handling of static declarations used within <code>see</code> tag (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/issues/2627">https://github.com/facebook/flipper/issues/2627</a>)</li>
<li>Fixed <code>Java</code> Enum types being rendered as <code>Any</code> (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/issues/2647">https://github.com/facebook/flipper/issues/2647</a>)</li>
<li>Fixed incorrect signature generation that was caused by generic types caching (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/issues/2619">https://github.com/facebook/flipper/issues/2619</a>)</li>
<li>Fixed incorrect parsing of static imports in <code>Java</code> annotation params (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/issues/2593">https://github.com/facebook/flipper/issues/2593</a>)</li>
<li>Fixed <code>sourceRoots</code> configuration param not handling single <code>.java</code> files, thanks to <a href="https://github.com/2017398956"><code>@​2017398956</code></a>! (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/issues/2604">https://github.com/facebook/flipper/issues/2604</a>)</li>
</ul>

</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="d61df34a78"><code>d61df34</code></a> Change log level to INFO for messages about alpha plugin versions (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/issues/2693">https://github.com/facebook/flipper/issues/2693</a>)</li>
<li><a href="9bfc049481"><code>9bfc049</code></a> Change version to release</li>
<li><a href="1e67fe74c2"><code>1e67fe7</code></a> Update Kotlin to 1.7.20 (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/issues/2692">https://github.com/facebook/flipper/issues/2692</a>)</li>
<li><a href="b923bb6767"><code>b923bb6</code></a> Fix some extra indentation in code block that is inside list (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/issues/2233">https://github.com/facebook/flipper/issues/2233</a>)</li>
<li><a href="a7750c6447"><code>a7750c6</code></a> Update Kotlin to 1.7.20-RC (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/issues/2682">https://github.com/facebook/flipper/issues/2682</a>)</li>
<li><a href="86f9559ebd"><code>86f9559</code></a> Add documentation for synthetic Enum <code>values()</code> and <code>valueOf()</code> functions (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/issues/2">https://github.com/facebook/flipper/issues/2</a>...</li>
<li><a href="9207f8f032"><code>9207f8f</code></a> Fix source links in case of dri clashing (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/issues/2676">https://github.com/facebook/flipper/issues/2676</a>)</li>
<li><a href="ee8e73012c"><code>ee8e730</code></a> Extract classpath from <code>KotlinSharedNativeCompilation</code> as well (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/issues/2664">https://github.com/facebook/flipper/issues/2664</a>)</li>
<li><a href="a816e91799"><code>a816e91</code></a> Trim four spaces inside indented code block (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/issues/2661">https://github.com/facebook/flipper/issues/2661</a>)</li>
<li><a href="a0250a5d81"><code>a0250a5</code></a> Update integration tests: coroutines, serialization, biojava (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/issues/2672">https://github.com/facebook/flipper/issues/2672</a>)</li>
<li>Additional commits viewable in <a href="https://github.com/Kotlin/dokka/compare/v1.7.10...v1.7.20">compare view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.jetbrains.dokka:dokka-gradle-plugin&package-manager=gradle&previous-version=1.7.10&new-version=1.7.20)](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/4225

Reviewed By: ivanmisuno

Differential Revision: D43117913

Pulled By: mweststrate

fbshipit-source-id: 47725f320ed41d5f09544f1e56ce30816449e659
2023-02-09 03:22:18 -08:00
dependabot[bot]
2cc273ce96 Bump protobuf-java from 3.21.9 to 3.21.12 (#4385)
Summary:
Bumps [protobuf-java](https://github.com/protocolbuffers/protobuf) from 3.21.9 to 3.21.12.
<details>
<summary>Commits</summary>
<ul>
<li><a href="f0dc78d7e6"><code>f0dc78d</code></a> Updating version.json and repo version numbers to: 21.12</li>
<li><a href="7b0ca6995d"><code>7b0ca69</code></a> Updated release branch to latest upb. (<a href="https://github-redirect.dependabot.com/protocolbuffers/protobuf/issues/11258">#11258</a>)</li>
<li><a href="7c123c40e2"><code>7c123c4</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/protocolbuffers/protobuf/issues/11201">#11201</a> from protocolbuffers/21.x-202212080033</li>
<li><a href="44eafb2f65"><code>44eafb2</code></a> Update version.json to: 21.12-dev</li>
<li><a href="aea4a275e2"><code>aea4a27</code></a> Updating changelog</li>
<li><a href="ffe65a5040"><code>ffe65a5</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/protocolbuffers/protobuf/issues/11197">#11197</a> from protocolbuffers/21.x-202212071935</li>
<li><a href="a474c5b9ff"><code>a474c5b</code></a> Updating version.json and repo version numbers to: 21.11</li>
<li><a href="c0bc0cf076"><code>c0bc0cf</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/protocolbuffers/protobuf/issues/11196">#11196</a> from ericsalo/21.x</li>
<li><a href="9d17e97927"><code>9d17e97</code></a> sync with current 21.x upb</li>
<li><a href="d024e3bca1"><code>d024e3b</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/protocolbuffers/protobuf/issues/11118">#11118</a> from protocolbuffers/deannagarcia-patch-12</li>
<li>Additional commits viewable in <a href="https://github.com/protocolbuffers/protobuf/compare/v3.21.9...v3.21.12">compare view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=com.google.protobuf:protobuf-java&package-manager=gradle&previous-version=3.21.9&new-version=3.21.12)](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/4385

Reviewed By: ivanmisuno

Differential Revision: D42706116

Pulled By: passy

fbshipit-source-id: d74a7a1984d7c49d1d95ce71fbcdff86715c7aa2
2023-01-27 03:07:43 -08:00
dependabot[bot]
27e7cf2804 Bump mockito-core from 4.9.0 to 5.0.0 (#4444)
Summary:
Bumps [mockito-core](https://github.com/mockito/mockito) from 4.9.0 to 5.0.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/mockito/mockito/releases">mockito-core's releases</a>.</em></p>
<blockquote>
<h2>v5.0.0</h2>
<h1>Mockito 5: prepare for future JDK versions</h1>
<p>For a while now, we have seen an increase in problems/incompatibilities with recent versions of the JDK due to our usage of JVM-internal API.
Most notably, JDK 17 made some changes which are incompatible with the current subclass mockmaker.
Therefore, to prepare for the future of JDK, we are making some core changes to ensure Mockito keeps on working.</p>
<h2>Switch the default mockmaker to <code>mockito-inline</code></h2>
<p>Back in Mockito 2.7.6, we published a new mockmaker based on the &quot;inline bytecode&quot; principle.
This mockmaker creates mocks manipulating bytecode equivalent within the original class such that its method implementations hook into the normal Mockito machinery.
As a comparison, the subclass mockmaker generates &quot;real&quot; subclasses for mocks, to mimic the same behavior.
While the approaches are similar, the inline mockmaker avoids certain restrictions that the JDK imposes.
For example, it does not violate module boundaries (introduced in JDK 9, but more heavily used in JDK 17) and avoids the leaking of the creation of the subclass.</p>
<p>Massive thanks to community member <a href="https://github.com/reta"><code>@​reta</code></a> who implemented this change.</p>
<h3>When should I still be using the subclass mockmaker?</h3>
<p>There are legitimate remaining use cases for the subclass mockmaker.
For example, on the Graal VM's native image, the inline mockmaker will not work and the subclass mockmaker is the appropriate choice.
Additionally, if you would like to avoid mocking final classes, using the subclass mockmaker is a possibibility.
Note however that if you solely want to use the subclass mockmaker to avoid mocking final, you will run into the above mentioned issues on JDK 17+.
We want to leave this choice up to our users, which is why we will keep on supporting the subclass mockmaker.</p>
<p>If you want to use the subclass mockmaker instead, you can use the new <code>mockito-subclass</code> artifact (published <a href="https://search.maven.org/artifact/org.mockito/mockito-subclass">on Maven Central</a> along with all our other artifacts).</p>
<h2>Update the minimum supported Java version to 11</h2>
<p>Mockito 4 supports Java 8 and above.
Similar to other open source projects, we are moving away from JDK 8 and to newer versions.
The primary reason for moving away from JDK 8 is the increasing maintenance costs with keeping our own infrastructure working.
Lately we have been running into more and more JDK 8 breakages.
Additionally, while we want to support the newest JDK API's, our current solution to support both JDK 8 and newer versions causes <a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2798">issues with the <code>SecurityManager</code></a>.
Since we want Mockito to work on the newest version and more and more businesses adopting JDK 11, we have decided to make the switch as well.</p>
<p>Massive thanks to community member <a href="https://github.com/reta"><code>@​reta</code></a> who implemented this change.</p>
<h3>What should I do if I still run JDK 8?</h3>
<p>For JDK 8 and below, you can keep on using Mockito 4.
This is similar to if you are using JDK 6, for which you can keep on using Mockito 2.
The changes in Mockito 5 (for now) are primarily focused on the latest JDK versions, which means the API differences between Mockito 4 and 5 are minimal.
However, over time this will most likely widen, so we do recommend adopting JDK 11 in the future.</p>
<h2>New <code>type()</code> method on <code>ArgumentMatcher</code></h2>
<p>One of our most used public API's for customizing Mockito is the <a href="https://javadoc.io/doc/org.mockito/mockito-core/latest/org/mockito/ArgumentMatcher.html"><code>ArgumentMatcher</code> interface</a>.
The interface allows you to define a custom matcher, which you can pass into method arguments to provide more targeted matches.
One major shortcoming of the <code>ArgumentMatcher</code> was the lack of varargs support.</p>

</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="adf528d173"><code>adf528d</code></a> Bump versions.bytebuddy from 1.12.21 to 1.12.22 (<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2864">https://github.com/facebook/flipper/issues/2864</a>)</li>
<li><a href="2418419a19"><code>2418419</code></a> Bump versions.junitJupiter from 5.9.1 to 5.9.2 (<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2858">https://github.com/facebook/flipper/issues/2858</a>)</li>
<li><a href="3d40cd51d3"><code>3d40cd5</code></a> Bump junit-platform-launcher from 1.9.1 to 1.9.2 (<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2859">https://github.com/facebook/flipper/issues/2859</a>)</li>
<li><a href="9bec8e3a1a"><code>9bec8e3</code></a> Bump versions.errorprone from 2.17.0 to 2.18.0 (<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2857">https://github.com/facebook/flipper/issues/2857</a>)</li>
<li><a href="a9595f559c"><code>a9595f5</code></a> Switch the default mockmaker to the inline mockmaker on JDK 17+ (<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2834">https://github.com/facebook/flipper/issues/2834</a>)</li>
<li><a href="c5d7fbc532"><code>c5d7fbc</code></a> Bump assertj-core from 3.23.1 to 3.24.1 (<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2854">https://github.com/facebook/flipper/issues/2854</a>)</li>
<li><a href="dbd7f2ff4a"><code>dbd7f2f</code></a> Bump versions.bytebuddy from 1.12.20 to 1.12.21 (<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2852">https://github.com/facebook/flipper/issues/2852</a>)</li>
<li><a href="4d62fa75c7"><code>4d62fa7</code></a> Bump junit from 1.1.4 to 1.1.5 (<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2850">https://github.com/facebook/flipper/issues/2850</a>)</li>
<li><a href="b1b6d6afcb"><code>b1b6d6a</code></a> Bump espresso-core from 3.5.0 to 3.5.1 (<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2849">https://github.com/facebook/flipper/issues/2849</a>)</li>
<li><a href="7b5b8dd840"><code>7b5b8dd</code></a> Remove use case for non-existent method VerificationWithTimeout#never (<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2848">https://github.com/facebook/flipper/issues/2848</a>)</li>
<li>Additional commits viewable in <a href="https://github.com/mockito/mockito/compare/v4.9.0...v5.0.0">compare view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.mockito:mockito-core&package-manager=gradle&previous-version=4.9.0&new-version=5.0.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

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

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

 ---

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

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

</details>

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

Reviewed By: antonk52

Differential Revision: D42678087

Pulled By: passy

fbshipit-source-id: 7e1e38af900b985a26b42342297e15ab7eda9546
2023-01-24 06:39:36 -08:00
dependabot[bot]
823eddc4ad Bump mockito-core from 4.9.0 to 4.11.0 (#4416)
Summary:
Bumps [mockito-core](https://github.com/mockito/mockito) from 4.9.0 to 4.11.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/mockito/mockito/releases">mockito-core's releases</a>.</em></p>
<blockquote>
<h2>v4.11.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>4.11.0</h4>
<ul>
<li>2022-12-28 - <a href="https://github.com/mockito/mockito/compare/v4.10.0...v4.11.0">1 commit(s)</a> by Andy Coates</li>
<li>Improve vararg handling: approach 2 [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2807">#2807</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2807">mockito/mockito#2807</a>)</li>
<li>Mocking varargs method with <code>any(String[].class)</code> doesn't work as expected [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2796">#2796</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2796">mockito/mockito#2796</a>)</li>
<li>(Argument)Matchers regression from 1.10.19 to 2.18.3 for varargs [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/1498">https://github.com/facebook/flipper/issues/1498</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/1498">mockito/mockito#1498</a>)</li>
<li>Cannot verify varargs parameter as an array [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/1222">https://github.com/facebook/flipper/issues/1222</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/1222">mockito/mockito#1222</a>)</li>
<li>ArgumentCaptor can't capture varargs-arrays [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/584">https://github.com/facebook/flipper/issues/584</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/584">mockito/mockito#584</a>)</li>
<li>Verification of an empty varargs call fails when isNotNull() is used [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/567">https://github.com/facebook/flipper/issues/567</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/567">mockito/mockito#567</a>)</li>
</ul>
<h2>v4.10.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>4.10.0</h4>
<ul>
<li>2022-12-14 - <a href="https://github.com/mockito/mockito/compare/v4.9.0...v4.10.0">13 commit(s)</a> by Andrei Solntsev, Andriy Redko, Andy Coates, Christopher Lambert, Marcono1234, Vladimir Glinskikh, dependabot[bot]</li>
<li>Add new artifact mockito-subclass (to use mock-maker-subclass MockMaker) [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2821">#2821</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2821">mockito/mockito#2821</a>)</li>
<li>Bump gradle from 7.5.1 to 7.6 [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2817">#2817</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2817">mockito/mockito#2817</a>)</li>
<li>Fix incorrect Javadoc inline tag for MockitoJUnitRunner [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2816">#2816</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2816">mockito/mockito#2816</a>)</li>
<li>Bump shipkit-auto-version from 1.2.1 to 1.2.2 [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2811">#2811</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2811">mockito/mockito#2811</a>)</li>
<li>Bump com.github.ben-manes.versions from 0.42.0 to 0.44.0 [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2810">#2810</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2810">mockito/mockito#2810</a>)</li>
<li>Bump kotlinVersion from 1.7.21 to 1.7.22 [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2809">#2809</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2809">mockito/mockito#2809</a>)</li>
<li>Bump junit from 1.1.3 to 1.1.4 [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2806">#2806</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2806">mockito/mockito#2806</a>)</li>
<li>Simplify <code>MatcherApplicationStrategy</code> [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2803">#2803</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2803">mockito/mockito#2803</a>)</li>
<li>Bump kotlinVersion from 1.7.10 to 1.7.21 [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2801">#2801</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2801">mockito/mockito#2801</a>)</li>
<li>Bump espresso-core from 3.4.0 to 3.5.0 [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2800">#2800</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2800">mockito/mockito#2800</a>)</li>
<li>Bump versions.bytebuddy from 1.12.16 to 1.12.19 [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2799">#2799</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2799">mockito/mockito#2799</a>)</li>
<li>Upgrade errorprone from 2.14.0 to 2.16 [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2794">#2794</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2794">mockito/mockito#2794</a>)</li>
<li>automatically detect class to mock [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2779">https://github.com/facebook/flipper/issues/2779</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2779">mockito/mockito#2779</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="483e15f9f9"><code>483e15f</code></a> Add <code>type()</code> method to <code>ArgumentMatcher</code> (<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2807">#2807</a>)</li>
<li><a href="a4e2e48507"><code>a4e2e48</code></a> Add <code>mockito-subclass</code> artifact (<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2821">#2821</a>)</li>
<li><a href="e2e6289185"><code>e2e6289</code></a> Bump gradle from 7.5.1 to 7.6 (<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2817">#2817</a>)</li>
<li><a href="ee9ba749fe"><code>ee9ba74</code></a> Fix incorrect Javadoc inline tag for MockitoJUnitRunner (<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2816">#2816</a>)</li>
<li><a href="2567f050f1"><code>2567f05</code></a> Bump shipkit-auto-version from 1.2.1 to 1.2.2 (<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2811">#2811</a>)</li>
<li><a href="bdcb31e34c"><code>bdcb31e</code></a> Bump com.github.ben-manes.versions from 0.42.0 to 0.44.0 (<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2810">#2810</a>)</li>
<li><a href="34b8a8db64"><code>34b8a8d</code></a> Bump kotlinVersion from 1.7.21 to 1.7.22 (<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2809">#2809</a>)</li>
<li><a href="83a41fdff1"><code>83a41fd</code></a> Bump junit from 1.1.3 to 1.1.4 (<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2806">#2806</a>)</li>
<li><a href="8f4af189a9"><code>8f4af18</code></a> Simplify <code>MatcherApplicationStrategy</code> (<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2803">#2803</a>)</li>
<li><a href="0ce902af96"><code>0ce902a</code></a> Bump kotlinVersion from 1.7.10 to 1.7.21 (<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2801">#2801</a>)</li>
<li>Additional commits viewable in <a href="https://github.com/mockito/mockito/compare/v4.9.0...v4.11.0">compare view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.mockito:mockito-core&package-manager=gradle&previous-version=4.9.0&new-version=4.11.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

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

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

 ---

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

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

</details>

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

Reviewed By: antonk52

Differential Revision: D42370537

Pulled By: passy

fbshipit-source-id: 10676e3d642bd2fcab23440b23b425dbed7c5663
2023-01-18 07:23:47 -08:00
dependabot[bot]
e5d75506c4 Bump espresso-core from 3.4.0 to 3.5.0 (#4340)
Summary:
Bumps espresso-core from 3.4.0 to 3.5.0.

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=androidx.test.espresso:espresso-core&package-manager=gradle&previous-version=3.4.0&new-version=3.5.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

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

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

 ---

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

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

</details>

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

Reviewed By: antonk52

Differential Revision: D41578610

Pulled By: mweststrate

fbshipit-source-id: 4326d9d752fd8dec2f7b284be7c006289add212c
2022-11-30 07:43:03 -08:00
dependabot[bot]
659405411d Bump runner from 1.4.0 to 1.5.1 (#4339)
Summary:
Bumps runner from 1.4.0 to 1.5.1.

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=androidx.test:runner&package-manager=gradle&previous-version=1.4.0&new-version=1.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/4339

Reviewed By: antonk52

Differential Revision: D41578611

Pulled By: mweststrate

fbshipit-source-id: 4622332d9332e8858345538c077a0177a184bfdc
2022-11-30 07:43:03 -08:00
dependabot[bot]
546e044612 Bump mockito-core from 4.8.1 to 4.9.0 (#4338)
Summary:
Bumps [mockito-core](https://github.com/mockito/mockito) from 4.8.1 to 4.9.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/mockito/mockito/releases">mockito-core's releases</a>.</em></p>
<blockquote>
<h2>v4.9.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>4.9.0</h4>
<ul>
<li>2022-11-14 - <a href="https://github.com/mockito/mockito/compare/v4.8.1...v4.9.0">6 commit(s)</a> by Andrei Solntsev, Rafael Winterhalter, Rick Ossendrijver, dependabot[bot]</li>
<li>Upgrade objenesis 3.2 -&gt; 3.3 [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2784">https://github.com/facebook/flipper/issues/2784</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2784">mockito/mockito#2784</a>)</li>
<li>Upgrade objenesis 3.2 -&gt; 3.3 [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2783">https://github.com/facebook/flipper/issues/2783</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2783">mockito/mockito#2783</a>)</li>
<li>Avoids clearing stale weak entries from critical code segments. [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2780">https://github.com/facebook/flipper/issues/2780</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2780">mockito/mockito#2780</a>)</li>
<li>bump gradle from 7.3.1 to 7.5.1 [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2776">https://github.com/facebook/flipper/issues/2776</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2776">mockito/mockito#2776</a>)</li>
<li>Bump gradle/wrapper-validation-action from 1.0.4 to 1.0.5 [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2775">https://github.com/facebook/flipper/issues/2775</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2775">mockito/mockito#2775</a>)</li>
<li>Bump gradle-errorprone-plugin from 2.0.2 to 3.0.1 [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2770">https://github.com/facebook/flipper/issues/2770</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2770">mockito/mockito#2770</a>)</li>
<li>Bump junit-platform-launcher from 1.9.0 to 1.9.1 [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2768">https://github.com/facebook/flipper/issues/2768</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2768">mockito/mockito#2768</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="0052e2f5f7"><code>0052e2f</code></a> Avoid clearing stale weak entries from critical code segments (<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2780">https://github.com/facebook/flipper/issues/2780</a>)</li>
<li><a href="47045cbdfe"><code>47045cb</code></a> Upgrade objenesis 3.2 -&gt; 3.3 (<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2784">https://github.com/facebook/flipper/issues/2784</a>)</li>
<li><a href="eb85518cef"><code>eb85518</code></a> Update gradle to 7.5.1 (<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2776">https://github.com/facebook/flipper/issues/2776</a>)</li>
<li><a href="fcb4cf7bf3"><code>fcb4cf7</code></a> Bump gradle/wrapper-validation-action from 1.0.4 to 1.0.5 (<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2775">https://github.com/facebook/flipper/issues/2775</a>)</li>
<li><a href="f512a76940"><code>f512a76</code></a> Bump gradle-errorprone-plugin from 2.0.2 to 3.0.1 (<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2770">https://github.com/facebook/flipper/issues/2770</a>)</li>
<li><a href="fe7dca2651"><code>fe7dca2</code></a> Bump junit-platform-launcher from 1.9.0 to 1.9.1 (<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2768">https://github.com/facebook/flipper/issues/2768</a>)</li>
<li>See full diff in <a href="https://github.com/mockito/mockito/compare/v4.8.1...v4.9.0">compare view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.mockito:mockito-core&package-manager=gradle&previous-version=4.8.1&new-version=4.9.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

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

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

 ---

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

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

</details>

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

Reviewed By: antonk52

Differential Revision: D41578613

Pulled By: mweststrate

fbshipit-source-id: d22c242734f078f80c393524b50e2b9e5c54fb0c
2022-11-30 07:43:03 -08:00
dependabot[bot]
c7e67a5de0 Bump protobuf-java from 3.21.8 to 3.21.9 (#4285)
Summary:
Bumps [protobuf-java](https://github.com/protocolbuffers/protobuf) from 3.21.8 to 3.21.9.
<details>
<summary>Commits</summary>
<ul>
<li><a href="90b73ac3f0"><code>90b73ac</code></a> Updating changelog</li>
<li><a href="0135eb0e52"><code>0135eb0</code></a> Updating version.json and repo version numbers to: 21.9</li>
<li><a href="573a1851dc"><code>573a185</code></a> Update zlib to 1.2.13 (<a href="https://github-redirect.dependabot.com/protocolbuffers/protobuf/issues/10819">#10819</a>)</li>
<li><a href="33bc6fb2a4"><code>33bc6fb</code></a> Replace libc strdup usage with internal impl to restore musl compat. (<a href="https://github-redirect.dependabot.com/protocolbuffers/protobuf/issues/10811">#10811</a>)...</li>
<li><a href="0d8ac768a1"><code>0d8ac76</code></a> Target macOS 10.9 (<a href="https://github-redirect.dependabot.com/protocolbuffers/protobuf/issues/10802">#10802</a>) (<a href="https://github-redirect.dependabot.com/protocolbuffers/protobuf/issues/10807">#10807</a>)</li>
<li><a href="80b583acdf"><code>80b583a</code></a> 21.x 202210181433 (<a href="https://github-redirect.dependabot.com/protocolbuffers/protobuf/issues/10787">#10787</a>)</li>
<li><a href="591fe403c9"><code>591fe40</code></a> 21.x 202210180838 (<a href="https://github-redirect.dependabot.com/protocolbuffers/protobuf/issues/10785">#10785</a>)</li>
<li><a href="3c49bd4e84"><code>3c49bd4</code></a> Bump upb to latest version after fixes applied (<a href="https://github-redirect.dependabot.com/protocolbuffers/protobuf/issues/10783">#10783</a>)</li>
<li>See full diff in <a href="https://github.com/protocolbuffers/protobuf/compare/v3.21.8...v3.21.9">compare view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=com.google.protobuf:protobuf-java&package-manager=gradle&previous-version=3.21.8&new-version=3.21.9)](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/4285

Reviewed By: antonk52

Differential Revision: D41578633

Pulled By: mweststrate

fbshipit-source-id: e908148ff6d686655f56f2912cac8c044da0dbf2
2022-11-30 07:43:03 -08:00
dependabot[bot]
6643ff1296 Bump com.github.ben-manes.versions from 0.42.0 to 0.44.0 (#4312)
Summary:
Bumps com.github.ben-manes.versions from 0.42.0 to 0.44.0.

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=com.github.ben-manes.versions&package-manager=gradle&previous-version=0.42.0&new-version=0.44.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

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

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

 ---

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

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

</details>

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

Reviewed By: antonk52

Differential Revision: D41472327

Pulled By: passy

fbshipit-source-id: 44caad58d885c2df2bb2a0124c3406b43016fd95
2022-11-24 08:40:32 -08:00
dependabot[bot]
8c0f07f4bd Bump espresso-intents from 3.4.0 to 3.5.0 (#4310)
Summary:
Bumps espresso-intents from 3.4.0 to 3.5.0.

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=androidx.test.espresso:espresso-intents&package-manager=gradle&previous-version=3.4.0&new-version=3.5.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

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

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

 ---

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

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

</details>

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

Reviewed By: antonk52

Differential Revision: D41472303

Pulled By: passy

fbshipit-source-id: 89aa6aa62f5917c58b4ca7ce5a55099b971ad5c7
2022-11-24 08:37:04 -08:00
dependabot[bot]
d101bf4eaa Bump rules from 1.4.0 to 1.5.0 (#4311)
Summary:
Bumps rules from 1.4.0 to 1.5.0.

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=androidx.test:rules&package-manager=gradle&previous-version=1.4.0&new-version=1.5.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

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

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

 ---

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

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

</details>

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

Reviewed By: antonk52

Differential Revision: D41472307

Pulled By: passy

fbshipit-source-id: c2b9c7e771051c1098fd7c8fd1f38672e83db581
2022-11-24 08:35:35 -08:00
dependabot[bot]
3dfb7caf1a Bump mockito-core from 4.7.0 to 4.8.1 (#4250)
Summary:
Bumps [mockito-core](https://github.com/mockito/mockito) from 4.7.0 to 4.8.1.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/mockito/mockito/releases">mockito-core's releases</a>.</em></p>
<blockquote>
<h2>v4.8.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>4.8.1</h4>
<ul>
<li>2022-10-17 - <a href="https://github.com/mockito/mockito/compare/v4.8.0...v4.8.1">6 commit(s)</a> by andrepaschoal, dependabot[bot]</li>
<li>Possible fix <a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2765">https://github.com/facebook/flipper/issues/2765</a>: Add task to download package-list file from java as element-list [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2766">https://github.com/facebook/flipper/issues/2766</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2766">mockito/mockito#2766</a>)</li>
<li>JavaDoc warning is blocking all pull requests [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2765">https://github.com/facebook/flipper/issues/2765</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2765">mockito/mockito#2765</a>)</li>
<li>Bump versions.junitJupiter from 5.9.0 to 5.9.1 [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2758">https://github.com/facebook/flipper/issues/2758</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2758">mockito/mockito#2758</a>)</li>
<li>Bump groovy from 3.0.12 to 3.0.13 [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2756">https://github.com/facebook/flipper/issues/2756</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2756">mockito/mockito#2756</a>)</li>
<li>Bump com.diffplug.spotless from 6.10.0 to 6.11.0 [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2753">https://github.com/facebook/flipper/issues/2753</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2753">mockito/mockito#2753</a>)</li>
<li>Bump org.eclipse.osgi from 3.18.0 to 3.18.100 [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2751">https://github.com/facebook/flipper/issues/2751</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2751">mockito/mockito#2751</a>)</li>
<li>Bump versions.bytebuddy from 1.12.14 to 1.12.16 [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2747">https://github.com/facebook/flipper/issues/2747</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2747">mockito/mockito#2747</a>)</li>
</ul>
<h2>v4.8.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>4.8.0</h4>
<ul>
<li>2022-09-07 - <a href="https://github.com/mockito/mockito/compare/v4.7.0...v4.8.0">10 commit(s)</a> by Alex, James Baker, Johannes Spangenberg, Kurt Alfred Kluever, Rafael Winterhalter, Thibault Helsmoortel, dependabot[bot]</li>
<li>GitHub Workflows security hardening [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2744">https://github.com/facebook/flipper/issues/2744</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2744">mockito/mockito#2744</a>)</li>
<li>Assign GlobalConfiguration initializer to unused variable [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2742">https://github.com/facebook/flipper/issues/2742</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2742">mockito/mockito#2742</a>)</li>
<li>Bump com.diffplug.spotless from 6.9.1 to 6.10.0 [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2738">https://github.com/facebook/flipper/issues/2738</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2738">mockito/mockito#2738</a>)</li>
<li>Drop varargs collector before invoking a user method. [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2736">https://github.com/facebook/flipper/issues/2736</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2736">mockito/mockito#2736</a>)</li>
<li>Bump versions.bytebuddy from 1.12.13 to 1.12.14 [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2734">https://github.com/facebook/flipper/issues/2734</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2734">mockito/mockito#2734</a>)</li>
<li>Remove useless thrown exception from constructor [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2732">https://github.com/facebook/flipper/issues/2732</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2732">mockito/mockito#2732</a>)</li>
<li>TypeSafeMatching no longer iterates over class methods inefficiently [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2729">https://github.com/facebook/flipper/issues/2729</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2729">mockito/mockito#2729</a>)</li>
<li>Fixes <a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2720">https://github.com/facebook/flipper/issues/2720</a>: Use StackWalker on Java 9+ to create Locations [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2723">https://github.com/facebook/flipper/issues/2723</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2723">mockito/mockito#2723</a>)</li>
<li>LocationImpl adds performance overheads due to instantiating a stack trace [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2720">https://github.com/facebook/flipper/issues/2720</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2720">mockito/mockito#2720</a>)</li>
<li>Fixes <a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2626">https://github.com/facebook/flipper/issues/2626</a> : Introduce MockSettings.mockMaker [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2701">https://github.com/facebook/flipper/issues/2701</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2701">mockito/mockito#2701</a>)</li>
<li>Introduce option to disable inline-mock-maker for a specific instance [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2626">https://github.com/facebook/flipper/issues/2626</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2626">mockito/mockito#2626</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="4d14d975ce"><code>4d14d97</code></a> Bump versions.junitJupiter from 5.9.0 to 5.9.1 (<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2758">https://github.com/facebook/flipper/issues/2758</a>)</li>
<li><a href="3507ce328f"><code>3507ce3</code></a> Use downloaded package-list file from Oracle for JavaDoc generation (<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2766">https://github.com/facebook/flipper/issues/2766</a>)</li>
<li><a href="0a9aa26978"><code>0a9aa26</code></a> Bump groovy from 3.0.12 to 3.0.13 (<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2756">https://github.com/facebook/flipper/issues/2756</a>)</li>
<li><a href="ee3679bc03"><code>ee3679b</code></a> Bump com.diffplug.spotless from 6.10.0 to 6.11.0 (<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2753">https://github.com/facebook/flipper/issues/2753</a>)</li>
<li><a href="185ea11ae4"><code>185ea11</code></a> Bump org.eclipse.osgi from 3.18.0 to 3.18.100 (<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2751">https://github.com/facebook/flipper/issues/2751</a>)</li>
<li><a href="488d4b13c9"><code>488d4b1</code></a> Bump versions.bytebuddy from 1.12.14 to 1.12.16 (<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2747">https://github.com/facebook/flipper/issues/2747</a>)</li>
<li><a href="3e910ea990"><code>3e910ea</code></a> Fixes <a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2626">https://github.com/facebook/flipper/issues/2626</a> : Introduce MockSettings.mockMaker (<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2701">https://github.com/facebook/flipper/issues/2701</a>)</li>
<li><a href="0753d48161"><code>0753d48</code></a> Explicitly add permissions to GitHub actions (<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2744">https://github.com/facebook/flipper/issues/2744</a>)</li>
<li><a href="530558ae3c"><code>530558a</code></a> Assign GlobalConfiguration initializer to unused variable (<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2742">https://github.com/facebook/flipper/issues/2742</a>)</li>
<li><a href="4b8042e24e"><code>4b8042e</code></a> Bump com.diffplug.spotless from 6.9.1 to 6.10.0 (<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2738">https://github.com/facebook/flipper/issues/2738</a>)</li>
<li>Additional commits viewable in <a href="https://github.com/mockito/mockito/compare/v4.7.0...v4.8.1">compare view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.mockito:mockito-core&package-manager=gradle&previous-version=4.7.0&new-version=4.8.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/4250

Reviewed By: aigoncharov

Differential Revision: D40673613

Pulled By: passy

fbshipit-source-id: 8f300bb530c4a997cb9423063bf1a9ce2f472333
2022-10-25 09:49:51 -07:00
dependabot[bot]
8ddba12ca5 Bump protobuf-java from 3.21.7 to 3.21.8 (#4251)
Summary:
Bumps [protobuf-java](https://github.com/protocolbuffers/protobuf) from 3.21.7 to 3.21.8.
<details>
<summary>Commits</summary>
<ul>
<li><a href="dab4d24d44"><code>dab4d24</code></a> Update changelog</li>
<li><a href="4d465ba341"><code>4d465ba</code></a> Updating version.json and repo version numbers to: 21.8</li>
<li><a href="3a0ae1d1eb"><code>3a0ae1d</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/protocolbuffers/protobuf/issues/10772">#10772</a> from deannagarcia/21.x</li>
<li><a href="dda7ffdc4f"><code>dda7ffd</code></a> Edit toolchain to work with absl dep</li>
<li><a href="4aab0bf621"><code>4aab0bf</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/protocolbuffers/protobuf/issues/10771">#10771</a> from protocolbuffers/gberg-cp-10770</li>
<li><a href="fa5a9e1035"><code>fa5a9e1</code></a> Auto capitalize enums name in Ruby (<a href="https://github-redirect.dependabot.com/protocolbuffers/protobuf/issues/10454">#10454</a>) (<a href="https://github-redirect.dependabot.com/protocolbuffers/protobuf/issues/10763">#10763</a>)</li>
<li><a href="1594ac1a2e"><code>1594ac1</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/protocolbuffers/protobuf/issues/10770">#10770</a> from protocolbuffers/googleberg-cl-480629524</li>
<li><a href="5d90ef2432"><code>5d90ef2</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/protocolbuffers/protobuf/issues/10743">#10743</a> from brad0/21_openbsd_platform_macros</li>
<li><a href="0ee5525a75"><code>0ee5525</code></a> Upgrade kokoro to Xcode 14 (<a href="https://github-redirect.dependabot.com/protocolbuffers/protobuf/issues/10732">#10732</a>)</li>
<li><a href="a971d06fc2"><code>a971d06</code></a> 21.x No longer define no_threadlocal on OpenBSD</li>
<li>Additional commits viewable in <a href="https://github.com/protocolbuffers/protobuf/compare/v3.21.7...v3.21.8">compare view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=com.google.protobuf:protobuf-java&package-manager=gradle&previous-version=3.21.7&new-version=3.21.8)](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/4251

Reviewed By: aigoncharov

Differential Revision: D40673617

Pulled By: passy

fbshipit-source-id: 88316f649ec4c0ccc3584a6d31c5e5db87d11c5c
2022-10-25 09:39:43 -07:00
dependabot[bot]
a95de35771 Bump kotlinx-serialization-json from 1.4.0 to 1.4.1 (#4228)
Summary:
Bumps [kotlinx-serialization-json](https://github.com/Kotlin/kotlinx.serialization) from 1.4.0 to 1.4.1.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/Kotlin/kotlinx.serialization/releases">kotlinx-serialization-json's releases</a>.</em></p>
<blockquote>
<h2>1.4.1</h2>
<p>This patch release contains several bug fixes and improvements.
Kotlin 1.7.20 is used by default.</p>
<h3>Improvements</h3>
<ul>
<li>Add <a href="https://github.com/MustBeDocumented"><code>@​MustBeDocumented</code></a> to certain annotations (<a href="https://github-redirect.dependabot.com/Kotlin/kotlinx.serialization/issues/2059">https://github.com/facebook/flipper/issues/2059</a>)</li>
<li>Deprecate .isNullable in SerialDescriptor builder (<a href="https://github-redirect.dependabot.com/Kotlin/kotlinx.serialization/issues/2040">https://github.com/facebook/flipper/issues/2040</a>)</li>
<li>Unsigned primitives and unsigned arrays serializers can be retrieved as built-ins (<a href="https://github-redirect.dependabot.com/Kotlin/kotlinx.serialization/issues/1992">https://github.com/facebook/flipper/issues/1992</a>)</li>
<li>Serializers are now cached inside reflective lookup, leading to faster serializer retrieval (<a href="https://github-redirect.dependabot.com/Kotlin/kotlinx.serialization/issues/2015">https://github.com/facebook/flipper/issues/2015</a>)</li>
<li>Compiler plugin can create enum serializers using static factories for better speed (<a href="https://github-redirect.dependabot.com/Kotlin/kotlinx.serialization/issues/1851">https://github.com/facebook/flipper/issues/1851</a>) (Kotlin 1.7.20 required)</li>
<li>Provide a foundation for compiler plugin intrinsics available in Kotlin 1.8.0 (<a href="https://github-redirect.dependabot.com/Kotlin/kotlinx.serialization/issues/2031">https://github.com/facebook/flipper/issues/2031</a>)</li>
</ul>
<h3>Bugfixes</h3>
<ul>
<li>Support polymorphism in Properties format (<a href="https://github-redirect.dependabot.com/Kotlin/kotlinx.serialization/issues/2052">https://github.com/facebook/flipper/issues/2052</a>) (thanks to <a href="https://github.com/rodrigovedovato">Rodrigo Vedovato</a>)</li>
<li>Added support of UTF-16 surrogate pairs to okio streams (<a href="https://github-redirect.dependabot.com/Kotlin/kotlinx.serialization/issues/2033">https://github.com/facebook/flipper/issues/2033</a>)</li>
<li>Fix dependency on core module from HOCON module (<a href="https://github-redirect.dependabot.com/Kotlin/kotlinx.serialization/issues/2020">https://github.com/facebook/flipper/issues/2020</a>) (thanks to <a href="https://github.com/osipxd">Osip Fatkullin</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/Kotlin/kotlinx.serialization/blob/master/CHANGELOG.md">kotlinx-serialization-json's changelog</a>.</em></p>
<blockquote>
<h1>1.4.1 / 2022-10-14</h1>
<p>This is patch release contains several bugfixes and improvements.
Kotlin 1.7.20 is used by default.</p>
<h3>Improvements</h3>
<ul>
<li>Add <a href="https://github.com/MustBeDocumented"><code>@​MustBeDocumented</code></a> to certain annotations (<a href="https://github-redirect.dependabot.com/Kotlin/kotlinx.serialization/issues/2059">https://github.com/facebook/flipper/issues/2059</a>)</li>
<li>Deprecate .isNullable in SerialDescriptor builder (<a href="https://github-redirect.dependabot.com/Kotlin/kotlinx.serialization/issues/2040">https://github.com/facebook/flipper/issues/2040</a>)</li>
<li>Unsigned primitives and unsigned arrays serializers can be retrieved as built-ins (<a href="https://github-redirect.dependabot.com/Kotlin/kotlinx.serialization/issues/1992">https://github.com/facebook/flipper/issues/1992</a>)</li>
<li>Serializers are now cached inside reflective lookup, leading to faster serializer retrieval (<a href="https://github-redirect.dependabot.com/Kotlin/kotlinx.serialization/issues/2015">https://github.com/facebook/flipper/issues/2015</a>)</li>
<li>Compiler plugin can create enum serializers using static factories for better speed (<a href="https://github-redirect.dependabot.com/Kotlin/kotlinx.serialization/issues/1851">https://github.com/facebook/flipper/issues/1851</a>) (Kotlin 1.7.20 required)</li>
<li>Provide foundation for compiler plugin intrinsics available in Kotlin 1.8.0 (<a href="https://github-redirect.dependabot.com/Kotlin/kotlinx.serialization/issues/2031">https://github.com/facebook/flipper/issues/2031</a>)</li>
</ul>
<h3>Bugfixes</h3>
<ul>
<li>Support polymorphism in Properties format (<a href="https://github-redirect.dependabot.com/Kotlin/kotlinx.serialization/issues/2052">https://github.com/facebook/flipper/issues/2052</a>) (thanks to <a href="https://github.com/rodrigovedovato">Rodrigo Vedovato</a>)</li>
<li>Added support of UTF-16 surrogate pairs to okio streams (<a href="https://github-redirect.dependabot.com/Kotlin/kotlinx.serialization/issues/2033">https://github.com/facebook/flipper/issues/2033</a>)</li>
<li>Fix dependency on core module from HOCON module (<a href="https://github-redirect.dependabot.com/Kotlin/kotlinx.serialization/issues/2020">https://github.com/facebook/flipper/issues/2020</a>) (thanks to <a href="https://github.com/osipxd">Osip Fatkullin</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="d7e58c2eeb"><code>d7e58c2</code></a> Prepare 1.4.1 release (<a href="https://github-redirect.dependabot.com/Kotlin/kotlinx.serialization/issues/2063">https://github.com/facebook/flipper/issues/2063</a>)</li>
<li><a href="de6864af70"><code>de6864a</code></a> Merge remote-tracking branch 'origin/master' into dev</li>
<li><a href="0a1b6d856d"><code>0a1b6d8</code></a> Fix minor documentation and comment typos (<a href="https://github-redirect.dependabot.com/Kotlin/kotlinx.serialization/issues/2061">https://github.com/facebook/flipper/issues/2061</a>)</li>
<li><a href="0f35682bbc"><code>0f35682</code></a> Fix incorrect behavior while deserializing maps to sealed classes (<a href="https://github-redirect.dependabot.com/Kotlin/kotlinx.serialization/issues/2052">https://github.com/facebook/flipper/issues/2052</a>)</li>
<li><a href="dc9983a608"><code>dc9983a</code></a> Update test assertions to use IntelliJ &quot;Click to see difference&quot; format (<a href="https://github-redirect.dependabot.com/Kotlin/kotlinx.serialization/issues/2062">https://github.com/facebook/flipper/issues/2062</a>)</li>
<li><a href="cb6bcbb648"><code>cb6bcbb</code></a> Add <a href="https://github.com/MustBeDocumented"><code>@​MustBeDocumented</code></a> to certain annotations</li>
<li><a href="182c53e3c9"><code>182c53e</code></a> Add documentation on using typealias for means of global configuration</li>
<li><a href="98529cd8e2"><code>98529cd</code></a> Remove kotlin.Experimental from opt-ins as it would be removed in 1.8.20</li>
<li><a href="687d917b13"><code>687d917</code></a> Updated builtin-classes.md to mention Duration</li>
<li><a href="e311eb8f22"><code>e311eb8</code></a> Added support for the unsigned primitives and arrays as built-in</li>
<li>Additional commits viewable in <a href="https://github.com/Kotlin/kotlinx.serialization/compare/v1.4.0...v1.4.1">compare view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.jetbrains.kotlinx:kotlinx-serialization-json&package-manager=gradle&previous-version=1.4.0&new-version=1.4.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/4228

Reviewed By: aigoncharov

Differential Revision: D40673607

Pulled By: passy

fbshipit-source-id: 72aa080a0919eedf4dc260a41b3179e1cc824d0e
2022-10-25 09:37:16 -07:00
dependabot[bot]
d4c4b9ebc4 Bump de.undercouch.download from 5.1.1 to 5.2.1 (#4170)
Summary:
Bumps [de.undercouch.download](https://github.com/michel-kraemer/gradle-download-task) from 5.1.1 to 5.2.1.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/michel-kraemer/gradle-download-task/releases">de.undercouch.download's releases</a>.</em></p>
<blockquote>
<h2>5.2.1</h2>
<p>Bug fixes:</p>
<ul>
<li>Use pooling connection manager of Apache HttpClient instead of basic one. The basic one is not meant to be used by multiple threads. This fixes an issue that could cause an <code>IllegalStateException</code> with the message <code>Connection is still allocated</code>. Thanks to <a href="https://github.com/dmarks2"><code>@​dmarks2</code></a> for spotting this.</li>
</ul>
<p>Maintenance:</p>
<ul>
<li>Update dependencies</li>
</ul>
<h2>5.2.0</h2>
<p>New features:</p>
<ul>
<li>Add <code>eachFile</code> method that adds an action to be applied to each source URL before it is downloaded. The action can be used to modify the filename of the target file.</li>
<li>Add <code>runAsync</code> method to download extension. This allows multiple files to be downloaded in parallel if the download extension is used. For normal download tasks, multiple files were downloaded in parallel already.</li>
</ul>
<h2>5.1.3</h2>
<p>Bug fixes:</p>
<ul>
<li>Initialize progress logger just before the download starts (see <a href="https://github-redirect.dependabot.com/michel-kraemer/gradle-download-task/issues/243">https://github.com/facebook/flipper/issues/243</a>)</li>
</ul>
<h2>5.1.2</h2>
<p>Bug fixes:</p>
<ul>
<li>Do not include default HTTP and HTTPS ports in <code>Host</code> header unless explicitly specified by the user</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="1b5d69760d"><code>1b5d697</code></a> Bump up version number to 5.2.1</li>
<li><a href="7d6de83037"><code>7d6de83</code></a> Update dependencies</li>
<li><a href="1da8f078e2"><code>1da8f07</code></a> Add comment</li>
<li><a href="9703f764df"><code>9703f76</code></a> Use pooling connection manager instead of basic one</li>
<li><a href="306172e4c6"><code>306172e</code></a> Bump up version number to 5.2.0</li>
<li><a href="b9df0c0daa"><code>b9df0c0</code></a> Document eachFile action</li>
<li><a href="05a4433770"><code>05a4433</code></a> Add eachFile action</li>
<li><a href="09d1eca91a"><code>09d1eca</code></a> Document runAsync method</li>
<li><a href="800e3df164"><code>800e3df</code></a> Add runAsync method to download extension</li>
<li><a href="80f04c6a46"><code>80f04c6</code></a> Bump up version number to 5.1.3</li>
<li>Additional commits viewable in <a href="https://github.com/michel-kraemer/gradle-download-task/compare/5.1.1...5.2.1">compare view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=de.undercouch.download&package-manager=gradle&previous-version=5.1.1&new-version=5.2.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/4170

Reviewed By: antonk52

Differential Revision: D40022284

Pulled By: antonk52

fbshipit-source-id: 140dc4c07f3460aa8bb8f1c8bf0446e65c9c9898
2022-10-06 05:01:09 -07:00
dependabot[bot]
e02d2fcc05 Bump robolectric from 4.8.1 to 4.9 (#4169)
Summary:
Bumps [robolectric](https://github.com/robolectric/robolectric) from 4.8.1 to 4.9.
<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 adds support for Android T (API level 33).</p>
<p>This release removes shadows supportv4 module fully.</p>
<p>It also installs the Conscrypt as the primary Security provider. See <a href="http://robolectric.org/blog/2022/09/06/Umesh-GSoC-on-ConscryptMode/">http://robolectric.org/blog/2022/09/06/Umesh-GSoC-on-ConscryptMode/</a> for details.</p>
<p>4.9 also turns on NATIVE sqlite mode by default for Mac and Linux. Windows will continue to use the LEGACY SQLite mode.</p>
<h2>What's Changed</h2>
<ul>
<li>Enable integration_tests:sparsearray tests by <a href="https://github.com/utzcoz"><code>@​utzcoz</code></a> in <a href="https://github-redirect.dependabot.com/robolectric/robolectric/pull/7006">robolectric/robolectric#7006</a></li>
<li>Enable CI when PRs are made to the 'google' branch by <a href="https://github.com/hoisie"><code>@​hoisie</code></a> in <a href="https://github-redirect.dependabot.com/robolectric/robolectric/pull/7164">robolectric/robolectric#7164</a></li>
<li>Add triggerOnReadyForSpeech() to ShadowSpeechRecognizer. <a href="https://github-redirect.dependabot.com/robolectric/robolectric/pull/7163">robolectric/robolectric#7163</a></li>
<li>Bump gradle-versions-plugin to 0.42.0 by <a href="https://github.com/utzcoz"><code>@​utzcoz</code></a> in <a href="https://github-redirect.dependabot.com/robolectric/robolectric/pull/6970">robolectric/robolectric#6970</a></li>
<li>Clean up tests.yml by <a href="https://github.com/utzcoz"><code>@​utzcoz</code></a> in <a href="https://github-redirect.dependabot.com/robolectric/robolectric/pull/7161">robolectric/robolectric#7161</a></li>
<li>Block <code>UiController#loopMainThreadUntilIdle</code> on registered idling resources being idle. <a href="https://github-redirect.dependabot.com/robolectric/robolectric/pull/7148">robolectric/robolectric#7148</a></li>
<li>Return non-zero pointer from <code>nCreateTextureLayer</code> <a href="https://github-redirect.dependabot.com/robolectric/robolectric/pull/7166">robolectric/robolectric#7166</a></li>
<li>Correctly register all idling resources <a href="https://github-redirect.dependabot.com/robolectric/robolectric/pull/7167">robolectric/robolectric#7167</a></li>
<li>Update README.md to declare Robolectric supports SDK 32 by <a href="https://github.com/utzcoz"><code>@​utzcoz</code></a> in <a href="https://github-redirect.dependabot.com/robolectric/robolectric/pull/7169">robolectric/robolectric#7169</a></li>
<li>Indicate windows are visible by default (flag enabled) <a href="https://github-redirect.dependabot.com/robolectric/robolectric/pull/7179">robolectric/robolectric#7179</a></li>
<li>Add documentation to run tests on Emulator by <a href="https://github.com/utzcoz"><code>@​utzcoz</code></a> in <a href="https://github-redirect.dependabot.com/robolectric/robolectric/pull/7162">robolectric/robolectric#7162</a></li>
<li>Restore accidentally deleted link to building Robolectric <a href="https://github-redirect.dependabot.com/robolectric/robolectric/pull/7183">robolectric/robolectric#7183</a></li>
<li>Ensure getNetworkCountryIso &amp; getSimCountryIso return lowercase only, to match the actual APIs. <a href="https://github-redirect.dependabot.com/robolectric/robolectric/pull/7184">robolectric/robolectric#7184</a></li>
<li>Update RoboLocationRequest equals() and toString(). <a href="https://github-redirect.dependabot.com/robolectric/robolectric/pull/7186">robolectric/robolectric#7186</a></li>
<li>Centralize the Injector logic to load the native runtime <a href="https://github-redirect.dependabot.com/robolectric/robolectric/pull/7198">robolectric/robolectric#7198</a></li>
<li>Fixed PFD testGetFd_canRead test failed on macOS. by <a href="https://github.com/ZSmallX"><code>@​ZSmallX</code></a> in <a href="https://github-redirect.dependabot.com/robolectric/robolectric/pull/7202">robolectric/robolectric#7202</a></li>
<li>Optimize CI a bit by <a href="https://github.com/Goooler"><code>@​Goooler</code></a> in <a href="https://github-redirect.dependabot.com/robolectric/robolectric/pull/7195">robolectric/robolectric#7195</a></li>
<li>Clean up ctesque by <a href="https://github.com/utzcoz"><code>@​utzcoz</code></a> in <a href="https://github-redirect.dependabot.com/robolectric/robolectric/pull/7145">robolectric/robolectric#7145</a></li>
<li>Clean up ShadowDefaultRequestDirectorTest.java by <a href="https://github.com/utzcoz"><code>@​utzcoz</code></a> in <a href="https://github-redirect.dependabot.com/robolectric/robolectric/pull/7208">robolectric/robolectric#7208</a></li>
<li>Bump Gradle to 7.4.2 by <a href="https://github.com/utzcoz"><code>@​utzcoz</code></a> in <a href="https://github-redirect.dependabot.com/robolectric/robolectric/pull/7207">robolectric/robolectric#7207</a></li>
<li>Remove unused Exception from example in README.md by <a href="https://github.com/utzcoz"><code>@​utzcoz</code></a> in <a href="https://github-redirect.dependabot.com/robolectric/robolectric/pull/7206">robolectric/robolectric#7206</a></li>
<li>Error prone and google format fix annotation module by <a href="https://github.com/hellosagar"><code>@​hellosagar</code></a> in <a href="https://github-redirect.dependabot.com/robolectric/robolectric/pull/7154">robolectric/robolectric#7154</a></li>
<li>Update CI to use JDK 11.0.14 by <a href="https://github.com/hoisie"><code>@​hoisie</code></a> in <a href="https://github-redirect.dependabot.com/robolectric/robolectric/pull/7213">robolectric/robolectric#7213</a></li>
<li>Support Canvas#drawRect with RectF by <a href="https://github.com/Akshay2131"><code>@​Akshay2131</code></a> in <a href="https://github-redirect.dependabot.com/robolectric/robolectric/pull/7210">robolectric/robolectric#7210</a></li>
<li>Remove maxSdk restrition for ShadowBiometricManager#canAuthenticate implementation by <a href="https://github.com/utzcoz"><code>@​utzcoz</code></a> in <a href="https://github-redirect.dependabot.com/robolectric/robolectric/pull/7211">robolectric/robolectric#7211</a></li>
<li>Switch to run tests on Emulator with SDK 29,32 by <a href="https://github.com/utzcoz"><code>@​utzcoz</code></a> in <a href="https://github-redirect.dependabot.com/robolectric/robolectric/pull/7170">robolectric/robolectric#7170</a></li>
<li>Support JDK 1.8 in ShadowWrangler invokespecial logic <a href="https://github-redirect.dependabot.com/robolectric/robolectric/pull/7219">robolectric/robolectric#7219</a></li>
<li>build: bump errorprone plugin version from 1.3.0 to 2.0.2 by <a href="https://github.com/hellosagar"><code>@​hellosagar</code></a> in <a href="https://github-redirect.dependabot.com/robolectric/robolectric/pull/7218">robolectric/robolectric#7218</a></li>
<li>Bring integration_tests to API 32 by <a href="https://github.com/utzcoz"><code>@​utzcoz</code></a> in <a href="https://github-redirect.dependabot.com/robolectric/robolectric/pull/7217">robolectric/robolectric#7217</a></li>
<li>Add method expectLogMessagePatternWithThrowableMatcher to ExpectedLogMessagesRule so that users can check for a Throwable, as well as a log message pattern. <a href="https://github-redirect.dependabot.com/robolectric/robolectric/pull/7221">robolectric/robolectric#7221</a></li>
<li>Add javadoc for DefaultShadowPicker by <a href="https://github.com/hoisie"><code>@​hoisie</code></a> in <a href="https://github-redirect.dependabot.com/robolectric/robolectric/pull/7222">robolectric/robolectric#7222</a></li>
<li>Add SdkSuppress to some tests in ThemeTest and MotionEventTest by <a href="https://github.com/hoisie"><code>@​hoisie</code></a> in <a href="https://github-redirect.dependabot.com/robolectric/robolectric/pull/7227">robolectric/robolectric#7227</a></li>
<li>Removed <code>targetSdk</code> from AndroidManifest.xml by <a href="https://github.com/Umesh-01"><code>@​Umesh-01</code></a> in <a href="https://github-redirect.dependabot.com/robolectric/robolectric/pull/7232">robolectric/robolectric#7232</a></li>
<li>Add getCurrentSyncs() in ShadowContentResolver by <a href="https://github.com/Akshay2131"><code>@​Akshay2131</code></a> in <a href="https://github-redirect.dependabot.com/robolectric/robolectric/pull/7225">robolectric/robolectric#7225</a></li>
<li>Make deep copy of mPointerProperties for NativeInput#copyFrom by <a href="https://github.com/utzcoz"><code>@​utzcoz</code></a> in <a href="https://github-redirect.dependabot.com/robolectric/robolectric/pull/7251">robolectric/robolectric#7251</a></li>
<li>Remove empty ShadowTextPaint by <a href="https://github.com/utzcoz"><code>@​utzcoz</code></a> in <a href="https://github-redirect.dependabot.com/robolectric/robolectric/pull/7250">robolectric/robolectric#7250</a></li>
<li>Migrate compileSdkVersion to compileSdk by <a href="https://github.com/Akshay2131"><code>@​Akshay2131</code></a> in <a href="https://github-redirect.dependabot.com/robolectric/robolectric/pull/7253">robolectric/robolectric#7253</a></li>
<li>Ensure ShadowActivity can work with project targetSdk less than S by <a href="https://github.com/utzcoz"><code>@​utzcoz</code></a> in <a href="https://github-redirect.dependabot.com/robolectric/robolectric/pull/7254">robolectric/robolectric#7254</a></li>
<li>Deprecate is___Intent methods of ShadowPendingIntent <a href="https://github-redirect.dependabot.com/robolectric/robolectric/pull/7276">robolectric/robolectric#7276</a></li>
<li>Invoke the real View.draw(Canvas) from ShadowView.draw(Canvas) <a href="https://github-redirect.dependabot.com/robolectric/robolectric/pull/7279">robolectric/robolectric#7279</a></li>
<li>Add looper mode assertions to <code>ShadowChoreographer</code> methods <a href="https://github-redirect.dependabot.com/robolectric/robolectric/pull/7278">robolectric/robolectric#7278</a></li>
</ul>

</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="6d24315af1"><code>6d24315</code></a> Bump version to 4.9.</li>
<li><a href="4091c1ce38"><code>4091c1c</code></a> Merge branch 'google' into 'master'</li>
<li><a href="13e8976c4d"><code>13e8976</code></a> Remove unnecessary ColorMatrixColorFilter shadow</li>
<li><a href="2cfaf902bd"><code>2cfaf90</code></a> Update ShadowTelephonyManager with Tiramisu getServiceState function</li>
<li><a href="34cffc9a9c"><code>34cffc9</code></a> Remove empty ShadowBitmapShader</li>
<li><a href="32f97fcad8"><code>32f97fc</code></a> Fix several edge cases in constructor instrumentation</li>
<li><a href="f53a74b12a"><code>f53a74b</code></a> Block explicit intents if they don't match intent filters on T+.</li>
<li><a href="49e67dddf2"><code>49e67dd</code></a> Initialize configuration before calling application lifecycle plugins</li>
<li><a href="26ed520b1a"><code>26ed520</code></a> Create check to see if constructor can be instrumented</li>
<li><a href="cc0a05f717"><code>cc0a05f</code></a> Clean up some API methods on ShadowBitmap</li>
<li>Additional commits viewable in <a href="https://github.com/robolectric/robolectric/compare/robolectric-4.8.1...robolectric-4.9">compare view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.robolectric:robolectric&package-manager=gradle&previous-version=4.8.1&new-version=4.9)](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/4169

Reviewed By: antonk52

Differential Revision: D40022316

Pulled By: antonk52

fbshipit-source-id: f5fca51837b9d1f013ad208b0482616b0e048539
2022-10-05 09:34:29 -07:00
Lorenzo Blasa
9094609e86 Update com.vanniktech:gradle-maven-publish-plugin
Summary:
^

Changelog: Update com.vanniktech:gradle-maven-publish-plugin

Reviewed By: LukeDefeo

Differential Revision: D40099777

fbshipit-source-id: aa7fa289ff9aa7a60171e4f9c099e0f236a77836
2022-10-05 06:01:15 -07:00
Lorenzo Blasa
76d6350662 Set jvm flags and kotlin dependencies (#4177)
Summary:
Pull Request resolved: https://github.com/facebook/flipper/pull/4177

^

In an attempt to fix Github actions, may or may not work.

Reviewed By: aigoncharov

Differential Revision: D40074397

fbshipit-source-id: e88039c56876ca21657db4a6d872c46294a4f8c3
2022-10-05 04:30:17 -07:00
dependabot[bot]
303d88bd11 Bump protobuf-java from 3.21.6 to 3.21.7 (#4168)
Summary:
Bumps [protobuf-java](https://github.com/protocolbuffers/protobuf) from 3.21.6 to 3.21.7.
<details>
<summary>Commits</summary>
<ul>
<li><a href="54489e95e0"><code>54489e9</code></a> Updating changelog</li>
<li><a href="5fc03e1647"><code>5fc03e1</code></a> Updating version.json and repo version numbers to: 21.7</li>
<li><a href="a3888f5331"><code>a3888f5</code></a> Clean up TextFormat parser (<a href="https://github-redirect.dependabot.com/protocolbuffers/protobuf/issues/10673">#10673</a>)</li>
<li><a href="3b5301c114"><code>3b5301c</code></a> Refactoring Java parsing (21.x) (<a href="https://github-redirect.dependabot.com/protocolbuffers/protobuf/issues/10665">#10665</a>)</li>
<li><a href="bea6726c73"><code>bea6726</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/protocolbuffers/protobuf/issues/10579">#10579</a> from protocolbuffers/21.x-202209142140</li>
<li><a href="b1924e1de9"><code>b1924e1</code></a> Update version.json to: 21.7-dev</li>
<li><a href="929e13d1a9"><code>929e13d</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/protocolbuffers/protobuf/issues/10572">#10572</a> from deannagarcia/21.x</li>
<li><a href="de7597e577"><code>de7597e</code></a> Update python/release.sh to handle delay between twine upload and pip install...</li>
<li><a href="480bd3b970"><code>480bd3b</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/protocolbuffers/protobuf/issues/10557">#10557</a> from protocolbuffers/21.x-202209132118</li>
<li><a href="aa8c73d845"><code>aa8c73d</code></a> Updating changelog</li>
<li>See full diff in <a href="https://github.com/protocolbuffers/protobuf/compare/v3.21.6...v3.21.7">compare view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=com.google.protobuf:protobuf-java&package-manager=gradle&previous-version=3.21.6&new-version=3.21.7)](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/4168

Reviewed By: antonk52

Differential Revision: D40022334

Pulled By: antonk52

fbshipit-source-id: 3fe3739beac776019e35b5aafc8b56f3516b4a25
2022-10-05 04:06:39 -07:00
Lorenzo Blasa
16983deaaf Upgrade gradle plugin (#4166)
Summary:
Pull Request resolved: https://github.com/facebook/flipper/pull/4166

^

Changelog: Upgrade to gradle plugin 7.3.0

Reviewed By: LukeDefeo

Differential Revision: D40019423

fbshipit-source-id: ab05fd73e942c96601e2291049b1c858408e1192
2022-10-03 07:35:43 -07:00
dependabot[bot]
7ccd853440 Bump protobuf-java from 3.21.5 to 3.21.6 (#4116)
Summary:
Bumps [protobuf-java](https://github.com/protocolbuffers/protobuf) from 3.21.5 to 3.21.6.
<details>
<summary>Commits</summary>
<ul>
<li><a href="24487dd104"><code>24487dd</code></a> Updating version.json and repo version numbers to: 21.6</li>
<li><a href="d88266c319"><code>d88266c</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/protocolbuffers/protobuf/issues/10545">#10545</a> from deannagarcia/21.x</li>
<li><a href="cd0ee8f45d"><code>cd0ee8f</code></a> Apply patch</li>
<li><a href="ea2f20498e"><code>ea2f204</code></a> Uninstall system protobuf to prevent version conflicts (<a href="https://github-redirect.dependabot.com/protocolbuffers/protobuf/issues/10522">#10522</a>)</li>
<li><a href="aafacb09c7"><code>aafacb0</code></a> Remove broken use_bazel.sh (<a href="https://github-redirect.dependabot.com/protocolbuffers/protobuf/issues/10511">#10511</a>)</li>
<li><a href="40847c7ee5"><code>40847c7</code></a> Fix Kokoro tests to work on Monterey machines (<a href="https://github-redirect.dependabot.com/protocolbuffers/protobuf/issues/10473">#10473</a>)</li>
<li><a href="2fb33f46a6"><code>2fb33f4</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/protocolbuffers/protobuf/issues/10382">#10382</a> from protocolbuffers/21.x-202208092202</li>
<li><a href="29f03e04d3"><code>29f03e0</code></a> Update version.json to: 21.6-dev</li>
<li><a href="638779f353"><code>638779f</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/protocolbuffers/protobuf/issues/10380">#10380</a> from protocolbuffers/21.x-202208091710</li>
<li>See full diff in <a href="https://github.com/protocolbuffers/protobuf/compare/v3.21.5...v3.21.6">compare view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=com.google.protobuf:protobuf-java&package-manager=gradle&previous-version=3.21.5&new-version=3.21.6)](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/4116

Reviewed By: antonk52

Differential Revision: D39933610

Pulled By: antonk52

fbshipit-source-id: ee93fe9bb176c473199b1c9deee30bdc850ae1c6
2022-10-03 02:55:22 -07:00
Lorenzo Blasa
e15dfc947c Back out "Upgrade gradle and maven-publish plugin" (#4146)
Summary:
Pull Request resolved: https://github.com/facebook/flipper/pull/4146

Revert: D39730258 (b43d8f5c80)

It is causing some issues with producing the necessary libraries for all supported abis (libevent-core.so)

Reviewed By: LukeDefeo

Differential Revision: D39846721

fbshipit-source-id: eb50d8eaff869fbf8ac551c1bcb0984a49545599
2022-09-27 06:28:40 -07:00
Andrey Goncharov
b43d8f5c80 Upgrade gradle and maven-publish plugin
Summary: Based on https://github.com/vanniktech/gradle-maven-publish-plugin/issues/378 it should resolve Flipper issues with publishing to Maven https://github.com/facebook/flipper/issues/4134

Reviewed By: antonk52

Differential Revision: D39730258

fbshipit-source-id: 5e5b62dfdb746e14a14218efa9b8dca0e6850e1c
2022-09-22 09:15:46 -07:00
Luke De Feo
9a270cdc7a Tree observer
Summary:
Added concept of a tree observer which is responsible for listening to the changes for a portion of the UI tree. This structure nests so Tree observers can hold child tree observers which emit events on a different cadence. This structure should allow us to incorporate different UI frameworks down the road as well as native android views.

We push the tree updates from the tree observers onto a channel and setup a coroutine to consume this channel, serialize and send down the wire.

Reviewed By: lblasa

Differential Revision: D39276681

fbshipit-source-id: a4bc23b3578a8a10b57dd11fe88b273e1ce09ad8
2022-09-12 03:48:43 -07:00
Luke De Feo
c854d0a2bb Added kotlin serialization
Summary: ^

Reviewed By: lblasa

Differential Revision: D38976576

fbshipit-source-id: 32022c263a0c81e6e99478375592ef1be9fea1cf
2022-09-05 05:36:23 -07:00
dependabot[bot]
9c8f80c70c Bump dokka-gradle-plugin from 1.6.21 to 1.7.10 (#3916)
Summary:
Bumps [dokka-gradle-plugin](https://github.com/Kotlin/dokka) from 1.6.21 to 1.7.10.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/Kotlin/dokka/releases">dokka-gradle-plugin's releases</a>.</em></p>
<blockquote>
<h2>1.7.10 Beta</h2>
<p>Bugfix release that addresses several blockers and regressions.</p>
<h3>General</h3>
<ul>
<li>Support <code>Kotlin</code> 1.7.10</li>
</ul>
<h3>Gradle plugin</h3>
<ul>
<li>Do not expose <code>Kotlin</code> stdlib in plugin dependencies, this should fix errors like <code>Module was compiled with an incompatible version of Kotlin</code> when using <code>Dokka</code>. Thanks to <a href="https://github.com/martinbonnin"><code>@​martinbonnin</code></a> (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/issues/2543">https://github.com/facebook/flipper/issues/2543</a>)</li>
</ul>
<h3>Java sources</h3>
<ul>
<li>Fixed build failure caused by having configured source links for <code>Java</code> code (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/issues/2544">https://github.com/facebook/flipper/issues/2544</a>)</li>
<li>Fixed several exotic problems that led to build failures, all related to using annotation in <code>Java</code> sources (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/issues/2509">https://github.com/facebook/flipper/issues/2509</a>, <a href="https://github-redirect.dependabot.com/Kotlin/dokka/issues/2551">https://github.com/facebook/flipper/issues/2551</a>, <a href="https://github-redirect.dependabot.com/Kotlin/dokka/issues/2350">https://github.com/facebook/flipper/issues/2350</a>)</li>
<li>Fixed <code>IntelliJ</code> platform <code>WARN: Attempt to load key</code> messages that appeared when analyzing <code>Java</code> sources (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/issues/2559">https://github.com/facebook/flipper/issues/2559</a>)</li>
</ul>
<h2>1.7.0 Beta</h2>
<h2>Improvements</h2>
<h3>General</h3>
<ul>
<li>Update to <code>Kotlin</code> 1.7.0, <code>IntelliJ</code> Platform 213</li>
<li>Support <a href="https://kotlinlang.org/docs/whatsnew17.html#stable-definitely-non-nullable-types">definitely non-nullable types</a> (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/pull/2520">Kotlin/dokka#2520</a>)</li>
<li>Don't expose enum entry constructor arguments, thanks to <a href="https://github.com/ebraminio"><code>@​ebraminio</code></a> (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/pull/2497">Kotlin/dokka#2497</a>)</li>
<li>Preserve ordering of enum entries as in source code, previously reversed (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/pull/2469">Kotlin/dokka#2469</a>)</li>
<li>Improve support for inherited <code>Java</code> fields with accessors, now properly interpreted as <code>val</code>/<code>var</code> properties (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/pull/2481">Kotlin/dokka#2481</a>, <a href="https://github-redirect.dependabot.com/Kotlin/dokka/pull/2532">Kotlin/dokka#2532</a>, <a href="https://github-redirect.dependabot.com/Kotlin/dokka/pull/2540">Kotlin/dokka#2540</a>)</li>
<li>Skip <code>Deprecated</code> members with <code>HIDDEN</code> level (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/pull/2486">Kotlin/dokka#2486</a>)</li>
<li>Make rendered default value dependent on source set for expect/actual declarations (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/pull/2449">Kotlin/dokka#2449</a>)</li>
</ul>
<h3>HTML format</h3>
<ul>
<li>Render quotes as blockquotes instead of code blocks, thanks to <a href="https://github.com/TheOnlyTails"><code>@​TheOnlyTails</code></a> (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/pull/2496">Kotlin/dokka#2496</a>)</li>
</ul>
<h3>Javadoc format</h3>
<ul>
<li>Make <code>Javadoc</code> pages generation deterministic (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/pull/2479">Kotlin/dokka#2479</a>)</li>
<li>Update shipped <code>jQuery</code> to avoid multiple CVEs, thanks to <a href="https://github.com/ToppleTheNun"><code>@​ToppleTheNun</code></a> (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/issues/1938">Kotlin/dokka#1938</a>)</li>
</ul>
<h3>GFM format</h3>
<ul>
<li>Support rendering of code blocks and inline code used in KDocs, thanks to <a href="https://github.com/cosinekitty"><code>@​cosinekitty</code></a> (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/pull/2485">Kotlin/dokka#2485</a>)</li>
</ul>
<h3>Kotlin-as-Java plugin</h3>
<ul>
<li>Include <code>Java</code> access modifiers into function signatures, thanks to <a href="https://github.com/tripolkaandrey"><code>@​tripolkaandrey</code></a> (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/pull/2510">Kotlin/dokka#2510</a>)</li>
</ul>
<h3>Gradle runner</h3>
<ul>
<li>Make <code>dokka-analysis</code> dependency <code>compileOnly</code>, this should help avoid compatibility problems if different versions of <code>Kotlin</code> are bundled in <code>Gradle</code> and <code>Dokka</code> (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/pull/2521">Kotlin/dokka#2521</a>)</li>
<li>Enable stricter validation for cacheable <code>Gradle</code> tasks, thanks to <a href="https://github.com/3flex"><code>@​3flex</code></a> (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/pull/2500">Kotlin/dokka#2500</a>)</li>
<li>Remove unused &amp; redundant dependencies for <code>Gradle</code> runner, thanks to <a href="https://github.com/3flex"><code>@​3flex</code></a> (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/pull/2502">Kotlin/dokka#2502</a>)</li>
<li>Remove outdated suppression in <code>Gradle</code> runner, thanks to <a href="https://github.com/3flex"><code>@​3flex</code></a> (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/pull/2501">Kotlin/dokka#2501</a>)</li>
</ul>

</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="cfa433f59b"><code>cfa433f</code></a> Update references and documentation to Dokka 1.7.10 (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/issues/2567">https://github.com/facebook/flipper/issues/2567</a>)</li>
<li><a href="5633f27b55"><code>5633f27</code></a> Ignore messages emitted by the IntelliJ Logger (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/issues/2563">https://github.com/facebook/flipper/issues/2563</a>)</li>
<li><a href="b6ba965288"><code>b6ba965</code></a> Update Kotlin to 1.7.10 (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/issues/2564">https://github.com/facebook/flipper/issues/2564</a>)</li>
<li><a href="fa175bdd95"><code>fa175bd</code></a> Improve handling of Java annotation parameters (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/issues/2562">https://github.com/facebook/flipper/issues/2562</a>)</li>
<li><a href="6490083c03"><code>6490083</code></a> Do not generate source links for synthetic elements (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/issues/2547">https://github.com/facebook/flipper/issues/2547</a>)</li>
<li><a href="e1e114b2c8"><code>e1e114b</code></a> Do not expose kotlin stdlib in the Gradle plugin dependencies (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/issues/2543">https://github.com/facebook/flipper/issues/2543</a>)</li>
<li><a href="abd963b71f"><code>abd963b</code></a> Update documentation and examples to Dokka 1.7.0 (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/issues/2542">https://github.com/facebook/flipper/issues/2542</a>)</li>
<li><a href="5e770efe41"><code>5e770ef</code></a> Update Dokka version to release</li>
<li><a href="89fc2494b4"><code>89fc249</code></a> Fix incorrectly labeling java properties as val/var (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/issues/2540">https://github.com/facebook/flipper/issues/2540</a>)</li>
<li><a href="a11a8dd92f"><code>a11a8dd</code></a> Dont escape text inside gfm code blocks (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/issues/2541">https://github.com/facebook/flipper/issues/2541</a>)</li>
<li>Additional commits viewable in <a href="https://github.com/Kotlin/dokka/compare/v1.6.21...v1.7.10">compare view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.jetbrains.dokka:dokka-gradle-plugin&package-manager=gradle&previous-version=1.6.21&new-version=1.7.10)](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/3916

Reviewed By: lblasa

Differential Revision: D38833324

Pulled By: passy

fbshipit-source-id: 63b26b3bf08077d4616da0c017f20d26b28643fa
2022-08-19 02:57:58 -07:00
Lorenzo Blasa
3b8e74d16f Add kotlin support
Summary:
^

changelog: Add kotlin support for the android library

Reviewed By: LukeDefeo

Differential Revision: D38746572

fbshipit-source-id: f49534072eee3854368ea6f725e726560c03d76e
2022-08-18 05:16:38 -07:00
dependabot[bot]
4cf4dbcf6a Bump protobuf-java from 3.21.4 to 3.21.5 (#4002)
Summary:
Bumps [protobuf-java](https://github.com/protocolbuffers/protobuf) from 3.21.4 to 3.21.5.
<details>
<summary>Commits</summary>
<ul>
<li><a href="ab84034596"><code>ab84034</code></a> Update changelog</li>
<li><a href="a44b4ae39c"><code>a44b4ae</code></a> Updating version.json and repo version numbers to: 21.5</li>
<li><a href="3294de8ff6"><code>3294de8</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/protocolbuffers/protobuf/issues/10376">#10376</a> from deannagarcia/21.x</li>
<li><a href="4819eed1c2"><code>4819eed</code></a> Update UPB version</li>
<li><a href="ea0c6fefcf"><code>ea0c6fe</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/protocolbuffers/protobuf/issues/10362">#10362</a> from haberman/cherry-pick-php-oneof-descriptor</li>
<li><a href="23097c45f8"><code>23097c4</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/protocolbuffers/protobuf/issues/10361">#10361</a> from haberman/cherry-pick-php-nested</li>
<li><a href="005f6d1c91"><code>005f6d1</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/protocolbuffers/protobuf/issues/10356">#10356</a> from haberman/php-containing-oneof</li>
<li><a href="d8f882b675"><code>d8f882b</code></a> fix: fix PHP readonly legacy files for nested messages</li>
<li><a href="de48e9d03f"><code>de48e9d</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/protocolbuffers/protobuf/issues/10317">#10317</a> from protocolbuffers/21.x-202207262015</li>
<li><a href="735e1ef561"><code>735e1ef</code></a> Update version.json to: 21.5-dev</li>
<li>Additional commits viewable in <a href="https://github.com/protocolbuffers/protobuf/compare/v3.21.4...v3.21.5">compare view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=com.google.protobuf:protobuf-java&package-manager=gradle&previous-version=3.21.4&new-version=3.21.5)](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/4002

Reviewed By: mweststrate

Differential Revision: D38781657

Pulled By: passy

fbshipit-source-id: 0d7c5c3440d7e7f8d505f16907db01c9e1a491b9
2022-08-17 10:00:29 -07:00
dependabot[bot]
9c86aa4e35 Bump mockito-core from 4.6.1 to 4.7.0 (#4004)
Summary:
Bumps [mockito-core](https://github.com/mockito/mockito) from 4.6.1 to 4.7.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/mockito/mockito/releases">mockito-core's releases</a>.</em></p>
<blockquote>
<h2>v4.7.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>4.7.0</h4>
<ul>
<li>2022-08-13 - <a href="https://github.com/mockito/mockito/compare/v4.6.1...v4.7.0">33 commit(s)</a> by 198812345678, Andy Coates, Chen Ni, Marius Lichtblau, Nikita Koselev. Developer Advocate, Open Source Ally, Rafael Winterhalter, dependabot[bot], dstango, fishautumn, heqiang</li>
<li>Bump com.diffplug.spotless from 6.9.0 to 6.9.1 [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2725">https://github.com/facebook/flipper/issues/2725</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2725">mockito/mockito#2725</a>)</li>
<li>Bump versions.bytebuddy from 1.12.12 to 1.12.13 [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2719">https://github.com/facebook/flipper/issues/2719</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2719">mockito/mockito#2719</a>)</li>
<li>Fix Javadoc for Mockito. [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2718">https://github.com/facebook/flipper/issues/2718</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2718">mockito/mockito#2718</a>)</li>
<li>Bump com.diffplug.spotless from 6.8.0 to 6.9.0 [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2717">https://github.com/facebook/flipper/issues/2717</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2717">mockito/mockito#2717</a>)</li>
<li>Fix a typo in comment of InternalRunner.java [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2715">https://github.com/facebook/flipper/issues/2715</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2715">mockito/mockito#2715</a>)</li>
<li>Bump junit-platform-launcher from 1.8.2 to 1.9.0 [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2713">https://github.com/facebook/flipper/issues/2713</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2713">mockito/mockito#2713</a>)</li>
<li>Bump versions.junitJupiter from 5.8.2 to 5.9.0 [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2712">https://github.com/facebook/flipper/issues/2712</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2712">mockito/mockito#2712</a>)</li>
<li>Bump groovy from 3.0.11 to 3.0.12 [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2711">https://github.com/facebook/flipper/issues/2711</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2711">mockito/mockito#2711</a>)</li>
<li>Bump shipkit-auto-version from 1.2.0 to 1.2.1 [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2709">https://github.com/facebook/flipper/issues/2709</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2709">mockito/mockito#2709</a>)</li>
<li>Bump kotlinVersion from 1.7.0 to 1.7.10 [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2705">https://github.com/facebook/flipper/issues/2705</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2705">mockito/mockito#2705</a>)</li>
<li>Bump com.diffplug.spotless from 6.7.2 to 6.8.0 [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2699">https://github.com/facebook/flipper/issues/2699</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2699">mockito/mockito#2699</a>)</li>
<li>Bump versions.bytebuddy from 1.12.11 to 1.12.12 [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2695">https://github.com/facebook/flipper/issues/2695</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2695">mockito/mockito#2695</a>)</li>
<li>Makes error message less misleading and points to github for help. Issue <a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2692">https://github.com/facebook/flipper/issues/2692</a> [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2693">https://github.com/facebook/flipper/issues/2693</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2693">mockito/mockito#2693</a>)</li>
<li>Misleading error message when mocking and a class (of a parameter) is not found [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2692">https://github.com/facebook/flipper/issues/2692</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2692">mockito/mockito#2692</a>)</li>
<li>Bump kotlinx-coroutines-core from 1.6.1-native-mt to 1.6.3-native-mt [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2691">https://github.com/facebook/flipper/issues/2691</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2691">mockito/mockito#2691</a>)</li>
<li>Bump versions.bytebuddy from 1.12.10 to 1.12.11 [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2690">https://github.com/facebook/flipper/issues/2690</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2690">mockito/mockito#2690</a>)</li>
<li>Fixes <a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2679">https://github.com/facebook/flipper/issues/2679</a> : Update Javadoc [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2689">https://github.com/facebook/flipper/issues/2689</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2689">mockito/mockito#2689</a>)</li>
<li>Bump org.eclipse.osgi from 3.17.200 to 3.18.0 [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2688">https://github.com/facebook/flipper/issues/2688</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2688">mockito/mockito#2688</a>)</li>
<li>RETURNS_SELF: Avoids returning mock when mock type is assignable to method return type, but method return type is Object. [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2687">https://github.com/facebook/flipper/issues/2687</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2687">mockito/mockito#2687</a>)</li>
<li>RETURNS_SELF breaks methods with generic return type [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2686">https://github.com/facebook/flipper/issues/2686</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2686">mockito/mockito#2686</a>)</li>
<li>Fix <a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2616">https://github.com/facebook/flipper/issues/2616</a> wrong stub for nested static [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2685">https://github.com/facebook/flipper/issues/2685</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2685">mockito/mockito#2685</a>)</li>
<li>Bump com.diffplug.spotless from 6.7.0 to 6.7.2 [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2684">https://github.com/facebook/flipper/issues/2684</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2684">mockito/mockito#2684</a>)</li>
<li>Avoids starting mocks &quot;half-way&quot; if a superclass constructor is mocked but an unmocked subclass is initiated. [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2682">https://github.com/facebook/flipper/issues/2682</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2682">mockito/mockito#2682</a>)</li>
<li>Fix typo [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2681">https://github.com/facebook/flipper/issues/2681</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2681">mockito/mockito#2681</a>)</li>
<li>Update javadoc of <code>Strictness.STRICT_STUBS</code> [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2679">https://github.com/facebook/flipper/issues/2679</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2679">mockito/mockito#2679</a>)</li>
<li>Bump kotlinVersion from 1.6.21 to 1.7.0 [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2677">https://github.com/facebook/flipper/issues/2677</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2677">mockito/mockito#2677</a>)</li>
<li>Bump biz.aQute.bnd.builder from 6.3.0 to 6.3.1 [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2675">https://github.com/facebook/flipper/issues/2675</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2675">mockito/mockito#2675</a>)</li>
<li>Bump biz.aQute.bnd.gradle from 6.3.0 to 6.3.1 [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2674">https://github.com/facebook/flipper/issues/2674</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2674">mockito/mockito#2674</a>)</li>
<li>Bump com.diffplug.spotless from 6.6.1 to 6.7.0 [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2672">https://github.com/facebook/flipper/issues/2672</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2672">mockito/mockito#2672</a>)</li>
<li>update CONTRIBUTING.md - stackoverflow [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2671">https://github.com/facebook/flipper/issues/2671</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2671">mockito/mockito#2671</a>)</li>
<li>stackoverflow.com is a non-actionable text, to be replaced with a hyperlink [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2670">https://github.com/facebook/flipper/issues/2670</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2670">mockito/mockito#2670</a>)</li>
<li>Fix typos [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2669">https://github.com/facebook/flipper/issues/2669</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2669">mockito/mockito#2669</a>)</li>
<li>Bump biz.aQute.bnd.gradle from 6.2.0 to 6.3.0 [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2666">https://github.com/facebook/flipper/issues/2666</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2666">mockito/mockito#2666</a>)</li>
<li>Bump biz.aQute.bnd.builder from 6.2.0 to 6.3.0 [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2665">https://github.com/facebook/flipper/issues/2665</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2665">mockito/mockito#2665</a>)</li>
<li>Improve Varargs handling in AdditionalAnswers [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2664">https://github.com/facebook/flipper/issues/2664</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2664">mockito/mockito#2664</a>)</li>
<li>Bump appcompat from 1.4.1 to 1.4.2 [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2663">https://github.com/facebook/flipper/issues/2663</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2663">mockito/mockito#2663</a>)</li>
<li>Varargs methods cause <code>ClassCastException</code> in <code>AnswerFunctionalInterfaces</code> [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2644">https://github.com/facebook/flipper/issues/2644</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2644">mockito/mockito#2644</a>)</li>
<li>Mock static class seems records wrong invocations if called nested method throws exception [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2616">https://github.com/facebook/flipper/issues/2616</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2616">mockito/mockito#2616</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="70c1fe9f37"><code>70c1fe9</code></a> Bump com.diffplug.spotless from 6.9.0 to 6.9.1 (<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2725">https://github.com/facebook/flipper/issues/2725</a>)</li>
<li><a href="95b43e5010"><code>95b43e5</code></a> Bump versions.bytebuddy from 1.12.12 to 1.12.13 (<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2719">https://github.com/facebook/flipper/issues/2719</a>)</li>
<li><a href="b4d8f5aa36"><code>b4d8f5a</code></a> Fix Javadoc for Mockito. (<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2718">https://github.com/facebook/flipper/issues/2718</a>)</li>
<li><a href="507ac8770d"><code>507ac87</code></a> Bump com.diffplug.spotless from 6.8.0 to 6.9.0 (<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2717">https://github.com/facebook/flipper/issues/2717</a>)</li>
<li><a href="6e9c5facf0"><code>6e9c5fa</code></a> Fix typo in comment of InternalRunner.java (<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2715">https://github.com/facebook/flipper/issues/2715</a>)</li>
<li><a href="2bcc19a668"><code>2bcc19a</code></a> Bump junit-platform-launcher from 1.8.2 to 1.9.0 (<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2713">https://github.com/facebook/flipper/issues/2713</a>)</li>
<li><a href="98a0a0bddd"><code>98a0a0b</code></a> Bump versions.junitJupiter from 5.8.2 to 5.9.0 (<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2712">https://github.com/facebook/flipper/issues/2712</a>)</li>
<li><a href="de63c24352"><code>de63c24</code></a> Bump groovy from 3.0.11 to 3.0.12 (<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2711">https://github.com/facebook/flipper/issues/2711</a>)</li>
<li><a href="ce8f617574"><code>ce8f617</code></a> Bump shipkit-auto-version from 1.2.0 to 1.2.1 (<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2709">https://github.com/facebook/flipper/issues/2709</a>)</li>
<li><a href="9bc76015b6"><code>9bc7601</code></a> Bump kotlinVersion from 1.7.0 to 1.7.10 (<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2705">https://github.com/facebook/flipper/issues/2705</a>)</li>
<li>Additional commits viewable in <a href="https://github.com/mockito/mockito/compare/v4.6.1...v4.7.0">compare view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.mockito:mockito-core&package-manager=gradle&previous-version=4.6.1&new-version=4.7.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

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

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

 ---

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

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

</details>

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

Reviewed By: passy

Differential Revision: D38781335

Pulled By: mweststrate

fbshipit-source-id: c94e5c6229c18476f0eacece525c645774bd53da
2022-08-17 05:44:23 -07:00
dependabot[bot]
d809a6044c Bump de.undercouch.download from 5.1.0 to 5.1.1 (#4003)
Summary:
Bumps [de.undercouch.download](https://github.com/michel-kraemer/gradle-download-task) from 5.1.0 to 5.1.1.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/michel-kraemer/gradle-download-task/releases">de.undercouch.download's releases</a>.</em></p>
<blockquote>
<h2>5.1.1</h2>
<p>Bug fixes:</p>
<ul>
<li>Correctly update cached sources</li>
</ul>
<p>Maintenance:</p>
<ul>
<li>Add integration tests for Gradle 7.5 and 7.5.1</li>
<li>Update dependencies</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="b15b91611b"><code>b15b916</code></a> Bump up version number to 5.1.1</li>
<li><a href="7b8db980c3"><code>7b8db98</code></a> Update Gradle to 7.5.1</li>
<li><a href="2776b2407b"><code>2776b24</code></a> Add integration tests for Gradle 7.5 and 7.5.1</li>
<li><a href="f466c5ba23"><code>f466c5b</code></a> Correctly update cached sources</li>
<li><a href="cf229dc9d5"><code>cf229dc</code></a> Update dependencies</li>
<li><a href="515a9f6a54"><code>515a9f6</code></a> Update dependencies</li>
<li><a href="751d4252ef"><code>751d425</code></a> Update dependencies</li>
<li><a href="5216807616"><code>5216807</code></a> Add issue templates</li>
<li><a href="b56eb52efe"><code>b56eb52</code></a> Fix regex</li>
<li><a href="d785e97dda"><code>d785e97</code></a> Fix regex</li>
<li>Additional commits viewable in <a href="https://github.com/michel-kraemer/gradle-download-task/compare/5.1.0...5.1.1">compare view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=de.undercouch.download&package-manager=gradle&previous-version=5.1.0&new-version=5.1.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/4003

Reviewed By: passy

Differential Revision: D38781339

Pulled By: mweststrate

fbshipit-source-id: 9300ac60ef4c2993fef1a2343b8c4ecf6d6d05da
2022-08-17 05:26:05 -07:00
dependabot[bot]
1a8ddac379 Bump protobuf-java from 3.20.1 to 3.21.4 (#3957)
Summary:
Bumps [protobuf-java](https://github.com/protocolbuffers/protobuf) from 3.20.1 to 3.21.4.
<details>
<summary>Commits</summary>
<ul>
<li><a href="c9869dc780"><code>c9869dc</code></a> Updating version.json and repo version numbers to: 21.4</li>
<li><a href="c2548258b9"><code>c254825</code></a> Reduce the required alignment of ArenaString from 8 to 4 (<a href="https://github-redirect.dependabot.com/protocolbuffers/protobuf/issues/10298">#10298</a>)</li>
<li><a href="ddb21b2dff"><code>ddb21b2</code></a> Update version.json to: 21.4-dev (<a href="https://github-redirect.dependabot.com/protocolbuffers/protobuf/issues/10299">#10299</a>)</li>
<li><a href="4e7c56cf43"><code>4e7c56c</code></a> Update developer username in package.xml (<a href="https://github-redirect.dependabot.com/protocolbuffers/protobuf/issues/10297">#10297</a>)</li>
<li><a href="e7835368be"><code>e783536</code></a> Update the release date in package.xml (<a href="https://github-redirect.dependabot.com/protocolbuffers/protobuf/issues/10295">#10295</a>)</li>
<li><a href="4d2d935f6c"><code>4d2d935</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/protocolbuffers/protobuf/issues/10289">#10289</a> from protocolbuffers/21.x-202207202258</li>
<li><a href="b1eb1260fc"><code>b1eb126</code></a> Updating version.json and repo version numbers to: 21.3</li>
<li><a href="00253761b2"><code>0025376</code></a> Upgrade upb and update CHANGES.txt (<a href="https://github-redirect.dependabot.com/protocolbuffers/protobuf/issues/10286">#10286</a>)</li>
<li><a href="c8b4ef27a0"><code>c8b4ef2</code></a> [Bazel] Add back a filegroup for :well_known_protos (<a href="https://github-redirect.dependabot.com/protocolbuffers/protobuf/issues/10279">#10279</a>)</li>
<li><a href="f049e5f029"><code>f049e5f</code></a> Update version.json to: 21.3-dev (<a href="https://github-redirect.dependabot.com/protocolbuffers/protobuf/issues/10275">#10275</a>)</li>
<li>Additional commits viewable in <a href="https://github.com/protocolbuffers/protobuf/compare/v3.20.1...v3.21.4">compare view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=com.google.protobuf:protobuf-java&package-manager=gradle&previous-version=3.20.1&new-version=3.21.4)](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/3957

Reviewed By: passy

Differential Revision: D38315196

Pulled By: LukeDefeo

fbshipit-source-id: 80b2d2beb44bcbc4338ce1a8fa6270c18ce37ab8
2022-08-02 06:58:55 -07:00
dependabot[bot]
23f7e2bdee Bump soloader from 0.10.3 to 0.10.4 (#3875)
Summary:
Bumps [soloader](https://github.com/facebook/soloader) from 0.10.3 to 0.10.4.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/facebook/soloader/releases">soloader's releases</a>.</em></p>
<blockquote>
<h2>v0.10.4</h2>
<p><strong>Feature</strong></p>
<p>Support pre-computing the dependency</p>
<p><strong>Fixes</strong></p>
<p>Wrongly loaded directApkLdPath(<a href="https://github-redirect.dependabot.com/facebook/soloader/issues/104">https://github.com/facebook/flipper/issues/104</a>)
SoLoader causes crashes on migration to an Android 12 device(<a href="https://github-redirect.dependabot.com/facebook/soloader/issues/100">https://github.com/facebook/flipper/issues/100</a> <a href="https://github-redirect.dependabot.com/facebook/soloader/issues/88">https://github.com/facebook/flipper/issues/88</a> )
Fix race condition in SoLoader#init(<a href="https://github-redirect.dependabot.com/facebook/soloader/issues/99">https://github.com/facebook/flipper/issues/99</a> )</p>
<p><strong>Full Changelog</strong>: <a href="https://github.com/facebook/SoLoader/compare/v0.10.3...v0.10.4">https://github.com/facebook/SoLoader/compare/v0.10.3...v0.10.4</a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="884e63157b"><code>884e631</code></a> Bump soloader to v0.10.4</li>
<li><a href="90084463c5"><code>9008446</code></a> Support multiple direct APK soSources</li>
<li><a href="b28033f71c"><code>b28033f</code></a> Fix the crash after App restored via D2 (68a2cfaffa)D or could backup on Android 12</li>
<li><a href="56b397da9e"><code>56b397d</code></a> Adding a getter to the loadedLibraries collection size</li>
<li><a href="0089954898"><code>0089954</code></a> apply import merging for . (1 of 1)</li>
<li><a href="3b241005a2"><code>3b24100</code></a> Only initialize soloader once</li>
<li><a href="000d1299b8"><code>000d129</code></a> Close ZipFile after reading native deps file</li>
<li><a href="05322e3b52"><code>05322e3</code></a> Fix race condition in <code>SoLoader#init</code>. (<a href="https://github-redirect.dependabot.com/facebook/soloader/issues/99">https://github.com/facebook/flipper/issues/99</a>)</li>
<li><a href="efaf4679ba"><code>efaf467</code></a> Support reading native deps file directly from APK</li>
<li><a href="4c0a257879"><code>4c0a257</code></a> Add library count to native_deps file</li>
<li>Additional commits viewable in <a href="https://github.com/facebook/soloader/compare/v0.10.3...v0.10.4">compare view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=com.facebook.soloader:soloader&package-manager=gradle&previous-version=0.10.3&new-version=0.10.4)](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/3875

Reviewed By: mweststrate

Differential Revision: D37683255

Pulled By: passy

fbshipit-source-id: da7f1f710ec858535782a69f592ff2e5a313bae7
2022-07-07 06:24:00 -07:00
dependabot[bot]
0dd3ef2a71 Bump mockito-core from 4.5.1 to 4.6.1 (#3793)
Summary:
Bumps [mockito-core](https://github.com/mockito/mockito) from 4.5.1 to 4.6.1.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/mockito/mockito/releases">mockito-core's releases</a>.</em></p>
<blockquote>
<h2>v4.6.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>4.6.1</h4>
<ul>
<li>2022-06-02 - <a href="https://github.com/mockito/mockito/compare/v4.6.0...v4.6.1">6 commit(s)</a> by Andy Coates, Chen Ni, dependabot[bot]</li>
<li>Bump material from 1.6.0 to 1.6.1 [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2662">https://github.com/facebook/flipper/issues/2662</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2662">mockito/mockito#2662</a>)</li>
<li>Bump core-ktx from 1.7.0 to 1.8.0 [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2661">https://github.com/facebook/flipper/issues/2661</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2661">mockito/mockito#2661</a>)</li>
<li>Bump groovy from 3.0.10 to 3.0.11 [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2660">https://github.com/facebook/flipper/issues/2660</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2660">mockito/mockito#2660</a>)</li>
<li>Fix for Issue2656 [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2659">https://github.com/facebook/flipper/issues/2659</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2659">mockito/mockito#2659</a>)</li>
<li>Bump assertj-core from 3.22.0 to 3.23.1 [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2658">https://github.com/facebook/flipper/issues/2658</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2658">mockito/mockito#2658</a>)</li>
<li>Regression? Strictness set in <code>MockitoSettings</code> ignored after upgrade from 4.5.1 to 4.6.0 [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2656">https://github.com/facebook/flipper/issues/2656</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2656">mockito/mockito#2656</a>)</li>
<li>Fix typo [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2655">https://github.com/facebook/flipper/issues/2655</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2655">mockito/mockito#2655</a>)</li>
</ul>
<h2>v4.6.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>4.6.0</h4>
<ul>
<li>2022-05-27 - <a href="https://github.com/mockito/mockito/compare/v4.5.1...v4.6.0">14 commit(s)</a> by Hervé Boutemy, K. Siva Prasad Reddy, Rafael Winterhalter, dependabot[bot]</li>
<li>Bump shipkit-changelog from 1.1.15 to 1.2.0 [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2654">https://github.com/facebook/flipper/issues/2654</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2654">mockito/mockito#2654</a>)</li>
<li>Bump versions.errorprone from 2.13.1 to 2.14.0 [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2653">https://github.com/facebook/flipper/issues/2653</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2653">mockito/mockito#2653</a>)</li>
<li>Bump shipkit-auto-version from 1.1.20 to 1.2.0 [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2651">https://github.com/facebook/flipper/issues/2651</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2651">mockito/mockito#2651</a>)</li>
<li>Fixes <a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2648">https://github.com/facebook/flipper/issues/2648</a> : Add support for customising strictness via <a href="https://github.com/Mock"><code>@​Mock</code></a> annotation and MockSettings [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2650">https://github.com/facebook/flipper/issues/2650</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2650">mockito/mockito#2650</a>)</li>
<li>Any way to enable Strict Stubbing when using Mockito.mock() without using <a href="https://github.com/Mock"><code>@​Mock</code></a>? [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2648">https://github.com/facebook/flipper/issues/2648</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2648">mockito/mockito#2648</a>)</li>
<li>Reintroduce inheriting type annotations from interfaces if only one interface is mocked, including additional interfaces. [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2645">https://github.com/facebook/flipper/issues/2645</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2645">mockito/mockito#2645</a>)</li>
<li>Bump com.diffplug.spotless from 6.6.0 to 6.6.1 [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2643">https://github.com/facebook/flipper/issues/2643</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2643">mockito/mockito#2643</a>)</li>
<li>fix Reproducible Build issue [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2642">https://github.com/facebook/flipper/issues/2642</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2642">mockito/mockito#2642</a>)</li>
<li>Bump com.diffplug.spotless from 6.5.2 to 6.6.0 [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2641">https://github.com/facebook/flipper/issues/2641</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2641">mockito/mockito#2641</a>)</li>
<li>Mockito mock of interfaces lost annotation information [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2640">https://github.com/facebook/flipper/issues/2640</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2640">mockito/mockito#2640</a>)</li>
<li>Bump material from 1.5.0 to 1.6.0 [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2637">https://github.com/facebook/flipper/issues/2637</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2637">mockito/mockito#2637</a>)</li>
<li>Bump com.diffplug.spotless from 6.5.1 to 6.5.2 [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2636">https://github.com/facebook/flipper/issues/2636</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2636">mockito/mockito#2636</a>)</li>
<li>Bump versions.bytebuddy from 1.12.9 to 1.12.10 [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2635">https://github.com/facebook/flipper/issues/2635</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2635">mockito/mockito#2635</a>)</li>
<li>Bump com.diffplug.spotless from 6.5.0 to 6.5.1 [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2632">https://github.com/facebook/flipper/issues/2632</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2632">mockito/mockito#2632</a>)</li>
<li>Bump com.diffplug.spotless from 6.4.2 to 6.5.0 [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2631">https://github.com/facebook/flipper/issues/2631</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2631">mockito/mockito#2631</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="ff98622a8f"><code>ff98622</code></a> Restore behavior for mocks configured without strictness (<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2659">https://github.com/facebook/flipper/issues/2659</a>)</li>
<li><a href="1fbef57f8a"><code>1fbef57</code></a> Bump groovy from 3.0.10 to 3.0.11 (<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2660">https://github.com/facebook/flipper/issues/2660</a>)</li>
<li><a href="c47c7ecedd"><code>c47c7ec</code></a> Bump core-ktx from 1.7.0 to 1.8.0 (<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2661">https://github.com/facebook/flipper/issues/2661</a>)</li>
<li><a href="2bbf7963b1"><code>2bbf796</code></a> Bump material from 1.6.0 to 1.6.1 (<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2662">https://github.com/facebook/flipper/issues/2662</a>)</li>
<li><a href="4f41700cfb"><code>4f41700</code></a> Bump assertj-core from 3.22.0 to 3.23.1 (<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2658">https://github.com/facebook/flipper/issues/2658</a>)</li>
<li><a href="e5a06c5dba"><code>e5a06c5</code></a> Fix typo (<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2655">https://github.com/facebook/flipper/issues/2655</a>)</li>
<li><a href="93bba1171c"><code>93bba11</code></a> Bump shipkit-changelog from 1.1.15 to 1.2.0 (<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2654">https://github.com/facebook/flipper/issues/2654</a>)</li>
<li><a href="70cf2d2f48"><code>70cf2d2</code></a> Add support for customizing strictness via <code>Mock</code> annotation and `MockSettin...</li>
<li><a href="6ce278b473"><code>6ce278b</code></a> Bump versions.errorprone from 2.13.1 to 2.14.0 (<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2653">https://github.com/facebook/flipper/issues/2653</a>)</li>
<li><a href="7d2e4cce07"><code>7d2e4cc</code></a> Bump shipkit-auto-version from 1.1.20 to 1.2.0 (<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2651">https://github.com/facebook/flipper/issues/2651</a>)</li>
<li>Additional commits viewable in <a href="https://github.com/mockito/mockito/compare/v4.5.1...v4.6.1">compare view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.mockito:mockito-core&package-manager=gradle&previous-version=4.5.1&new-version=4.6.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/3793

Reviewed By: lawrencelomax

Differential Revision: D37070903

Pulled By: passy

fbshipit-source-id: 5a0ad5cf1e64e69ee1be2c0b6b902bcdc8f2a568
2022-06-13 08:41:02 -07:00
dependabot[bot]
7965b130ae Bump constraintlayout from 2.1.2 to 2.1.4 (#3748)
Summary:
Bumps [constraintlayout](https://github.com/androidx/constraintlayout) from 2.1.2 to 2.1.4.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/androidx/constraintlayout/releases">constraintlayout's releases</a>.</em></p>
<blockquote>
<h2>2.1.3</h2>
<p>Point release of the constraintlayout library.</p>
<p>ConstraintLayout</p>
<ul>
<li>Add getSceneString on ConstraintLayout which gets a json formatted dump of the layout and constraints</li>
<li>Add attribute to GuideLine guidelineuseRTL to enable / disable if guideline is using RTL</li>
</ul>
<p>ConstraintLayout Compose</p>
<ul>
<li>add support for Margin in barrier <code>id: {type: 'barrier', direction: 'end' , contains: ['id1', 'id2'], margin: -12}</code></li>
<li>add json support for vbias/hbias  <code>id: { centerVertically: 'parent',  vBias: 0.45 }</code></li>
<li>improve json min/max support <code> width: { value: 'wrap', max: 300, min:20 },</code></li>
<li>mprove chain in dsl <code>val chain1 = createHorizontalChain(box1, box2, chainStyle = ChainStyle.Spread)</code></li>
<li>add DSL for goneMargin , Reset dimensions and transforms</li>
<li>add bias <code>centerHorizontallyTo(parent, bias = 0.2f)</code></li>
</ul>
<p>MotionLayout Compose</p>
<ul>
<li>Make Compose MotionLayout <a href="https://github.com/ExperimentalMotionApi"><code>@​ExperimentalMotionApi</code></a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a href="https://github.com/androidx/constraintlayout/commits">compare view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=androidx.constraintlayout:constraintlayout&package-manager=gradle&previous-version=2.1.2&new-version=2.1.4)](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/3748

Reviewed By: lawrencelomax

Differential Revision: D37070948

Pulled By: passy

fbshipit-source-id: 4cc9389149490e85bc9aa0cbcb4b386072775010
2022-06-13 08:33:02 -07:00
dependabot[bot]
d54944346c Bump gradle-maven-publish-plugin from 0.19.0 to 0.20.0 (#3795)
Summary:
Bumps [gradle-maven-publish-plugin](https://github.com/vanniktech/gradle-maven-publish-plugin) from 0.19.0 to 0.20.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/vanniktech/gradle-maven-publish-plugin/releases">gradle-maven-publish-plugin's releases</a>.</em></p>
<blockquote>
<h2>0.20.0</h2>
<p><a href="https://github.com/vanniktech/gradle-maven-publish-plugin/blob/master/CHANGELOG.md#version-0200-2022-06-02">Changelog</a></p>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/vanniktech/gradle-maven-publish-plugin/blob/master/CHANGELOG.md">gradle-maven-publish-plugin's changelog</a>.</em></p>
<blockquote>
<h2>Version 0.20.0 <em>(2022-06-02)</em></h2>
<p><strong>Upcoming behavior change</strong></p>
<p>In the next release after this the <code>com.vanniktech.maven.publish</code> will stop adding Maven Central (Sonatype OSS) as a
publishing target and will not enable GPG signing by default. If you are curretly relying on this behavior the plugin
will print a warning during configuration phase. To continue publishing to maven central and signing artifacts either
add this to your build files:</p>
<pre lang="gradle"><code>mavenPublishing {
  publishToMavenCentral() // use publishToMavenCentral(&quot;S01&quot;) for publishing through s01.oss.sonatype.org
  enableReleaseSigning()
}
</code></pre>
<p>or the following to your <code>gradle.properties</code>:</p>
<pre lang="gradle"><code>SONATYPE_HOST=DEFAULT
# SONATYPE_HOST=S01 for publishing through s01.oss.sonatype.org
RELEASE_SIGNING_ENABLED=true
</code></pre>
<p>The base plugin is unaffected by these changes because it already has this behavior.</p>
<p><strong>Deprecation</strong></p>
<p>The old <code>mavenPublish</code> extension has been deprecated.</p>
<p>If you were using it to set <code>sonatypeHost</code> to <code>S01</code> use</p>
<pre lang="gradle"><code>mavenPublishing {
  publishToMavenCentral(&quot;S01&quot;)
}
</code></pre>
<p>instead or add <code>SONATYPE_HOST=S01</code> to your gradle.properties.</p>
<p>If <code>sonatypeHost</code> was used to disable adding Maven Central as a publishing target add <code>SONATYPE_HOST=</code> until 0.21.0 is out and this becomes the default behavior.</p>
<p>If you set <code>releaseSigningEnabled</code> to false add <code>RELEASE_SIGNING_ENABLED=false</code> to your gradle.properties until 0.21.0 is out and this becomes the default behavior.</p>
<p><strong>New</strong></p>
<p>Added support to set the following pom values through properties (thanks to <a href="https://github.com/jaredsburrows"><code>@​jaredsburrows</code></a> for the contribution)</p>
<ul>
<li><code>POM_ISSUE_SYSTEM</code> sets <code>issueManagement.system</code></li>
<li><code>POM_ISSUE_URL</code> sets <code>issueManagement.url</code></li>
<li><code>POM_DEVELOPER_EMAIL</code> sets <code>developer.email</code></li>
</ul>
<p><strong>Fixed</strong></p>

</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="300595008c"><code>3005950</code></a> Prepare for release 0.20.0.</li>
<li><a href="643bea069f"><code>643bea0</code></a> update changelog for 0.20.0 (<a href="https://github-redirect.dependabot.com/vanniktech/gradle-maven-publish-plugin/issues/352">https://github.com/facebook/flipper/issues/352</a>)</li>
<li><a href="582f0d4fb9"><code>582f0d4</code></a> fix Kotlin MPP project not being configured when Android plugin is present (#...</li>
<li><a href="399b0f9b23"><code>399b0f9</code></a> fix legacy Android setup in mpp projects (<a href="https://github-redirect.dependabot.com/vanniktech/gradle-maven-publish-plugin/issues/350">https://github.com/facebook/flipper/issues/350</a>)</li>
<li><a href="c8dd40ce5a"><code>c8dd40c</code></a> deprecate old mavenPublish extension (<a href="https://github-redirect.dependabot.com/vanniktech/gradle-maven-publish-plugin/issues/340">https://github.com/facebook/flipper/issues/340</a>)</li>
<li><a href="8e1f12d659"><code>8e1f12d</code></a> fix error message when no repo is found (<a href="https://github-redirect.dependabot.com/vanniktech/gradle-maven-publish-plugin/issues/337">https://github.com/facebook/flipper/issues/337</a>)</li>
<li><a href="6134aa06ef"><code>6134aa0</code></a> Bump actions/setup-java from 2 to 3 (<a href="https://github-redirect.dependabot.com/vanniktech/gradle-maven-publish-plugin/issues/348">https://github.com/facebook/flipper/issues/348</a>)</li>
<li><a href="e6fee7ceba"><code>e6fee7c</code></a> Bump actions/checkout from 2 to 3 (<a href="https://github-redirect.dependabot.com/vanniktech/gradle-maven-publish-plugin/issues/349">https://github.com/facebook/flipper/issues/349</a>)</li>
<li><a href="951262297f"><code>9512622</code></a> Create dependabot.yml (<a href="https://github-redirect.dependabot.com/vanniktech/gradle-maven-publish-plugin/issues/347">https://github.com/facebook/flipper/issues/347</a>)</li>
<li><a href="d03e6e586b"><code>d03e6e5</code></a> Support more POM properties (<a href="https://github-redirect.dependabot.com/vanniktech/gradle-maven-publish-plugin/issues/345">https://github.com/facebook/flipper/issues/345</a>)</li>
<li>Additional commits viewable in <a href="https://github.com/vanniktech/gradle-maven-publish-plugin/compare/0.19.0...0.20.0">compare view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=com.vanniktech:gradle-maven-publish-plugin&package-manager=gradle&previous-version=0.19.0&new-version=0.20.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

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

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

 ---

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

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

</details>

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

Reviewed By: lawrencelomax

Differential Revision: D37070881

Pulled By: passy

fbshipit-source-id: df3df877a5dd182a289608e624099e32f687e076
2022-06-13 08:21:42 -07:00
dependabot[bot]
14b0683cf4 Bump robolectric from 4.8 to 4.8.1 (#3707)
Summary:
Bumps [robolectric](https://github.com/robolectric/robolectric) from 4.8 to 4.8.1.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/robolectric/robolectric/releases">robolectric's releases</a>.</em></p>
<blockquote>
<h2>Robolectric 4.8.1</h2>
<p>This is a minor release that fixes <a href="https://github-redirect.dependabot.com/robolectric/robolectric/issues/7286">#7286</a>, a NoClassDefError that can occur. Thanks for <a href="https://github.com/utzcoz"><code>@​utzcoz</code></a> for the fix (<a href="https://github-redirect.dependabot.com/robolectric/robolectric/issues/7284">#7284</a>).</p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="8f232f53f7"><code>8f232f5</code></a> Bump version to 4.8.1.</li>
<li><a href="99ae863371"><code>99ae863</code></a> Skip to generate shadowOf for ShadowBackdropFrameRenderer</li>
<li>See full diff in <a href="https://github.com/robolectric/robolectric/compare/robolectric-4.8...robolectric-4.8.1">compare view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.robolectric:robolectric&package-manager=gradle&previous-version=4.8&new-version=4.8.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/3707

Reviewed By: timur-valiev

Differential Revision: D36371191

Pulled By: mweststrate

fbshipit-source-id: 7628698cdfc37152d3a1e20613c0ff360f2ca30a
2022-05-23 07:29:26 -07:00
dependabot[bot]
b071cbd718 Bump de.undercouch.download from 5.0.5 to 5.1.0 (#3705)
Summary:
Bumps [de.undercouch.download](https://github.com/michel-kraemer/gradle-download-task) from 5.0.5 to 5.1.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/michel-kraemer/gradle-download-task/releases">de.undercouch.download's releases</a>.</em></p>
<blockquote>
<h2>5.1.0</h2>
<p>New features:</p>
<ul>
<li>Add possibility to enable preemptive Basic authentication (through the new <code>preemptiveAuth</code> flag)</li>
<li>Warn if server does not send <code>WWW-Authenticate</code> header in 401 response</li>
<li>Log request and response headers in debug mode</li>
</ul>
<p>Maintenance:</p>
<ul>
<li>Add integration tests for Gradle 7.4.1 and 7.4.2</li>
<li>Update dependencies</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="fece1d94af"><code>fece1d9</code></a> Bump up version number 5.1.0</li>
<li><a href="8b7c07a8e2"><code>8b7c07a</code></a> Add possibility to enable preemptive Basic authentication</li>
<li><a href="0121feeb62"><code>0121fee</code></a> Log request and response headers in debug mode</li>
<li><a href="c67e557d9f"><code>c67e557</code></a> Warn if server did not send WWW-Authenticate header</li>
<li><a href="f3a5eb500f"><code>f3a5eb5</code></a> Combined dependencies PR (<a href="https://github-redirect.dependabot.com/michel-kraemer/gradle-download-task/issues/216">https://github.com/facebook/flipper/issues/216</a>)</li>
<li><a href="7908765b41"><code>7908765</code></a> Remove unnecessary resolution strategy</li>
<li><a href="5f5efc8c24"><code>5f5efc8</code></a> Bump mockito-core from 4.4.0 to 4.5.0 (<a href="https://github-redirect.dependabot.com/michel-kraemer/gradle-download-task/issues/212">https://github.com/facebook/flipper/issues/212</a>)</li>
<li><a href="0a9806ce40"><code>0a9806c</code></a> Add integration tests for Gradle 7.4.1 and 7.4.2</li>
<li>See full diff in <a href="https://github.com/michel-kraemer/gradle-download-task/compare/5.0.5...5.1.0">compare view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=de.undercouch.download&package-manager=gradle&previous-version=5.0.5&new-version=5.1.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

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

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

 ---

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

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

</details>

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

Reviewed By: timur-valiev

Differential Revision: D36371174

Pulled By: mweststrate

fbshipit-source-id: 5933c2c27899f9ce51db35e203fae8adb8b1b34d
2022-05-13 07:43:43 -07:00
dependabot[bot]
d0ccf51af6 Bump mockito-core from 4.4.0 to 4.5.1 (#3657)
Summary:
Bumps [mockito-core](https://github.com/mockito/mockito) from 4.4.0 to 4.5.1.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/mockito/mockito/releases">mockito-core's releases</a>.</em></p>
<blockquote>
<h2>v4.5.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>4.5.1</h4>
<ul>
<li>2022-04-21 - <a href="https://github.com/mockito/mockito/compare/v4.5.0...v4.5.1">2 commit(s)</a> by Jeremy Landis, dependabot[bot]</li>
<li>Fixes <a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2623">https://github.com/facebook/flipper/issues/2623</a>: Use zulu distribution and java 11 for release GHA job [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2624">https://github.com/facebook/flipper/issues/2624</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2624">mockito/mockito#2624</a>)</li>
<li>Missing errorprone module for 4.5.0 in central as release was done with jdk 8 [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2623">https://github.com/facebook/flipper/issues/2623</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2623">mockito/mockito#2623</a>)</li>
<li>Bump kotlinVersion from 1.6.20 to 1.6.21 [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2622">https://github.com/facebook/flipper/issues/2622</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2622">mockito/mockito#2622</a>)</li>
</ul>
<h2>Missing <code>net.bytebuddy.utility.GraalImageCode</code> exception</h2>
<p>If you encounter any issues with missing ByteBuddy classes, make sure you are using ByteBuddy 1.12 or higher.</p>
<h2>v4.5.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>4.5.0</h4>
<ul>
<li>2022-04-19 - <a href="https://github.com/mockito/mockito/compare/v4.4.0...v4.5.0">15 commit(s)</a> by Andrei Silviu Dragnea, Rafael Winterhalter, Rick Ossendrijver, dependabot[bot]</li>
<li>Bump versions.errorprone from 2.13.0 to 2.13.1 [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2621">https://github.com/facebook/flipper/issues/2621</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2621">mockito/mockito#2621</a>)</li>
<li>Bump versions.errorprone from 2.12.1 to 2.13.0 [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2619">https://github.com/facebook/flipper/issues/2619</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2619">mockito/mockito#2619</a>)</li>
<li>Groovy inline [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2618">https://github.com/facebook/flipper/issues/2618</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2618">mockito/mockito#2618</a>)</li>
<li>Bump actions/setup-java from 2 to 3 [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2615">https://github.com/facebook/flipper/issues/2615</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2615">mockito/mockito#2615</a>)</li>
<li>Bump versions.bytebuddy from 1.12.8 to 1.12.9 [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2614">https://github.com/facebook/flipper/issues/2614</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2614">mockito/mockito#2614</a>)</li>
<li>Support subclass mocks on Graal VM. [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2613">https://github.com/facebook/flipper/issues/2613</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2613">mockito/mockito#2613</a>)</li>
<li>Bump com.diffplug.spotless from 6.4.1 to 6.4.2 [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2611">https://github.com/facebook/flipper/issues/2611</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2611">mockito/mockito#2611</a>)</li>
<li>Bump kotlinx-coroutines-core from 1.6.0-native-mt to 1.6.1-native-mt [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2609">https://github.com/facebook/flipper/issues/2609</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2609">mockito/mockito#2609</a>)</li>
<li>Bump versions.errorprone from 2.10.0 to 2.12.1 [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2608">https://github.com/facebook/flipper/issues/2608</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2608">mockito/mockito#2608</a>)</li>
<li>Bump kotlinVersion from 1.6.10 to 1.6.20 [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2607">https://github.com/facebook/flipper/issues/2607</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2607">mockito/mockito#2607</a>)</li>
<li>Bump com.diffplug.spotless from 6.4.0 to 6.4.1 [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2606">https://github.com/facebook/flipper/issues/2606</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2606">mockito/mockito#2606</a>)</li>
<li>Bump com.diffplug.spotless from 6.3.0 to 6.4.0 [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2605">https://github.com/facebook/flipper/issues/2605</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2605">mockito/mockito#2605</a>)</li>
<li>Bump org.eclipse.osgi from 3.17.100 to 3.17.200 [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2597">https://github.com/facebook/flipper/issues/2597</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2597">mockito/mockito#2597</a>)</li>
<li>Deprecate ListUtil and Fields classes [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2593">https://github.com/facebook/flipper/issues/2593</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2593">mockito/mockito#2593</a>)</li>
<li>mockito-errorprone seems not compatible with ErrorProne 2.11.0 [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2554">https://github.com/facebook/flipper/issues/2554</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2554">mockito/mockito#2554</a>)</li>
<li>NullPointerException from Groovy metaclass methods when using mockito-inline (but not mockito-core) [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2522">https://github.com/facebook/flipper/issues/2522</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2522">mockito/mockito#2522</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="737f0a3517"><code>737f0a3</code></a> Fixes <a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2623">https://github.com/facebook/flipper/issues/2623</a>: Use zulu distribution and java 11 for release GHA job (<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2624">https://github.com/facebook/flipper/issues/2624</a>)</li>
<li><a href="f48d794ad1"><code>f48d794</code></a> Bump kotlinVersion from 1.6.20 to 1.6.21 (<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2622">https://github.com/facebook/flipper/issues/2622</a>)</li>
<li><a href="2c0bf94609"><code>2c0bf94</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2613">https://github.com/facebook/flipper/issues/2613</a> from mockito/graal-support</li>
<li><a href="d23dc0e57a"><code>d23dc0e</code></a> Support subclass mocks on Graal VM.</li>
<li><a href="8314824b2c"><code>8314824</code></a> Bump versions.errorprone from 2.13.0 to 2.13.1 (<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2621">https://github.com/facebook/flipper/issues/2621</a>)</li>
<li><a href="20f1627828"><code>20f1627</code></a> Bump kotlinx-coroutines-core from 1.6.0-native-mt to 1.6.1-native-mt (<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2609">https://github.com/facebook/flipper/issues/2609</a>)</li>
<li><a href="d539af2d7a"><code>d539af2</code></a> Fix mockito-inline for Groovy projects (<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2618">https://github.com/facebook/flipper/issues/2618</a>)</li>
<li><a href="2947e9daf7"><code>2947e9d</code></a> Bump versions.errorprone from 2.12.1 to 2.13.0 (<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2619">https://github.com/facebook/flipper/issues/2619</a>)</li>
<li><a href="09ba42033e"><code>09ba420</code></a> Bump actions/setup-java from 2 to 3 (<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2615">https://github.com/facebook/flipper/issues/2615</a>)</li>
<li><a href="98b5ff9f4d"><code>98b5ff9</code></a> Bump versions.bytebuddy from 1.12.8 to 1.12.9 (<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2614">https://github.com/facebook/flipper/issues/2614</a>)</li>
<li>Additional commits viewable in <a href="https://github.com/mockito/mockito/compare/v4.4.0...v4.5.1">compare view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.mockito:mockito-core&package-manager=gradle&previous-version=4.4.0&new-version=4.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/3657

Reviewed By: lawrencelomax

Differential Revision: D36101609

Pulled By: passy

fbshipit-source-id: b14c363fbc46024edcb8d40b1a57f71fea1a06b4
2022-05-11 04:41:08 -07:00
dependabot[bot]
bf06202e75 Bump protobuf-java from 3.20.0 to 3.20.1 (#3656)
Summary:
Bumps [protobuf-java](https://github.com/protocolbuffers/protobuf) from 3.19.4 to 3.20.1.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/protocolbuffers/protobuf/releases">protobuf-java's releases</a>.</em></p>
<blockquote>
<h2>Protocol Buffers v3.20.1</h2>
<h1>PHP</h1>
<ul>
<li>Fix building packaged PHP extension (<a href="https://github-redirect.dependabot.com/protocolbuffers/protobuf/issues/9727">#9727</a>)</li>
<li>Fixed composer.json to only advertise compatibility with PHP 7.0+.  (<a href="https://github-redirect.dependabot.com/protocolbuffers/protobuf/issues/9819">#9819</a>)</li>
</ul>
<h1>Ruby</h1>
<ul>
<li>Disable the aarch64 build on macOS until it can be fixed. (<a href="https://github-redirect.dependabot.com/protocolbuffers/protobuf/issues/9816">#9816</a>)</li>
</ul>
<h1>Other</h1>
<ul>
<li>Fix versioning issues in 3.20.0</li>
</ul>
<h2>Protocol Buffers v3.20.1-rc1</h2>
<p>#PHP</p>
<ul>
<li>Fix building packaged PHP extension (<a href="https://github-redirect.dependabot.com/protocolbuffers/protobuf/issues/9727">#9727</a>)</li>
</ul>
<p>#Other</p>
<ul>
<li>Fix versioning issues in 3.20.0</li>
</ul>
<h2>Protocol Buffers v3.20.0</h2>
<p>2022-03-25 version 3.20.0 (C++/Java/Python/PHP/Objective-C/C#/Ruby/JavaScript)</p>
<h1>Ruby</h1>
<ul>
<li>Dropped Ruby 2.3 and 2.4 support for CI and releases. (<a href="https://github-redirect.dependabot.com/protocolbuffers/protobuf/issues/9311">#9311</a>)</li>
<li>Added Ruby 3.1 support for CI and releases (<a href="https://github-redirect.dependabot.com/protocolbuffers/protobuf/issues/9566">#9566</a>).</li>
<li>Message.decode/encode: Add recursion_limit option (<a href="https://github-redirect.dependabot.com/protocolbuffers/protobuf/issues/9218">#9218</a>/<a href="https://github-redirect.dependabot.com/protocolbuffers/protobuf/issues/9486">#9486</a>)</li>
<li>Allocate with xrealloc()/xfree() so message allocation is visible to the
Ruby GC.  In certain tests this leads to much lower memory usage due to more
frequent GC runs (<a href="https://github-redirect.dependabot.com/protocolbuffers/protobuf/issues/9586">#9586</a>).</li>
<li>Fix conversion of singleton classes in Ruby (<a href="https://github-redirect.dependabot.com/protocolbuffers/protobuf/issues/9342">#9342</a>)</li>
<li>Suppress warning for intentional circular require (<a href="https://github-redirect.dependabot.com/protocolbuffers/protobuf/issues/9556">#9556</a>)</li>
<li>JSON will now output shorter strings for double and float fields when possible
without losing precision.</li>
<li>Encoding and decoding of binary format will now work properly on big-endian
systems.</li>
<li>UTF-8 verification was fixed to properly reject surrogate code points.</li>
<li>Unknown enums for proto2 protos now properly implement proto2's behavior of
putting such values in unknown fields.</li>
</ul>
<h1>Java</h1>
<ul>
<li>Revert &quot;Standardize on Array copyOf&quot; (<a href="https://github-redirect.dependabot.com/protocolbuffers/protobuf/issues/9400">#9400</a>)</li>
<li>Resolve more java field accessor name conflicts (<a href="https://github-redirect.dependabot.com/protocolbuffers/protobuf/issues/8198">#8198</a>)</li>
<li>Don't support map fields in DynamicMessage.Builder.{getFieldBuilder,getRepeatedFieldBuilder}</li>
<li>Fix parseFrom to only throw InvalidProtocolBufferException</li>
<li>InvalidProtocolBufferException now allows arbitrary wrapped Exception types.</li>
<li>Fix bug in <code>FieldSet.Builder.mergeFrom</code></li>
<li>Flush CodedOutputStream also flushes underlying OutputStream</li>
<li>When oneof case is the same and the field type is Message, merge the
subfield. (previously it was replaced.)’</li>
<li>Add <a href="https://github.com/CheckReturnValue"><code>@​CheckReturnValue</code></a> to some protobuf types</li>
<li>Report original exceptions when parsing JSON</li>
</ul>

</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="21027a27c4"><code>21027a2</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/protocolbuffers/protobuf/issues/9832">#9832</a> from haberman/php-dist</li>
<li><a href="634a5681b8"><code>634a568</code></a> Fixed PHP release script.</li>
<li><a href="616a7ef54d"><code>616a7ef</code></a> Updated CHANGES.txt for 3.20.1 (<a href="https://github-redirect.dependabot.com/protocolbuffers/protobuf/issues/9826">#9826</a>)</li>
<li><a href="296c1fdaff"><code>296c1fd</code></a> Update protobuf version (<a href="https://github-redirect.dependabot.com/protocolbuffers/protobuf/issues/9820">#9820</a>)</li>
<li><a href="6387f95aa9"><code>6387f95</code></a> fix: move composer.json out of root to avoid confusion (<a href="https://github-redirect.dependabot.com/protocolbuffers/protobuf/issues/9819">#9819</a>)</li>
<li><a href="653de45a21"><code>653de45</code></a> Disable the aarch64 build on macOS because it is broken. (<a href="https://github-redirect.dependabot.com/protocolbuffers/protobuf/issues/9816">#9816</a>)</li>
<li><a href="acd24bcd8d"><code>acd24bc</code></a> Add disallowment of setting numpy singleton arrays and multi-dimensio… (<a href="https://github-redirect.dependabot.com/protocolbuffers/protobuf/issues/9788">#9788</a>)</li>
<li><a href="26d11fdba2"><code>26d11fd</code></a> -Dsurefire.failIfNoSpecifiedTests=false (<a href="https://github-redirect.dependabot.com/protocolbuffers/protobuf/issues/9761">#9761</a>)</li>
<li><a href="044cb7fd45"><code>044cb7f</code></a> -DfailIfNoSpecifiedTests=false (<a href="https://github-redirect.dependabot.com/protocolbuffers/protobuf/issues/9753">#9753</a>)</li>
<li><a href="7db4eca77f"><code>7db4eca</code></a> Update changelogs for 3.20.1-rc1</li>
<li>Additional commits viewable in <a href="https://github.com/protocolbuffers/protobuf/compare/v3.19.4...v3.20.1">compare view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=com.google.protobuf:protobuf-java&package-manager=gradle&previous-version=3.19.4&new-version=3.20.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/3656

Reviewed By: lblasa

Differential Revision: D36101605

Pulled By: passy

fbshipit-source-id: 4eae39aae556d2adf1654fa29fba5718140f9af6
2022-05-06 09:45:13 -07:00
dependabot[bot]
71503308f0 Bump robolectric from 4.5.1 to 4.8 (#3679)
Summary:
Bumps [robolectric](https://github.com/robolectric/robolectric) from 4.5.1 to 4.8.
<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.8 adds support for Android S V2 (API level 32). It also contains many bug fixes and API enhancements.</p>
<h2>What's Changed</h2>
<ul>
<li>Turn off Gradle's fs watching during tests by <a href="https://github.com/hoisie"><code>@​hoisie</code></a> in <a href="https://github-redirect.dependabot.com/robolectric/robolectric/pull/6849">robolectric/robolectric#6849</a></li>
<li>Remove unused resources.arsc file by <a href="https://github.com/hoisie"><code>@​hoisie</code></a> in <a href="https://github-redirect.dependabot.com/robolectric/robolectric/pull/6855">robolectric/robolectric#6855</a></li>
<li>Fix name for macOS tasks to rename and upload binary files by <a href="https://github.com/utzcoz"><code>@​utzcoz</code></a> in <a href="https://github-redirect.dependabot.com/robolectric/robolectric/pull/6856">robolectric/robolectric#6856</a></li>
<li>Shadow Build.VERSION#MEDIA_PERFORMANCE_CLASS in <a href="https://github-redirect.dependabot.com/robolectric/robolectric/pull/6836">robolectric/robolectric#6836</a></li>
<li>Support overriding Icon loading executor from Icon#loadDrawableAsync. in <a href="https://github-redirect.dependabot.com/robolectric/robolectric/pull/6828">robolectric/robolectric#6828</a></li>
<li>Update Android code search link to the public version in <a href="https://github-redirect.dependabot.com/robolectric/robolectric/pull/6850">robolectric/robolectric#6850</a></li>
<li>Remove unnecessary TimePickerDialog constructor shadow in <a href="https://github-redirect.dependabot.com/robolectric/robolectric/pull/6838">robolectric/robolectric#6838</a></li>
<li>Remove inaccessible Google issue tracker links in <a href="https://github-redirect.dependabot.com/robolectric/robolectric/pull/6854">robolectric/robolectric#6854</a></li>
<li>Use Activity's member Instrumentation in ActivityController in <a href="https://github-redirect.dependabot.com/robolectric/robolectric/pull/6860">robolectric/robolectric#6860</a></li>
<li>Fix UnsupportedOperationException if a leaked Activity.recreate is called in <a href="https://github-redirect.dependabot.com/robolectric/robolectric/pull/6862">robolectric/robolectric#6862</a></li>
<li>Add ActivityController.close that transitions Activity to destroyed state in <a href="https://github-redirect.dependabot.com/robolectric/robolectric/pull/6864">robolectric/robolectric#6864</a></li>
<li>Fix SDK version check for onPageFinished() call. It should be available for all SDK versions instead. See <a href="https://developer.android.com/reference/android/webkit/WebViewClient#onPageFinished(android.webkit.WebView,%20java.lang.String)">https://developer.android.com/reference/android/webkit/WebViewClient#onPageFinished(android.webkit.WebView,%20java.lang.String)</a> in <a href="https://github-redirect.dependabot.com/robolectric/robolectric/pull/6865">robolectric/robolectric#6865</a></li>
<li>Limit instrumentation on interfaces in <a href="https://github-redirect.dependabot.com/robolectric/robolectric/pull/6866">robolectric/robolectric#6866</a></li>
<li>Bump to version 3 of preinstrumented jars by <a href="https://github.com/hoisie"><code>@​hoisie</code></a> in <a href="https://github-redirect.dependabot.com/robolectric/robolectric/pull/6867">robolectric/robolectric#6867</a></li>
<li>Migrate ShadowAccessibilityNodeInfo to reflector in <a href="https://github-redirect.dependabot.com/robolectric/robolectric/pull/6868">robolectric/robolectric#6868</a></li>
<li>Add perf stat for applying styles in binary resources in <a href="https://github-redirect.dependabot.com/robolectric/robolectric/pull/6869">robolectric/robolectric#6869</a></li>
<li>Refine methods: getYear(), getMonthOfYear(), getDayOfMonth() and getOnDateSetListenerCallback(). in <a href="https://github-redirect.dependabot.com/robolectric/robolectric/pull/6841">robolectric/robolectric#6841</a></li>
<li>Add onConnectionEvent() to ShadowInCallService. in <a href="https://github-redirect.dependabot.com/robolectric/robolectric/pull/6870">robolectric/robolectric#6870</a></li>
<li>Fix theme native object collection in Android S in <a href="https://github-redirect.dependabot.com/robolectric/robolectric/pull/6873">robolectric/robolectric#6873</a></li>
<li>Use a self-hosted Mac M1 runner for the build_nativeruntime task by <a href="https://github.com/hoisie"><code>@​hoisie</code></a> in <a href="https://github-redirect.dependabot.com/robolectric/robolectric/pull/6871">robolectric/robolectric#6871</a></li>
<li>Use 'processResources' task instead of 'jar' task for nativeruntime by <a href="https://github.com/hoisie"><code>@​hoisie</code></a> in <a href="https://github-redirect.dependabot.com/robolectric/robolectric/pull/6874">robolectric/robolectric#6874</a></li>
<li>Remove unused Exception from test methods for dependency-on-stubs by <a href="https://github.com/utzcoz"><code>@​utzcoz</code></a> in <a href="https://github-redirect.dependabot.com/robolectric/robolectric/pull/6876">robolectric/robolectric#6876</a></li>
<li>Add solution log for unhandled PNG file by <a href="https://github.com/utzcoz"><code>@​utzcoz</code></a> in <a href="https://github-redirect.dependabot.com/robolectric/robolectric/pull/6829">robolectric/robolectric#6829</a></li>
<li>Remove instrumentedPackages workaround by <a href="https://github.com/hoisie"><code>@​hoisie</code></a> in <a href="https://github-redirect.dependabot.com/robolectric/robolectric/pull/6875">robolectric/robolectric#6875</a></li>
<li>Remove unused org.robolectric.annotation.Config imports by <a href="https://github.com/hoisie"><code>@​hoisie</code></a> in <a href="https://github-redirect.dependabot.com/robolectric/robolectric/pull/6879">robolectric/robolectric#6879</a></li>
<li>Only using AttributionSource for compile sdk 31 and above by <a href="https://github.com/utzcoz"><code>@​utzcoz</code></a> in <a href="https://github-redirect.dependabot.com/robolectric/robolectric/pull/6884">robolectric/robolectric#6884</a></li>
<li>Clear InputMethodManager.sInstance for SDK &gt; P in <a href="https://github-redirect.dependabot.com/robolectric/robolectric/pull/6880">robolectric/robolectric#6880</a></li>
<li>Adding VcnManagementService to ShadowSystemServices for VCN-related tests. in <a href="https://github-redirect.dependabot.com/robolectric/robolectric/pull/6881">robolectric/robolectric#6881</a></li>
<li>Check Window flags when selecting root view in LocalUiController. <a href="https://github-redirect.dependabot.com/robolectric/robolectric/issues/6741">#6741</a> in <a href="https://github-redirect.dependabot.com/robolectric/robolectric/pull/6745">robolectric/robolectric#6745</a></li>
<li>Cleanup of AndroidManifest Activity references. in <a href="https://github-redirect.dependabot.com/robolectric/robolectric/pull/6878">robolectric/robolectric#6878</a></li>
<li>Fix broken GitHub CI when running tests by <a href="https://github.com/hoisie"><code>@​hoisie</code></a> in <a href="https://github-redirect.dependabot.com/robolectric/robolectric/pull/6893">robolectric/robolectric#6893</a></li>
<li>Fix some lint errors in Target29CompatibilityTest by <a href="https://github.com/hoisie"><code>@​hoisie</code></a> in <a href="https://github-redirect.dependabot.com/robolectric/robolectric/pull/6891">robolectric/robolectric#6891</a></li>
<li>Avoid re-running ICU ./configure if Makefile exists by <a href="https://github.com/hoisie"><code>@​hoisie</code></a> in <a href="https://github-redirect.dependabot.com/robolectric/robolectric/pull/6889">robolectric/robolectric#6889</a></li>
<li>Remove redundant SKIP_ICU_BUILD environment variable by <a href="https://github.com/hoisie"><code>@​hoisie</code></a> in <a href="https://github-redirect.dependabot.com/robolectric/robolectric/pull/6890">robolectric/robolectric#6890</a></li>
<li>Remove unnecessary DatePickerDialog constructor shadow in <a href="https://github-redirect.dependabot.com/robolectric/robolectric/pull/6897">robolectric/robolectric#6897</a></li>
<li>Add matrix computation support to ShadowRenderNode implementations in <a href="https://github-redirect.dependabot.com/robolectric/robolectric/pull/6775">robolectric/robolectric#6775</a></li>
<li>Add support for building Robolectric's nativeruntime with gcc/g++ in <a href="https://github-redirect.dependabot.com/robolectric/robolectric/pull/6900">robolectric/robolectric#6900</a></li>
<li>Switch to Ninja for building the native runtime in <a href="https://github-redirect.dependabot.com/robolectric/robolectric/pull/6904">robolectric/robolectric#6904</a></li>
<li>Close android.database.Cursor objects in tests in <a href="https://github-redirect.dependabot.com/robolectric/robolectric/pull/6905">robolectric/robolectric#6905</a></li>
<li>Fix remaining CloseGuard warnings in Robolectric tests in <a href="https://github-redirect.dependabot.com/robolectric/robolectric/pull/6906">robolectric/robolectric#6906</a></li>
<li>
<ol>
<li>Adds <code>ShadowVibrator#addSupportedPrimitives</code> to enable in <a href="https://github-redirect.dependabot.com/robolectric/robolectric/pull/6907">robolectric/robolectric#6907</a></li>
</ol>
</li>
<li>Use real Android code for ContentProviderClient.release in <a href="https://github-redirect.dependabot.com/robolectric/robolectric/pull/6908">robolectric/robolectric#6908</a></li>
<li>Update platformStrError to work in Windows in <a href="https://github-redirect.dependabot.com/robolectric/robolectric/pull/6910">robolectric/robolectric#6910</a></li>
<li>Add setIsUniqueDeviceAttestationSupported and isUniqueDeviceAttestationSupported support to ShadowDevicePolicyManager in <a href="https://github-redirect.dependabot.com/robolectric/robolectric/pull/6909">robolectric/robolectric#6909</a></li>
<li>Add custom JNI_INCLUDE_DIRS for Windows only by <a href="https://github.com/utzcoz"><code>@​utzcoz</code></a> in <a href="https://github-redirect.dependabot.com/robolectric/robolectric/pull/6914">robolectric/robolectric#6914</a></li>
<li>Use runner.arch when calculating ICU cache keys by <a href="https://github.com/hoisie"><code>@​hoisie</code></a> in <a href="https://github-redirect.dependabot.com/robolectric/robolectric/pull/6894">robolectric/robolectric#6894</a></li>
<li>Add test ShadowPackageManagerTest#packageInstallerAndGetPackageInfo by <a href="https://github.com/utzcoz"><code>@​utzcoz</code></a> in <a href="https://github-redirect.dependabot.com/robolectric/robolectric/pull/6898">robolectric/robolectric#6898</a></li>
</ul>

</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="fd36481e8a"><code>fd36481</code></a> Bump version to 4.8.</li>
<li><a href="c27e767826"><code>c27e767</code></a> Merge branch 'google' into 'master'</li>
<li><a href="18b8fc2b15"><code>18b8fc2</code></a> Fixes <a href="https://github-redirect.dependabot.com/robolectric/robolectric/issues/7266">#7266</a> touch event disallow propagation.</li>
<li><a href="3a000a62bc"><code>3a000a6</code></a> Implement methods: ShadowBluetoothA2dp#getDynamicBufferSupport</li>
<li><a href="20bbb6998e"><code>20bbb69</code></a> Make ShadowPendingIntent implement is___ methods of PendingIntent</li>
<li><a href="fec23a57fc"><code>fec23a5</code></a> Fix a race condition causing a thread leak in BackdropFrameRenderer</li>
<li><a href="859eec94c6"><code>859eec9</code></a> Implement a shadow for Context.bindService(Intent, int, Executor, ServiceConn...</li>
<li><a href="569058402a"><code>5690584</code></a> No critical exposure</li>
<li><a href="905a8adb92"><code>905a8ad</code></a> ShadowBitmap#asShared should return an immutable Bitmap instance</li>
<li><a href="4f04e894f7"><code>4f04e89</code></a> Suppress a benign error log.</li>
<li>Additional commits viewable in <a href="https://github.com/robolectric/robolectric/compare/robolectric-4.5.1...robolectric-4.8">compare view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.robolectric:robolectric&package-manager=gradle&previous-version=4.5.1&new-version=4.8)](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/3679

Reviewed By: lblasa

Differential Revision: D36127817

Pulled By: passy

fbshipit-source-id: 08f872239d4e11da78a7fd57d1e1c6832bc1f16a
2022-05-04 04:55:29 -07:00
dependabot[bot]
ddc869ce5e Bump dokka-gradle-plugin from 1.6.20 to 1.6.21 (#3678)
Summary:
Bumps [dokka-gradle-plugin](https://github.com/Kotlin/dokka) from 1.6.20 to 1.6.21.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/Kotlin/dokka/releases">dokka-gradle-plugin's releases</a>.</em></p>
<blockquote>
<h2>1.6.21 Beta</h2>
<p>This is a bugfix release that mostly enables building documentation for multiplatform projects that utilize <code>.klib</code> libraries.</p>
<h2>Changes</h2>
<ul>
<li>Support Kotlin 1.6.21</li>
<li>Update <code>jsoup</code> dependency to avoid <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-37714">CVE-2021-37714</a> (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/issues/2448">https://github.com/facebook/flipper/issues/2448</a>)</li>
</ul>
<h2>Bugfixes</h2>
<ul>
<li>Support <code>KLIB</code> libraries for common platform, previously led to <code>ERROR CLASS</code> instead of references in documentation (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/issues/2441">https://github.com/facebook/flipper/issues/2441</a>)</li>
<li>Fixed a maven plugin build problem related to coroutines which only occurred in multi-module builds (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/issues/2461">https://github.com/facebook/flipper/issues/2461</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="b69a7d431f"><code>b69a7d4</code></a> Update documentation and examples to Dokka 1.6.21 (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/issues/2465">https://github.com/facebook/flipper/issues/2465</a>)</li>
<li><a href="981ca7fc61"><code>981ca7f</code></a> Set <code>finalizeCoroutines</code> to false for maven runner (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/issues/2461">https://github.com/facebook/flipper/issues/2461</a>)</li>
<li><a href="a7d7e07f23"><code>a7d7e07</code></a> Update Dokka version to 1.6.21</li>
<li><a href="a8c1a64285"><code>a8c1a64</code></a> Update Kotlin to 1.6.21 (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/issues/2454">https://github.com/facebook/flipper/issues/2454</a>)</li>
<li><a href="68eaffc19a"><code>68eaffc</code></a> Update Jsoup to 1.14.3 (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/issues/2448">https://github.com/facebook/flipper/issues/2448</a>)</li>
<li><a href="e0cc2adacc"><code>e0cc2ad</code></a> Support KLIB for Common platform (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/issues/2441">https://github.com/facebook/flipper/issues/2441</a>)</li>
<li><a href="d868eaba22"><code>d868eab</code></a> Use common gradle+kotlin versions across gradle integration tests (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/issues/2287">https://github.com/facebook/flipper/issues/2287</a>)</li>
<li>See full diff in <a href="https://github.com/Kotlin/dokka/compare/v1.6.20...v1.6.21">compare view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.jetbrains.dokka:dokka-gradle-plugin&package-manager=gradle&previous-version=1.6.20&new-version=1.6.21)](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/3678

Reviewed By: lblasa

Differential Revision: D36127807

Pulled By: passy

fbshipit-source-id: a4230dcafba57aa30de8a7a65ee74485ae53ec73
2022-05-04 04:39:21 -07:00
dependabot[bot]
3e58c0599e Bump de.undercouch.download from 4.1.2 to 5.0.5 (#3640)
Summary:
Bumps [de.undercouch.download](https://github.com/michel-kraemer/gradle-download-task) from 4.1.2 to 5.0.5.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/michel-kraemer/gradle-download-task/releases">de.undercouch.download's releases</a>.</em></p>
<blockquote>
<h2>5.0.5</h2>
<p>Maintenance:</p>
<ul>
<li>Publish signed artifacts to Gradle plugin portal</li>
<li>Update dependencies</li>
</ul>
<h2>5.0.4</h2>
<p>Bug fixes:</p>
<ul>
<li>Fix deadlock in <code>DownloadExtension</code> if <code>max-workers</code> equals 1 (thanks to <a href="https://github.com/beatbrot"><code>@​beatbrot</code></a> for spotting this, see <a href="https://github-redirect.dependabot.com/michel-kraemer/gradle-download-task/issues/205">https://github.com/facebook/flipper/issues/205</a>)</li>
</ul>
<p>Maintenance:</p>
<ul>
<li>Update dependencies</li>
</ul>
<h2>5.0.2</h2>
<p>Bug fixes:</p>
<ul>
<li>Fix configuration cache under Java 17</li>
</ul>
<p>Maintenance:</p>
<ul>
<li>Add integration tests for Gradle 7.4</li>
<li>Update dependencies</li>
</ul>
<h2>5.0.1</h2>
<p>Bug fixes:</p>
<ul>
<li>Fix artifact on Gradle plugin portal</li>
</ul>
<h2>5.0.0</h2>
<p>New features:</p>
<ul>
<li>Download multiple files in parallel</li>
<li>Enable concurrent execution with other tasks in the build</li>
<li>Write to disk asynchronously (and therefore in parallel to the download)</li>
<li>Display destination file name in progress message</li>
<li>Log retry attempts</li>
<li>Retry on any exception but <code>UnknownHostException</code></li>
<li>Make <code>download</code> and <code>verify</code> extensions compatible with Kotlin and Gradle 8</li>
<li>Add support for lazy evaluation of Kotlin lambdas</li>
<li>Add Kotlin examples</li>
</ul>
<p>Breaking changes:</p>
<ul>
<li>The plugin now requires Java 8 (or higher) and Gradle 5 (or higher)</li>
<li>The <code>authScheme</code> property has been removed. The plugin is now able to detect the required scheme itself.</li>
<li>Due to incompatibility with Gradle 8, the <code>download</code> and <code>verify</code> extensions now need to be called through their <code>run</code> method.</li>
<li>Further information can be found in the <a href="https://github.com/michel-kraemer/gradle-download-task#migrating-from-version-4x-to-5x">migration guide</a></li>
</ul>
<p>Maintenance:</p>
<ul>
<li>Add integration tests for all Gradle versions up to 7.3.3</li>
<li>Upgrade Gradle to 6.9.1</li>
<li>Upgrade Apache HttpClient to 5.1.2</li>
<li>Migrate to JUnit 5 and AssertJ</li>
<li>Enable jacoco for testkit tests</li>
<li>Upload junit test reports on failure</li>
<li>Use build script to apply functional tests to all Gradle versions</li>
</ul>

</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="4a682b23e7"><code>4a682b2</code></a> Fix build</li>
<li><a href="b93b25ccce"><code>b93b25c</code></a> Bump up version number 5.0.5</li>
<li><a href="7626745167"><code>7626745</code></a> Publish signed artifacts to Gradle plugin portal</li>
<li><a href="5971728301"><code>5971728</code></a> Update dependencies</li>
<li><a href="09f12cc0d3"><code>09f12cc</code></a> Update dependencies</li>
<li><a href="3ec1f8d521"><code>3ec1f8d</code></a> Bump up version number 5.0.4</li>
<li><a href="86f24a3b44"><code>86f24a3</code></a> Correctly forward exceptions</li>
<li><a href="70e68ad25c"><code>70e68ad</code></a> Bump up version number 5.0.3</li>
<li><a href="16fd4912b4"><code>16fd491</code></a> Fix deadlock in DownloadExtension if max-workers equals 1</li>
<li><a href="2fa1e89a80"><code>2fa1e89</code></a> Revert &quot;Add gradle-build-action&quot;</li>
<li>Additional commits viewable in <a href="https://github.com/michel-kraemer/gradle-download-task/compare/4.1.2...5.0.5">compare view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=de.undercouch.download&package-manager=gradle&previous-version=4.1.2&new-version=5.0.5)](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/3640

Reviewed By: passy

Differential Revision: D35893250

Pulled By: lblasa

fbshipit-source-id: 9ca6081264ad79217f01d0d5d8848074a22c8a60
2022-04-28 06:36:42 -07:00
dependabot[bot]
0e7de40263 Bump Java-WebSocket from 1.5.2 to 1.5.3 (#3623)
Summary:
Bumps [Java-WebSocket](https://github.com/TooTallNate/Java-WebSocket) from 1.5.2 to 1.5.3.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/TooTallNate/Java-WebSocket/releases">Java-WebSocket's releases</a>.</em></p>
<blockquote>
<h2>Release 1.5.3</h2>
<h4>Notable changes:</h4>
<ul>
<li><a href="https://github-redirect.dependabot.com/TooTallNate/Java-WebSocket/issues/1230">Issue 1230</a> - CONTINUOUS should be decoded depending on the first frame (<a href="https://github-redirect.dependabot.com/TooTallNate/Java-WebSocket/pull/1232">PR 1232 </a> by <a href="https://github.com/marci4"><code>@​marci4</code></a>)</li>
<li><a href="https://github-redirect.dependabot.com/TooTallNate/Java-WebSocket/issues/1203">Issue 1203</a> - Lost connection detection not working on delayed connect-Call (<a href="https://github-redirect.dependabot.com/TooTallNate/Java-WebSocket/pull/1204">PR 1204 </a> by <a href="https://github.com/marci4"><code>@​marci4</code></a>)</li>
<li><a href="https://github-redirect.dependabot.com/TooTallNate/Java-WebSocket/issues/1160">Issue 1160</a> - <code>WebSocketWorker</code> does not handle <code>Throwable</code> (<a href="https://github-redirect.dependabot.com/TooTallNate/Java-WebSocket/pull/1223">PR 1223 </a> by <a href="https://github.com/Serpion-ua"><code>@​Serpion-ua</code></a>)</li>
<li><a href="https://github-redirect.dependabot.com/TooTallNate/Java-WebSocket/pull/1227">PR 1227</a> - Correct web socket closing, by <a href="https://github.com/Serpion-ua"><code>@​Serpion-ua</code></a></li>
<li><a href="https://github-redirect.dependabot.com/TooTallNate/Java-WebSocket/pull/1223">PR 1223</a> - Issue-1160 Added java.lang.Error handling in WebSocketImpl and WebSocketServer, by <a href="https://github.com/Serpion-ua"><code>@​Serpion-ua</code></a></li>
<li><a href="https://github-redirect.dependabot.com/TooTallNate/Java-WebSocket/pull/1212">PR 1212</a> - high cpu when channel close exception fix, by <a href="https://github.com/Adeptius"><code>@​Adeptius</code></a></li>
</ul>
<p>Check out the <a href="https://github.com/TooTallNate/Java-WebSocket/blob/master/CHANGELOG.md#version-release-153-20220409">changelog</a> and the <a href="https://github.com/TooTallNate/Java-WebSocket/milestone/19?closed=1">milestone</a> for more information.</p>
<p>A special thanks to all the contributors of this release:
<a href="https://github.com/PhilipRoman"><code>@​PhilipRoman</code></a>
<a href="https://github.com/Adeptius"><code>@​Adeptius</code></a>
<a href="https://github.com/vtsykun"><code>@​vtsykun</code></a>
<a href="https://github.com/Serpion-ua"><code>@​Serpion-ua</code></a></p>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/TooTallNate/Java-WebSocket/blob/master/CHANGELOG.md">Java-WebSocket's changelog</a>.</em></p>
<blockquote>
<h2>Version Release 1.5.3 (2022/04/09)</h2>
<h4>Bugs Fixed</h4>
<ul>
<li><a href="https://github-redirect.dependabot.com/TooTallNate/Java-WebSocket/issues/1230">Issue 1230</a> - CONTINUOUS should be decoded depending on the first frame (<a href="https://github-redirect.dependabot.com/TooTallNate/Java-WebSocket/pull/1232">PR 1232 </a> by <a href="https://github.com/marci4"><code>@​marci4</code></a>)</li>
<li><a href="https://github-redirect.dependabot.com/TooTallNate/Java-WebSocket/issues/1203">Issue 1203</a> - Lost connection detection not working on delayed connect-Call (<a href="https://github-redirect.dependabot.com/TooTallNate/Java-WebSocket/pull/1204">PR 1204 </a> by <a href="https://github.com/marci4"><code>@​marci4</code></a>)</li>
<li><a href="https://github-redirect.dependabot.com/TooTallNate/Java-WebSocket/issues/1164">Issue 1164</a> - [Android &amp; Node.js Server] Problem using PerMessageDeflateExtension with custom ping/pong messages ?  (<a href="https://github-redirect.dependabot.com/TooTallNate/Java-WebSocket/pull/1165">PR 1165 </a> by <a href="https://github.com/marci4"><code>@​marci4</code></a>)</li>
<li><a href="https://github-redirect.dependabot.com/TooTallNate/Java-WebSocket/issues/1160">Issue 1160</a> - <code>WebSocketWorker</code> does not handle <code>Throwable</code> (<a href="https://github-redirect.dependabot.com/TooTallNate/Java-WebSocket/pull/1223">PR 1223 </a> by <a href="https://github.com/Serpion-ua"><code>@​Serpion-ua</code></a>)</li>
<li><a href="https://github-redirect.dependabot.com/TooTallNate/Java-WebSocket/issues/1142">Issue 1142</a> - Verifying server certificate (<a href="https://github-redirect.dependabot.com/TooTallNate/Java-WebSocket/pull/1143">PR 1143 </a> by <a href="https://github.com/marci4"><code>@​marci4</code></a>)</li>
<li><a href="https://github-redirect.dependabot.com/TooTallNate/Java-WebSocket/pull/1227">PR 1227</a> - Correct web socket closing, by <a href="https://github.com/Serpion-ua"><code>@​Serpion-ua</code></a></li>
<li><a href="https://github-redirect.dependabot.com/TooTallNate/Java-WebSocket/pull/1223">PR 1223</a> - Issue-1160 Added java.lang.Error handling in WebSocketImpl and WebSocketServer, by <a href="https://github.com/Serpion-ua"><code>@​Serpion-ua</code></a></li>
<li><a href="https://github-redirect.dependabot.com/TooTallNate/Java-WebSocket/pull/1212">PR 1212</a> - high cpu when channel close exception fix, by <a href="https://github.com/Adeptius"><code>@​Adeptius</code></a></li>
</ul>
<h4>New Features</h4>
<ul>
<li><a href="https://github-redirect.dependabot.com/TooTallNate/Java-WebSocket/pull/1185">PR 1185</a> - Added support unresolved socket addresses, by <a href="https://github.com/vtsykun"><code>@​vtsykun</code></a></li>
</ul>
<p>In this release 5 issues and 8 pull requests were closed.</p>
<p>###############################################################################</p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="03fdb9c1a7"><code>03fdb9c</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/TooTallNate/Java-WebSocket/issues/1237">https://github.com/facebook/flipper/issues/1237</a> from marci4/UpdateChangelog1.5.3</li>
<li><a href="5ff6ede889"><code>5ff6ede</code></a> Update changelog and readme</li>
<li><a href="5d840995e7"><code>5d84099</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/TooTallNate/Java-WebSocket/issues/1232">https://github.com/facebook/flipper/issues/1232</a> from marci4/Issue1230</li>
<li><a href="8f1f8e4462"><code>8f1f8e4</code></a> Fix formatting</li>
<li><a href="a4d23c3fad"><code>a4d23c3</code></a> Fixes <a href="https://github-redirect.dependabot.com/TooTallNate/Java-WebSocket/issues/1230">https://github.com/facebook/flipper/issues/1230</a> Adjust the handling of RSV1/RSV2/RSV3 in the translateSingleFrame</li>
<li><a href="2c9b09127f"><code>2c9b091</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/TooTallNate/Java-WebSocket/issues/1227">https://github.com/facebook/flipper/issues/1227</a> from Serpion-ua/correctWebSocketClosing</li>
<li><a href="d00a606d7c"><code>d00a606</code></a> Correct web socket closing: removing unnecessary web socket closing in case o...</li>
<li><a href="569884ffa9"><code>569884f</code></a> Merge branch 'master' into correctWebSocketClosing</li>
<li><a href="46ae0010b2"><code>46ae001</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/TooTallNate/Java-WebSocket/issues/1223">https://github.com/facebook/flipper/issues/1223</a> from Serpion-ua/master</li>
<li><a href="ebed7cf857"><code>ebed7cf</code></a> Correct closing web socket connections in case of fatal server stopping</li>
<li>Additional commits viewable in <a href="https://github.com/TooTallNate/Java-WebSocket/compare/v1.5.2...v1.5.3">compare view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.java-websocket:Java-WebSocket&package-manager=gradle&previous-version=1.5.2&new-version=1.5.3)](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/3623

Reviewed By: antonk52

Differential Revision: D35893326

Pulled By: lblasa

fbshipit-source-id: 29a9760510969ca13b2c931e3a9a23110448bef9
2022-04-26 02:06:48 -07:00
dependabot[bot]
02a8d7cc83 Bump protobuf-java from 3.19.4 to 3.20.0 (#3622)
Summary:
Bumps [protobuf-java](https://github.com/protocolbuffers/protobuf) from 3.19.4 to 3.20.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/protocolbuffers/protobuf/releases">protobuf-java's releases</a>.</em></p>
<blockquote>
<h2>Protocol Buffers v3.20.0</h2>
<p>2022-03-25 version 3.20.0 (C++/Java/Python/PHP/Objective-C/C#/Ruby/JavaScript)</p>
<h1>C++</h1>
<ul>
<li>Add option to use external GTest in CMake (<a href="https://github-redirect.dependabot.com/protocolbuffers/protobuf/issues/8736">#8736</a>)</li>
<li>cmake: Set correct sonames for libprotobuf-lite.so and libprotoc.so (<a href="https://github-redirect.dependabot.com/protocolbuffers/protobuf/issues/8635">#8635</a>) (<a href="https://github-redirect.dependabot.com/protocolbuffers/protobuf/issues/9529">#9529</a>)</li>
</ul>
<h1>Java</h1>
<ul>
<li>Revert &quot;Standardize on Array copyOf&quot; (<a href="https://github-redirect.dependabot.com/protocolbuffers/protobuf/issues/9400">#9400</a>)</li>
<li>Resolve more java field accessor name conflicts (<a href="https://github-redirect.dependabot.com/protocolbuffers/protobuf/issues/8198">#8198</a>)</li>
</ul>
<h1>Python</h1>
<ul>
<li>Pin multibuild scripts to get manylinux1 wheels back (<a href="https://github-redirect.dependabot.com/protocolbuffers/protobuf/issues/9216">#9216</a>)</li>
<li>Dropped support for Python &lt; 3.7 (<a href="https://github-redirect.dependabot.com/protocolbuffers/protobuf/issues/9480">#9480</a>)</li>
</ul>
<h1>PHP</h1>
<ul>
<li>fix: [PHP] add missing reserved classnames (<a href="https://github-redirect.dependabot.com/protocolbuffers/protobuf/issues/9458">#9458</a>)</li>
</ul>
<h1>Ruby</h1>
<ul>
<li>Dropped Ruby 2.3 and 2.4 support for CI and releases. (<a href="https://github-redirect.dependabot.com/protocolbuffers/protobuf/issues/9311">#9311</a>)</li>
<li>[Ruby] Message.decode/encode: Add max_recursion_depth option (<a href="https://github-redirect.dependabot.com/protocolbuffers/protobuf/issues/9218">#9218</a>)</li>
<li>Ruby: rename max_recursion_depth to recursion_limit (<a href="https://github-redirect.dependabot.com/protocolbuffers/protobuf/issues/9486">#9486</a>)</li>
<li>Fix conversion of singleton classes in Ruby (<a href="https://github-redirect.dependabot.com/protocolbuffers/protobuf/issues/9342">#9342</a>)</li>
<li>Suppress warning for intentional circular require (<a href="https://github-redirect.dependabot.com/protocolbuffers/protobuf/issues/9556">#9556</a>)</li>
<li>[Ruby] allow encode json options to be an object that responds to to_hash (<a href="https://github-redirect.dependabot.com/protocolbuffers/protobuf/issues/9513">#9513</a>)</li>
</ul>
<h1>Other</h1>
<ul>
<li>[C#] Fix trim warnings (<a href="https://github-redirect.dependabot.com/protocolbuffers/protobuf/issues/9182">#9182</a>)</li>
<li>Add protoc-gen-go-svc to options.md (<a href="https://github-redirect.dependabot.com/protocolbuffers/protobuf/issues/9280">#9280</a>)</li>
<li>Fixes NullReferenceException when accessing FieldDescriptor.IsPacked (<a href="https://github-redirect.dependabot.com/protocolbuffers/protobuf/issues/9430">#9430</a>)</li>
<li>Add ToProto() method to all C# descriptor classes (<a href="https://github-redirect.dependabot.com/protocolbuffers/protobuf/issues/9426">#9426</a>)</li>
<li>Add cmake option <code>protobuf_INSTALL</code> to not install files (<a href="https://github-redirect.dependabot.com/protocolbuffers/protobuf/issues/7123">#7123</a>)</li>
<li>[CMake] Allow custom plugin options e.g. to generate mocks (<a href="https://github-redirect.dependabot.com/protocolbuffers/protobuf/issues/9105">#9105</a>)</li>
<li>Add an option to preserve proto names in JsonFormatter (<a href="https://github-redirect.dependabot.com/protocolbuffers/protobuf/issues/6307">#6307</a>)</li>
<li>Add test scope to kotlin-test for protobuf-kotlin-lite (<a href="https://github-redirect.dependabot.com/protocolbuffers/protobuf/issues/9518">#9518</a>)</li>
<li>Add prefix_to_proto_package_mappings_path ObjC option. (<a href="https://github-redirect.dependabot.com/protocolbuffers/protobuf/issues/9498">#9498</a>)</li>
<li>[ObjC] Rename <code>proto_package_to_prefix_mappings_path</code> to <code>package_to_prefix_mappings_path</code>. (<a href="https://github-redirect.dependabot.com/protocolbuffers/protobuf/issues/9552">#9552</a>)</li>
<li>cmake: Use linker version scripts (<a href="https://github-redirect.dependabot.com/protocolbuffers/protobuf/issues/9545">#9545</a>)</li>
<li>Add a generation option to control use of forward declarations in headers. (<a href="https://github-redirect.dependabot.com/protocolbuffers/protobuf/issues/9568">#9568</a>)</li>
<li>[C#] fix parse failure for extensions with large field numbers (<a href="https://github-redirect.dependabot.com/protocolbuffers/protobuf/issues/9591">#9591</a>)</li>
</ul>
<h2>Protocol Buffers v3.20.0-rc2</h2>
<h1>Ruby</h1>
<ul>
<li>to_json will now use fewer decimal places to encode float/double in some cases, if the extra digits are not necessary for round-tripping</li>
</ul>
<h1>PHP</h1>
<ul>
<li>to_json will now use fewer decimal places to encode float/double in some cases, if the extra digits are not necessary for round-tripping</li>
</ul>
<h2>Protocol Buffers v3.20.0-rc1</h2>
<h1>Ruby</h1>

</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="bc799d78f8"><code>bc799d7</code></a> Added missing files and fixed file roles. (<a href="https://github-redirect.dependabot.com/protocolbuffers/protobuf/issues/9672">#9672</a>)</li>
<li><a href="dbb9619a9d"><code>dbb9619</code></a> Cherry-pick to get Ruby 3.1 support in protobuf 3.20.0 (<a href="https://github-redirect.dependabot.com/protocolbuffers/protobuf/issues/9657">#9657</a>)</li>
<li><a href="2099298e08"><code>2099298</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/protocolbuffers/protobuf/issues/9650">#9650</a> from esorot/php-release-fix</li>
<li><a href="523d94a445"><code>523d94a</code></a> update PHP release to not fail on existing tag</li>
<li><a href="a6133534e2"><code>a613353</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/protocolbuffers/protobuf/issues/9634">#9634</a> from esorot/3.20.x-202203152103</li>
<li><a href="ebfa0d345e"><code>ebfa0d3</code></a> Update protobuf version</li>
<li><a href="e0cec17c71"><code>e0cec17</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/protocolbuffers/protobuf/issues/9632">#9632</a> from esorot/update-python-version</li>
<li><a href="2a9f806a69"><code>2a9f806</code></a> update python to 3</li>
<li><a href="16dccd6820"><code>16dccd6</code></a> Updated Ruby to the latest upb. (<a href="https://github-redirect.dependabot.com/protocolbuffers/protobuf/issues/9589">#9589</a>) (<a href="https://github-redirect.dependabot.com/protocolbuffers/protobuf/issues/9630">#9630</a>)</li>
<li><a href="357e71679e"><code>357e716</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/protocolbuffers/protobuf/issues/9588">#9588</a> from protocolbuffers/master</li>
<li>Additional commits viewable in <a href="https://github.com/protocolbuffers/protobuf/compare/v3.19.4...v3.20.0">compare view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=com.google.protobuf:protobuf-java&package-manager=gradle&previous-version=3.19.4&new-version=3.20.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

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

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

 ---

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

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

</details>

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

Reviewed By: mweststrate

Differential Revision: D35893329

Pulled By: lblasa

fbshipit-source-id: 9f53179a02a922b1c0271fb6e23e32134fec5e6f
2022-04-25 08:56:49 -07:00
dependabot[bot]
b182caf8e4 Bump dokka-gradle-plugin from 1.6.10 to 1.6.20 (#3639)
Summary:
Bumps [dokka-gradle-plugin](https://github.com/Kotlin/dokka) from 1.6.10 to 1.6.20.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/Kotlin/dokka/releases">dokka-gradle-plugin's releases</a>.</em></p>
<blockquote>
<h2>1.6.20 Beta</h2>
<h2>Features</h2>
<ul>
<li>Introduce <code>documentedVisibilities</code> setting that allows including/excluding any visibility modifier in documentation. This is a more flexible replacement for <code>includeNonPublic</code>, which has now been deprecated (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/pull/2270">Kotlin/dokka#2270</a>)</li>
<li>Make HTML pages customizable through FreeMarker HTML templates (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/pull/2374">Kotlin/dokka#2374</a>)</li>
<li>Add global settings to JSON dokka CLI input (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/pull/2292">Kotlin/dokka#2292</a>), thanks to <a href="https://github.com/BarkingBad"><code>@​BarkingBad</code></a>!</li>
</ul>
<h2>HTML format changes</h2>
<ul>
<li>Add vertical alignment (wrapping) of signatures when 3 and more parameters are present (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/pull/2309">Kotlin/dokka#2309</a>)</li>
<li>Enhance primary constructor signature, display <code>val</code>/<code>var</code> keywords and default values (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/pull/2313">Kotlin/dokka#2313</a>)</li>
<li>Add a level of indentation to childless items in navigation tree (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/pull/2291">Kotlin/dokka#2291</a>)</li>
<li>Add horizontal margin to breadcrumbs delimiter (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/pull/2285">Kotlin/dokka#2285</a>)</li>
<li>Fixed various CSS rendering issues (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/pull/2284">Kotlin/dokka#2284</a>, <a href="https://github-redirect.dependabot.com/Kotlin/dokka/pull/2389">Kotlin/dokka#2389</a>)</li>
</ul>
<h2>Bugfixes</h2>
<ul>
<li>Fixed <code>OutOfMemoryError: Metaspace</code>-related issues for the majority of cases (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/pull/2216">Kotlin/dokka#2216</a>)</li>
<li>Fixed classpath issues for HMPP libraries (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/pull/2431">Kotlin/dokka#2431</a>)</li>
<li>Using <code>@</code> symbol within code blocks in <code>.md</code> files doesn't lead to cropped documents anymore (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/pull/2418">Kotlin/dokka#2418</a>)</li>
<li>Fixed incorrect placement of HTML head tags, which led to missing favicon in multi-module projects (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/pull/2365">Kotlin/dokka#2365</a>)</li>
<li>Fixed resolution of ultralight methods that led to flaky signature generation (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/pull/2400">Kotlin/dokka#2400</a>)</li>
<li>Coroutines dispatchers are now shut down after each module pass to avoid resource leaks (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/pull/2325">Kotlin/dokka#2325</a>)</li>
<li>Suppressed property setters are now excluded from documentation (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/pull/2220">Kotlin/dokka#2220</a>)</li>
<li>Suppressing extensions doesn't fail builds anymore (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/pull/2348">Kotlin/dokka#2348</a>), thanks to <a href="https://github.com/BarkingBad"><code>@​BarkingBad</code></a>!</li>
<li>Fixed java getter / setter name generation for kotlin-java interop, now <code>isBoolean</code> instead of <code>getBoolean</code> (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/pull/2356">Kotlin/dokka#2356</a>), thanks to <a href="https://github.com/CharlesG-Branch"><code>@​CharlesG-Branch</code></a>!</li>
<li>Fixed MathJax plugin, previously completely broken (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/pull/2342">Kotlin/dokka#2342</a>), thanks to <a href="https://github.com/wyskoj"><code>@​wyskoj</code></a>!</li>
<li>Fixed Input/Output streams to minimize resource leaks (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/pull/2312">Kotlin/dokka#2312</a>, <a href="https://github-redirect.dependabot.com/Kotlin/dokka/pull/2319">Kotlin/dokka#2319</a>)</li>
</ul>
<h2>Plugin API Changes</h2>
<ul>
<li>Add an extension point for rendering custom <a href="https://kotlinlang.org/docs/kotlin-doc.html#block-tags">documentation tags</a> (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/pull/2343">Kotlin/dokka#2343</a>)</li>
<li>Add an extension point for an external documentable provider (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/pull/2307">Kotlin/dokka#2307</a>), thanks to <a href="https://github.com/Kordyjan"><code>@​Kordyjan</code></a>!</li>
<li>Add filtering stategies extension point and fix constructors in Kotlin-as-Java (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/pull/2277">Kotlin/dokka#2277</a>), thanks to <a href="https://github.com/BarkingBad"><code>@​BarkingBad</code></a>!</li>
<li>Expose Kotlin-as-Java methods that could be used not only as part of transformers (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/pull/2351">Kotlin/dokka#2351</a>), thanks to <a href="https://github.com/BarkingBad"><code>@​BarkingBad</code></a>!</li>
<li>Refactor Ancestry Graphs (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/pull/2326">Kotlin/dokka#2326</a>), thanks to <a href="https://github.com/BarkingBad"><code>@​BarkingBad</code></a>!</li>
<li>Fixed resolving of DRIs for Enum Entries (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/pull/2305">Kotlin/dokka#2305</a>), thanks to <a href="https://github.com/BarkingBad"><code>@​BarkingBad</code></a>!</li>
</ul>
<h2>General Improvements</h2>
<ul>
<li>Collect annotations from <code>package-info.java</code> (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/pull/2331">Kotlin/dokka#2331</a>), thanks  to <a href="https://github.com/ember-rose"><code>@​ember-rose</code></a>!</li>
<li>Add support for header tags (<code>&lt;h1&gt;</code> / <code>&lt;h2&gt;</code> / <code>&lt;h3&gt;</code>) in Javadoc (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/pull/2345">Kotlin/dokka#2345</a>), thanks to <a href="https://github.com/asfalcone"><code>@​asfalcone</code></a>!</li>
<li>Add an option to merge implicit expect-actual declarations, enables merging of pages for related declarations which are not connected via <code>expect</code>-<code>actual</code> keywords (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/pull/2316">Kotlin/dokka#2316</a>)</li>
<li>Add a note about using Dokka in a precompiled script plugin (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/pull/2303">Kotlin/dokka#2303</a>), thanks to <a href="https://github.com/chkpnt"><code>@​chkpnt</code></a>!</li>
<li>Fixed wrong Groovy DSL example (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/pull/2302">Kotlin/dokka#2302</a>), thanks to <a href="https://github.com/chkpnt"><code>@​chkpnt</code></a>!</li>
<li>Various code cleanups (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/pull/2165">Kotlin/dokka#2165</a>, <a href="https://github-redirect.dependabot.com/Kotlin/dokka/pull/2360">Kotlin/dokka#2360</a>, <a href="https://github-redirect.dependabot.com/Kotlin/dokka/pull/2364">Kotlin/dokka#2364</a>, <a href="https://github-redirect.dependabot.com/Kotlin/dokka/pull/2385">Kotlin/dokka#2385</a>), thanks to <a href="https://github.com/Goooler"><code>@​Goooler</code></a>!</li>
</ul>
<h2>Known issues</h2>
<ul>
<li>Kotlin Multiplatform projects that use <code>.klib</code> libraries may experience problems. There will be a separate <code>1.6.21</code> release that will address this issue shortly.</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="bf0476ec3e"><code>bf0476e</code></a> Update documentation, examples and test references to 1.6.20 (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/issues/2440">https://github.com/facebook/flipper/issues/2440</a>)</li>
<li><a href="301b12fae7"><code>301b12f</code></a> Update version to 1.6.20 release</li>
<li><a href="92adc586b8"><code>92adc58</code></a> Fix classpath in HMPP (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/issues/2431">https://github.com/facebook/flipper/issues/2431</a>)</li>
<li><a href="34916ec2dc"><code>34916ec</code></a> Fix using <code>@</code> symbol inside code block (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/issues/2418">https://github.com/facebook/flipper/issues/2418</a>)</li>
<li><a href="5af8d0f8db"><code>5af8d0f</code></a> Update mkdocs gradle plugin to fix documentation generation (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/issues/2422">https://github.com/facebook/flipper/issues/2422</a>)</li>
<li><a href="3bb04e047e"><code>3bb04e0</code></a> Update Kotlin to 1.6.20 (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/issues/2417">https://github.com/facebook/flipper/issues/2417</a>)</li>
<li><a href="cb596b4787"><code>cb596b4</code></a> Fix type parameter annotation regression (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/issues/2388">https://github.com/facebook/flipper/issues/2388</a>) (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/issues/2410">https://github.com/facebook/flipper/issues/2410</a>)</li>
<li><a href="a20b4760c6"><code>a20b476</code></a> Update version to 1.6.20-RC</li>
<li><a href="a36b3af639"><code>a36b3af</code></a> Update Kotlin to 1.6.20-RC2 (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/issues/2407">https://github.com/facebook/flipper/issues/2407</a>)</li>
<li><a href="57133de2fe"><code>57133de</code></a> Bug resolving in ultralightmethod (<a href="https://github-redirect.dependabot.com/Kotlin/dokka/issues/2400">https://github.com/facebook/flipper/issues/2400</a>)</li>
<li>Additional commits viewable in <a href="https://github.com/Kotlin/dokka/compare/v1.6.10...v1.6.20">compare view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.jetbrains.dokka:dokka-gradle-plugin&package-manager=gradle&previous-version=1.6.10&new-version=1.6.20)](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/3639

Reviewed By: mweststrate

Differential Revision: D35893243

Pulled By: lblasa

fbshipit-source-id: 50344925929617dba5fa2db4b14234f11cd5616f
2022-04-25 06:42:33 -07:00
dependabot[bot]
e17ee320a3 Bump mockito-core from 4.3.1 to 4.4.0 (#3524)
Summary:
Bumps [mockito-core](https://github.com/mockito/mockito) from 4.3.1 to 4.4.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/mockito/mockito/releases">mockito-core's releases</a>.</em></p>
<blockquote>
<h2>v4.4.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>4.4.0</h4>
<ul>
<li>2022-03-08 - <a href="https://github.com/mockito/mockito/compare/v4.3.1...v4.4.0">16 commit(s)</a> by Andrew Kozel, Brice Dutheil, Jean-Baptiste Mille, Mirko Alicastro, dependabot[bot]</li>
<li>Bump groovy from 3.0.9 to 3.0.10 [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2586">https://github.com/facebook/flipper/issues/2586</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2586">mockito/mockito#2586</a>)</li>
<li>Bump google-java-format from 1.14.0 to 1.15.0 [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2585">https://github.com/facebook/flipper/issues/2585</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2585">mockito/mockito#2585</a>)</li>
<li>Bump actions/checkout from 2.4.0 to 3 [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2582">https://github.com/facebook/flipper/issues/2582</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2582">mockito/mockito#2582</a>)</li>
<li>Bump shipkit-auto-version from 1.1.19 to 1.1.20 [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2580">https://github.com/facebook/flipper/issues/2580</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2580">mockito/mockito#2580</a>)</li>
<li>Bump biz.aQute.bnd.builder from 6.1.0 to 6.2.0 [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2579">https://github.com/facebook/flipper/issues/2579</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2579">mockito/mockito#2579</a>)</li>
<li>Bump biz.aQute.bnd.gradle from 6.1.0 to 6.2.0 [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2578">https://github.com/facebook/flipper/issues/2578</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2578">mockito/mockito#2578</a>)</li>
<li>Adds a Google Java Format for JDK17 [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2572">https://github.com/facebook/flipper/issues/2572</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2572">mockito/mockito#2572</a>)</li>
<li>Clean up JUnit3 references [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2570">https://github.com/facebook/flipper/issues/2570</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2570">mockito/mockito#2570</a>)</li>
<li>Bump com.diffplug.spotless from 6.2.2 to 6.3.0 [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2567">https://github.com/facebook/flipper/issues/2567</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2567">mockito/mockito#2567</a>)</li>
<li>Bump google-java-format from 1.13.0 to 1.14.0 [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2565">https://github.com/facebook/flipper/issues/2565</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2565">mockito/mockito#2565</a>)</li>
<li>Bump versions.bytebuddy from 1.12.7 to 1.12.8 [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2564">https://github.com/facebook/flipper/issues/2564</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2564">mockito/mockito#2564</a>)</li>
<li>Bump com.diffplug.spotless from 6.2.1 to 6.2.2 [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2562">https://github.com/facebook/flipper/issues/2562</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2562">mockito/mockito#2562</a>)</li>
<li>Bump com.github.ben-manes.versions from 0.41.0 to 0.42.0 [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2559">https://github.com/facebook/flipper/issues/2559</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2559">mockito/mockito#2559</a>)</li>
<li>Bump com.diffplug.spotless from 6.2.0 to 6.2.1 [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2556">https://github.com/facebook/flipper/issues/2556</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2556">mockito/mockito#2556</a>)</li>
<li>Fixes <a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2548">https://github.com/facebook/flipper/issues/2548</a> : Makes InOrder able to verify static methods [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2549">https://github.com/facebook/flipper/issues/2549</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2549">mockito/mockito#2549</a>)</li>
<li>[PR open] Add feature to verify static methods calls in order [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2548">https://github.com/facebook/flipper/issues/2548</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2548">mockito/mockito#2548</a>)</li>
<li>Fixes <a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2201">https://github.com/facebook/flipper/issues/2201</a> : Fixed checking of declared exceptions. [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2547">https://github.com/facebook/flipper/issues/2547</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/pull/2547">mockito/mockito#2547</a>)</li>
<li>Calling getExceptionTypes() on concrete object that is used as interface doesn't return exception types from interface [(<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2201">https://github.com/facebook/flipper/issues/2201</a>)](<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2201">mockito/mockito#2201</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="813add00ec"><code>813add0</code></a> Bump groovy from 3.0.9 to 3.0.10 (<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2586">https://github.com/facebook/flipper/issues/2586</a>)</li>
<li><a href="b4faa4af22"><code>b4faa4a</code></a> Bump google-java-format from 1.14.0 to 1.15.0 (<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2585">https://github.com/facebook/flipper/issues/2585</a>)</li>
<li><a href="d832c630ca"><code>d832c63</code></a> Bump actions/checkout from 2.4.0 to 3 (<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2582">https://github.com/facebook/flipper/issues/2582</a>)</li>
<li><a href="fb8aedfb82"><code>fb8aedf</code></a> Bump biz.aQute.bnd.builder from 6.1.0 to 6.2.0 (<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2579">https://github.com/facebook/flipper/issues/2579</a>)</li>
<li><a href="c0fa7181c8"><code>c0fa718</code></a> Bump shipkit-auto-version from 1.1.19 to 1.1.20 (<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2580">https://github.com/facebook/flipper/issues/2580</a>)</li>
<li><a href="8882827ef3"><code>8882827</code></a> Bump biz.aQute.bnd.gradle from 6.1.0 to 6.2.0 (<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2578">https://github.com/facebook/flipper/issues/2578</a>)</li>
<li><a href="6ccc12149a"><code>6ccc121</code></a> Fix running Google Java Format on JDK17 (<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2572">https://github.com/facebook/flipper/issues/2572</a>)</li>
<li><a href="50d7e71fc9"><code>50d7e71</code></a> Clean up JUnit3 references (<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2570">https://github.com/facebook/flipper/issues/2570</a>)</li>
<li><a href="02d63565aa"><code>02d6356</code></a> Fixes <a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2548">https://github.com/facebook/flipper/issues/2548</a>: make InOrder able to verify static methods (<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2549">https://github.com/facebook/flipper/issues/2549</a>)</li>
<li><a href="e0a25cb14f"><code>e0a25cb</code></a> Bump com.diffplug.spotless from 6.2.2 to 6.3.0 (<a href="https://github-redirect.dependabot.com/mockito/mockito/issues/2567">https://github.com/facebook/flipper/issues/2567</a>)</li>
<li>Additional commits viewable in <a href="https://github.com/mockito/mockito/compare/v4.3.1...v4.4.0">compare view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.mockito:mockito-core&package-manager=gradle&previous-version=4.3.1&new-version=4.4.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

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

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

 ---

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

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

</details>

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

Reviewed By: passy

Differential Revision: D34862214

Pulled By: lblasa

fbshipit-source-id: 068747a768b2ccf1af9392d9160ea3a1c4675b8f
2022-03-14 10:46:18 -07:00
dependabot[bot]
8018b0144a Bump gradle-maven-publish-plugin from 0.18.0 to 0.19.0 (#3482)
Summary:
Bumps [gradle-maven-publish-plugin](https://github.com/vanniktech/gradle-maven-publish-plugin) from 0.18.0 to 0.19.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/vanniktech/gradle-maven-publish-plugin/releases">gradle-maven-publish-plugin's releases</a>.</em></p>
<blockquote>
<h2>0.19.0</h2>
<p><a href="https://github.com/vanniktech/gradle-maven-publish-plugin/blob/master/CHANGELOG.md#version-0190-2022-02-26">Changelog</a></p>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/vanniktech/gradle-maven-publish-plugin/blob/master/CHANGELOG.md">gradle-maven-publish-plugin's changelog</a>.</em></p>
<blockquote>
<h2>Version 0.19.0 <em>(2022-02-26)</em></h2>
<ul>
<li><strong>Behavior Change:</strong> When using version 7.1.0 or newer of the Android Gradle Plugin we will now publish all variants
of a library unless <code>androidVariantToPublish</code> was set in the DSL. This means that for example both <code>debug</code> and <code>release</code>
or all flavors.</li>
<li>Deprecated <code>androidVariantToPublish</code>. In the future the main plugin will always publish all variants of an Android
library. If you need to publish only one variant or a subset take a look at the <a href="https://github.com/vanniktech/gradle-maven-publish-plugin/blob/master/README.md#base-plugin">base plugin</a>
APIs.</li>
<li>Base plugin: Added <code>AndroidSingleVariantLibrary</code> and <code>AndroidMultiVariantLibrary</code> options that use the new AGP 7.1
APIs under the hood.</li>
<li>Base plugin: Deprecated <code>AndroidLibrary</code> option in favor of the above</li>
<li>The integration with Sonatype Nexus has been extracted into it's own artifact and is available as <code>com.vanniktech:nexus:&lt;version&gt;</code></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="c1267766d9"><code>c126776</code></a> Prepare version 0.19.0</li>
<li><a href="a91b7655b9"><code>a91b765</code></a> add AGP 7.1.2 support (<a href="https://github-redirect.dependabot.com/vanniktech/gradle-maven-publish-plugin/issues/293">https://github.com/facebook/flipper/issues/293</a>)</li>
<li><a href="6b8661bd33"><code>6b8661b</code></a> change how integration tests are run, update dependencies/build (<a href="https://github-redirect.dependabot.com/vanniktech/gradle-maven-publish-plugin/issues/327">https://github.com/facebook/flipper/issues/327</a>)</li>
<li><a href="224c2fb4d5"><code>224c2fb</code></a> Fix maven local path (<a href="https://github-redirect.dependabot.com/vanniktech/gradle-maven-publish-plugin/issues/316">https://github.com/facebook/flipper/issues/316</a>)</li>
<li><a href="6f455427ae"><code>6f45542</code></a> Fix partial(confusing) sign detail for windows (<a href="https://github-redirect.dependabot.com/vanniktech/gradle-maven-publish-plugin/issues/286">https://github.com/facebook/flipper/issues/286</a>)</li>
<li><a href="c76feb19ce"><code>c76feb1</code></a> Extract <code>nexus</code> as a separate module (<a href="https://github-redirect.dependabot.com/vanniktech/gradle-maven-publish-plugin/issues/309">https://github.com/facebook/flipper/issues/309</a>)</li>
<li><a href="42a748d1f7"><code>42a748d</code></a> Fixing variable names (group and version) in base plugin configuration in doc...</li>
<li><a href="3b0d49a9a9"><code>3b0d49a</code></a> Prepare next development version.</li>
<li>See full diff in <a href="https://github.com/vanniktech/gradle-maven-publish-plugin/compare/0.18.0...0.19.0">compare view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=com.vanniktech:gradle-maven-publish-plugin&package-manager=gradle&previous-version=0.18.0&new-version=0.19.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

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

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

 ---

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

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

</details>

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

Reviewed By: nikoant

Differential Revision: D34578848

Pulled By: passy

fbshipit-source-id: f3e0f8271b0a0d1632a105dbf798afaff467e257
2022-03-02 04:48:01 -08:00