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 "Add gradle-build-action"</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 /> [](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
This commit is contained in:
committed by
Facebook GitHub Bot
parent
c72088a137
commit
3e58c0599e
@@ -19,7 +19,7 @@ buildscript {
|
|||||||
}
|
}
|
||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
id 'de.undercouch.download' version '4.1.2'
|
id 'de.undercouch.download' version '5.0.5'
|
||||||
id 'com.github.ben-manes.versions' version '0.42.0'
|
id 'com.github.ben-manes.versions' version '0.42.0'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user