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

  • 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

  • org.jetbrains.kotlin:kotlin

    • 1.9.23: 🚧

      • Enum.values() -> Enum.entries
      • data object EndOfFile : ReadResult
      • ..<
    • 1.8.22: ✔

      • kotlin-stdlib-jdk7 and kotlin-stdlib-jdk8 -> kotlin-stdlib
      • kotlinx-android-extension
    • 1.7.20: ✔

    • 1.6.21: ✔

    • 1.6.10: ✔

      • buildList, buildSet, and buildMap
    • 1.5.31: ✔

  • Kotlin to IDE Compatibility Map

    • 1.8.2x: Flamingo (222)
    • 1.8.10: Electric Eel (221), Flamingo (222)
  • org.jetbrains.kotlinx:kotlinx-coroutines

    • 1.8.0: 🚧(Kotlin 1.9)

    • 1.7.3: ✔

    • 1.7.1: ✔(Kotlin 1.8)

      • TestCoroutineScheduler, runTest, and TestScope API are promoted to stable
    • 1.6.4: ✔

    • 1.5.2: ✔

  • org.jetbrains.kotlinx:kotlinx-collections-immutable

    • 0.3.5: ✔

Google

Third-party

Chinese