diff --git a/build-logic-commons/build-platform/build.gradle.kts b/build-logic-commons/build-platform/build.gradle.kts index 570da06268a2e..de260f81aae7a 100644 --- a/build-logic-commons/build-platform/build.gradle.kts +++ b/build-logic-commons/build-platform/build.gradle.kts @@ -24,7 +24,7 @@ val kotlinVersion = providers.gradleProperty("buildKotlinVersion") dependencies { constraints { api("org.gradle.guides:gradle-guides-plugin:0.23") - api("org.apache.ant:ant:1.10.13") // Bump the version brought in transitively by gradle-guides-plugin + api("org.apache.ant:ant:1.10.14") // Bump the version brought in transitively by gradle-guides-plugin api("com.gradle:develocity-gradle-plugin:3.17.5") // Sync with `settings.gradle.kts` api("com.gradle.publish:plugin-publish-plugin:1.2.1") api("gradle.plugin.org.jetbrains.gradle.plugin.idea-ext:gradle-idea-ext:1.0.1") diff --git a/platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc b/platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc index 6269a1e9749d2..538cf1d8f2140 100644 --- a/platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc +++ b/platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc @@ -38,6 +38,12 @@ The previous step will help you identify potential problems by issuing deprecati [[changes_8.10]] == Upgrading from 8.9 and earlier +=== Potential breaking changes + +==== Upgrade to Ant 1.10.14 + +Ant has been updated to https://archive.apache.org/dist/ant/RELEASE-NOTES-1.10.14.html[Ant 1.10.14]. + === Deprecations [[consuming_non_consumable_variants_from_ivy_component]] @@ -1454,7 +1460,7 @@ Since the previous version was 3.0.15, the https://groovy-lang.org/changelogs/ch ==== Upgrade to Ant 1.10.13 -Ant has been updated to https://github.com/apache/ant/blob/rel/1.10.13/WHATSNEW[Ant 1.10.13]. +Ant has been updated to https://archive.apache.org/dist/ant/RELEASE-NOTES-1.10.13.html[Ant 1.10.13]. Since the previous version was 1.10.11, the https://github.com/apache/ant/blob/rel/1.10.12/WHATSNEW[1.10.12] changes are also included. diff --git a/subprojects/distributions-dependencies/build.gradle.kts b/subprojects/distributions-dependencies/build.gradle.kts index 8ea29ed08b937..15eb17f689a6d 100644 --- a/subprojects/distributions-dependencies/build.gradle.kts +++ b/subprojects/distributions-dependencies/build.gradle.kts @@ -15,7 +15,7 @@ plugins { description = "Provides a platform dependency to align all distribution versions" -val antVersion = "1.10.13" +val antVersion = "1.10.14" // Don't forget to bump versions in // subprojects/base-services/src/main/java/org/gradle/internal/classanalysis/AsmConstants.java // when upgrading ASM.