Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
64 commits
Select commit Hold shift + click to select a range
8e9272d
Add Kotlin Dev and Maven Central Snapshots repositories
Jun 28, 2024
73cee4a
Update bump script to use 2.3.0*
BoD Sep 11, 2025
3dd3f47
Fix for 'w: -Xjvm-default is deprecated. Use -jvm-default instead.'
BoD Sep 11, 2025
b23fc70
Bump Kotlin and KSP
BoD Sep 30, 2025
26c8f68
Fix or suppress "Redundant call of conversion method"
BoD Sep 30, 2025
01c2646
Bump Kotlin and KSP
Oct 1, 2025
66d9dd0
Bump Kotlin and KSP
Oct 4, 2025
ac4a19b
Bump Kotlin and KSP
Oct 5, 2025
bc5f1db
Bump Kotlin and KSP
Oct 6, 2025
6654c5d
Bump Kotlin and KSP
Oct 7, 2025
f173ae0
Fix "Unnecessary safe call on a non-null receiver"
BoD Oct 7, 2025
82c158f
Fix "No cast needed" on generated code
BoD Oct 7, 2025
1517e66
Bump Kotlin and KSP
Oct 8, 2025
467a71d
Bump Kotlin and KSP
Oct 9, 2025
80f83cd
Bump Kotlin and KSP
Oct 10, 2025
2c2f6c0
Bump Kotlin and KSP
Oct 11, 2025
8559b95
Bump Kotlin and KSP
Oct 12, 2025
3f385de
Bump Kotlin and KSP
Oct 13, 2025
0b79900
Bump Kotlin and KSP
Oct 14, 2025
3a6cb77
Bump Kotlin and KSP
Oct 15, 2025
a33a14b
Bump Kotlin and KSP
Oct 16, 2025
fbcafe0
Bump Kotlin and KSP
Oct 17, 2025
15c793c
Bump Kotlin and KSP
Oct 18, 2025
ef1cc77
Bump Kotlin and KSP
Oct 19, 2025
cdfa61b
Bump Kotlin and KSP
Oct 21, 2025
2c5edf0
Bump Kotlin and KSP
Oct 22, 2025
c25a4ee
Bump Kotlin and KSP
Oct 23, 2025
36970c4
Bump Kotlin and KSP
Oct 24, 2025
00b504e
Bump Kotlin and KSP
Oct 28, 2025
5ac9ca8
Bump Kotlin and KSP
Oct 29, 2025
7c85faa
Bump Kotlin and KSP
Oct 30, 2025
3fc8b2a
Bump Kotlin and KSP
Oct 31, 2025
56a476c
Bump Kotlin and KSP
Nov 1, 2025
7da0490
Bump Kotlin and KSP
Nov 2, 2025
5230d23
Bump Kotlin and KSP
Nov 3, 2025
f8bacaf
Bump Kotlin and KSP
Nov 4, 2025
574c37a
Bump Kotlin and KSP
Nov 5, 2025
02ae304
Bump Kotlin and KSP
Nov 6, 2025
e477dd1
Bump Kotlin and KSP
Nov 7, 2025
f1bc35a
Use KSP snapshots and Kotlin 2.3.0 RC
BoD Nov 12, 2025
8179501
Bump Kotlin and KSP
BoD Nov 13, 2025
be0c7b3
Fix "unnecessary safe call operator" warning
BoD Nov 13, 2025
901baf7
Bump Kotlin and KSP
Nov 13, 2025
d0930fc
Bump Kotlin and KSP
Nov 14, 2025
802d814
Bump Kotlin and KSP
Nov 15, 2025
438d807
Bump Kotlin and KSP
Nov 16, 2025
93b0fc6
Bump Kotlin and KSP
Nov 17, 2025
a20d214
Bump Kotlin and KSP
Nov 18, 2025
35768c7
Bump Kotlin and KSP
Nov 19, 2025
5e3c1bf
Bump Kotlin and KSP
Nov 20, 2025
eb459f9
Bump Kotlin and KSP
Nov 21, 2025
eebb067
Bump Kotlin and KSP
Nov 24, 2025
ca5459b
Bump Kotlin and KSP
Nov 25, 2025
0a3401c
Bump Kotlin and KSP
Nov 27, 2025
c094147
Bump Kotlin and KSP
Nov 28, 2025
b85939f
Bump Kotlin and KSP
Nov 29, 2025
86ff1bf
Bump Kotlin and KSP
Dec 2, 2025
2db7dbe
Bump Kotlin and KSP
Dec 3, 2025
3d8179b
Bump Kotlin and KSP
Dec 4, 2025
0cb03df
Bump Kotlin and KSP
Dec 5, 2025
26840dc
Bump Kotlin and KSP
Dec 6, 2025
2bcb216
Bump Kotlin and KSP
Dec 7, 2025
0dd792e
Bump Kotlin and KSP
Dec 9, 2025
130d26e
Bump Kotlin and KSP
Dec 10, 2025
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 build-logic/src/main/kotlin/compiler-options.kt
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ fun KotlinCommonCompilerOptions.configure(

when (this) {
is KotlinJvmCompilerOptions -> {
freeCompilerArgs.add("-Xjvm-default=all")
freeCompilerArgs.add("-jvm-default=no-compatibility")
}

is KotlinNativeCompilerOptions -> {
Expand Down
4 changes: 2 additions & 2 deletions gradle/libraries.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@ javaPoet = "1.13.0"
jetbrains-annotations = "26.0.2-1"
junit = "4.13.2"
#noinspection GradleDependency,NewerVersionAvailable compatibility with native consumers
kotlin-plugin = "2.2.20"
kotlin-plugin = "2.3.0-RC3-348"
kotlinx-coroutines = "1.10.2"
kotlinx-datetime = "0.7.1"
#noinspection NewerVersionAvailable requires KGP 2.2
kotlinx-serialization-runtime = "1.8.1"
#noinspection GradleDependency,NewerVersionAvailable compatibility with native consumers
ksp = "2.3.1"
ksp = "2.3.4-SNAPSHOT"
#noinspection NewerVersionAvailable requires KGP 2.2
ktor = "3.2.3"
moshix = "0.14.1"
Expand Down
6 changes: 3 additions & 3 deletions gradle/repositories.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
listOf(pluginManagement.repositories, dependencyResolutionManagement.repositories).forEach {
it.apply {
// Uncomment this one to use the Kotlin "dev" repository
// maven("https://redirector.kotlinlang.org/maven/dev/")
// Uncomment this one to use the Sonatype OSSRH snapshots repository
// maven("https://oss.sonatype.org/content/repositories/snapshots/")
maven("https://redirector.kotlinlang.org/maven/dev/")
// Uncomment this one to use the Maven Snapshots repository
maven("https://central.sonatype.com/repository/maven-snapshots/")
// Uncomment this one to use the GradleUp repository
// maven("https://storage.googleapis.com/gradleup/m2")

Expand Down
2 changes: 1 addition & 1 deletion gradle/test.settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ dependencyResolutionManagement {
pluginManagement {
listOf(repositories, dependencyResolutionManagement.repositories).forEach {
// Uncomment this one to use the Kotlin "dev" repository
// it.maven("https://redirector.kotlinlang.org/maven/dev/")
it.maven("https://redirector.kotlinlang.org/maven/dev/")
it.mavenCentral()
it.google()
it.maven("../../../../build/localMaven")
Expand Down
Loading
Loading