Is the dependency safe to upgrade?

Gradle

1
gradle wrapper --gradle-version 8.2.1

Disable Reformat Code before committing

Note, you need to run this command twice to upgrade both Gradle and the Gradle Wrapper itself

https://gradle.org/releases/

  • 8.10.2: 🚧

  • 8.8: ✔(Kotlin 1.9)

  • 8.2.1: ✔

  • 8.1.1: ✔

    • Configuration cache stable(requires Kotlin 1.8 and sourceCompatibility, etc.)

      1
      2
      3
      4
      5
      6
      7
      compileOptions {
      sourceCompatibility = JavaVersion.VERSION_17
      targetCompatibility = JavaVersion.VERSION_17
      }
      kotlinOptions {
      jvmTarget = JavaVersion.VERSION_17.toString()
      }
  • 8.0.2: ✔

  • 7.5.1: ✔

Kotlin

Google

Third-party

Chinese