Skip to content

Commit

Permalink
Update library versions and adjust compatibility notes
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
Jolanrensen committed Dec 2, 2024
1 parent 90ef92a commit 1d6f3f2
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
2 changes: 2 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,8 @@ val dependencyUpdateExclusions = listOf(
libs.android.gradle.api.get().group,
// Directly dependent on the Gradle version
"org.gradle.kotlin.kotlin-dsl",
// Can't be updated to 2.1.0+ due to Java 8 compatibility
libs.plugins.simpleGit.get().pluginId,
)

// run `./gradlew dependencyUpdates` to check for updates
Expand Down
8 changes: 4 additions & 4 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ libsPublisher = "1.9.23-dev-45"

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

binaryCompatibilityValidator = "0.16.3"
Expand All @@ -25,12 +25,12 @@ commonsCompress = "1.27.1"
commonsIo = "2.18.0"
serialization = "1.7.1"
poi = "5.3.0"
mariadb = "3.4.1"
mariadb = "3.5.1"
h2db = "2.3.232"
mssql = "12.8.1.jre11"
mysql = "9.1.0"
postgresql = "42.7.4"
sqlite = "3.46.1.0"
sqlite = "3.47.1.0"
jtsCore = "1.19.0"
kotlinDatetime = "0.6.1"
openapi = "2.1.24"
Expand All @@ -47,7 +47,7 @@ kotestAsserions = "5.5.4"
jsoup = "1.18.3"
arrow = "18.1.0"
docProcessor = "0.3.10"
simpleGit = "2.0.3"
simpleGit = "2.0.3" # Can't be updated to 2.1.0+ due to Java 8 compatibility
dependencyVersions = "0.51.0"
plugin-publish = "1.3.0"
shadow = "8.3.5"
Expand Down
2 changes: 1 addition & 1 deletion plugins/kotlin-dataframe/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ dependencies {
testImplementation("org.jetbrains.kotlin:kotlin-reflect:$kotlinVersion")
testImplementation("org.jetbrains.kotlin:kotlin-compiler-internal-test-framework:$kotlinVersion")

testImplementation(platform("org.junit:junit-bom:5.11.0"))
testImplementation(platform("org.junit:junit-bom:5.11.3"))
testImplementation("org.junit.jupiter:junit-jupiter")
testImplementation("org.junit.platform:junit-platform-commons")
testImplementation("org.junit.platform:junit-platform-launcher")
Expand Down

0 comments on commit 1d6f3f2

Please sign in to comment.