Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update tested versions #853

Merged
merged 2 commits into from
Oct 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

strategy:
matrix:
java_version: [11, 17, 21]
java_version: [11, 17, 23]
test_config_method: ["DSL", "PROPERTIES", "BASE"]

steps:
Expand Down
7 changes: 4 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
- Supports both `org.jetbrains.dokka` and `org.jetbrains.dokka-javadoc`
- If both are applied the javadoc output is published
- Removed support for the old `org.jetbrains.dokka-android` plugin
- Support custom Sonatype hosts by providing a `https` url in `SONATYPE_HOST` Gradle property
- Remove usages of deprecated Gradle API that is scheduled to be removed in Gradle 9.0
- Raised minimum supported Gradle version

Expand All @@ -17,10 +18,10 @@
- Kotlin Gradle Plugin 1.9.20

#### Compatibility tested up to
- JDK 21
- Gradle 8.10
- JDK 23
- Gradle 8.10.2
- Android Gradle Plugin 8.7.0
- Android Gradle Plugin 8.8.0-alpha09
- Android Gradle Plugin 8.8.0-alpha05
- Kotlin Gradle Plugin 2.0.20
- Kotlin Gradle Plugin 2.1.0-Beta1

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,7 @@ private fun ProjectSpec.writeGradleProperties(path: Path, options: TestOptions)
buildString {
appendLine("org.gradle.vfs.watch=false")
appendLine("kotlin.compiler.execution.strategy=in-process")
appendLine("kotlin.jvm.target.validation.mode=ignore")
appendLine("kotlin.mpp.androidSourceSetLayoutVersion1.nowarn=true")
appendLine("org.jetbrains.dokka.experimental.gradle.pluginMode=V2Enabled")
appendLine("org.jetbrains.dokka.experimental.gradle.pluginMode.noWarn=true")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ enum class AgpVersion(

// canary channel
AGP_8_8(
value = "8.8.0-alpha04",
minGradleVersion = GradleVersion.GRADLE_8_9,
value = "8.8.0-alpha05",
minGradleVersion = GradleVersion.GRADLE_8_10,
),
}

Expand All @@ -68,11 +68,12 @@ enum class GradleVersion(
// minimum supported
GRADLE_8_5(
value = "8.5",
firstUnsupportedJdkVersion = JavaVersion.VERSION_22,
),

// stable
GRADLE_8_10(
value = "8.10",
value = "8.10.2",
),
;

Expand Down