Skip to content

Commit 1d6f3f2

Browse files
committed
Update library versions and adjust compatibility notes
Upgraded 'dataframe' bootstrap to 0.15.0-RC2, 'mariadb' to 3.5.1, 'sqlite' to 3.47.1.0, and 'junit-bom' to 5.11.3. Added a compatibility note regarding 'simpleGit' due to Java 8 constraints. These updates ensure better performance and compatibility with recent features.
1 parent 90ef92a commit 1d6f3f2

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

build.gradle.kts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,8 @@ val dependencyUpdateExclusions = listOf(
9898
libs.android.gradle.api.get().group,
9999
// Directly dependent on the Gradle version
100100
"org.gradle.kotlin.kotlin-dsl",
101+
// Can't be updated to 2.1.0+ due to Java 8 compatibility
102+
libs.plugins.simpleGit.get().pluginId,
101103
)
102104

103105
// run `./gradlew dependencyUpdates` to check for updates

gradle/libs.versions.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ libsPublisher = "1.9.23-dev-45"
1313

1414
# "Bootstrap" version of the dataframe, used in the build itself to generate @DataSchema APIs,
1515
# dogfood Gradle / KSP plugins in tests and idea-examples modules
16-
dataframe = "0.14.1"
16+
dataframe = "0.15.0-RC2"
1717
korro = "0.1.6"
1818

1919
binaryCompatibilityValidator = "0.16.3"
@@ -25,12 +25,12 @@ commonsCompress = "1.27.1"
2525
commonsIo = "2.18.0"
2626
serialization = "1.7.1"
2727
poi = "5.3.0"
28-
mariadb = "3.4.1"
28+
mariadb = "3.5.1"
2929
h2db = "2.3.232"
3030
mssql = "12.8.1.jre11"
3131
mysql = "9.1.0"
3232
postgresql = "42.7.4"
33-
sqlite = "3.46.1.0"
33+
sqlite = "3.47.1.0"
3434
jtsCore = "1.19.0"
3535
kotlinDatetime = "0.6.1"
3636
openapi = "2.1.24"
@@ -47,7 +47,7 @@ kotestAsserions = "5.5.4"
4747
jsoup = "1.18.3"
4848
arrow = "18.1.0"
4949
docProcessor = "0.3.10"
50-
simpleGit = "2.0.3"
50+
simpleGit = "2.0.3" # Can't be updated to 2.1.0+ due to Java 8 compatibility
5151
dependencyVersions = "0.51.0"
5252
plugin-publish = "1.3.0"
5353
shadow = "8.3.5"

plugins/kotlin-dataframe/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ dependencies {
4747
testImplementation("org.jetbrains.kotlin:kotlin-reflect:$kotlinVersion")
4848
testImplementation("org.jetbrains.kotlin:kotlin-compiler-internal-test-framework:$kotlinVersion")
4949

50-
testImplementation(platform("org.junit:junit-bom:5.11.0"))
50+
testImplementation(platform("org.junit:junit-bom:5.11.3"))
5151
testImplementation("org.junit.jupiter:junit-jupiter")
5252
testImplementation("org.junit.platform:junit-platform-commons")
5353
testImplementation("org.junit.platform:junit-platform-launcher")

0 commit comments

Comments
 (0)