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
This commit is contained in:
dependabot[bot]
2023-02-09 03:22:18 -08:00
committed by Facebook GitHub Bot
parent 420e1df4e4
commit 0622f9d87f

View File

@@ -20,7 +20,7 @@ buildscript {
} }
plugins { plugins {
id 'de.undercouch.download' version '5.2.1' id 'de.undercouch.download' version '5.3.1'
id 'com.github.ben-manes.versions' version '0.44.0' id 'com.github.ben-manes.versions' version '0.44.0'
} }