Skip to content

Commit

Permalink
fix(deps): update all non-major dependencies (#121)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] authored Jan 10, 2025
1 parent fc82dd3 commit cb0073e
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 13 deletions.
4 changes: 2 additions & 2 deletions api/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
dependencies {
api(platform(kotlin("bom")))
api(kotlin("stdlib"))
api("org.jetbrains.kotlinx", "kotlinx-coroutines-core", "1.8.1")
api("org.jetbrains.kotlinx", "kotlinx-serialization-core", "1.7.1")
api("org.jetbrains.kotlinx", "kotlinx-coroutines-core", "1.10.1")
api("org.jetbrains.kotlinx", "kotlinx-serialization-core", "1.8.0")
}

java {
Expand Down
8 changes: 4 additions & 4 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ import org.jetbrains.kotlin.gradle.dsl.JvmTarget
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile

plugins {
kotlin("jvm") version "2.0.0" apply false
kotlin("kapt") version "2.0.0" apply false
kotlin("plugin.serialization") version "2.0.0" apply false
kotlin("jvm") version "2.1.0" apply false
kotlin("kapt") version "2.1.0" apply false
kotlin("plugin.serialization") version "2.1.0" apply false
id("com.github.johnrengelman.shadow") version "8.1.1" apply false

// The fabric-loom plugin must be defined in the root project for it to function properly.
id("fabric-loom") version "1.7.2" apply false
id("fabric-loom") version "1.9.2" apply false
}

allprojects {
Expand Down
2 changes: 1 addition & 1 deletion common/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@ apply(plugin = "kotlinx-serialization")

dependencies {
api(project(":unifiedmetrics-api"))
implementation("com.charleskorn.kaml:kaml:0.60.0")
implementation("com.charleskorn.kaml:kaml:0.67.0")
}
2 changes: 1 addition & 1 deletion drivers/influx/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@ apply(plugin = "kotlinx-serialization")

dependencies {
compileOnly(project(":unifiedmetrics-api"))
api("com.influxdb:influxdb-client-java:7.1.0")
api("com.influxdb:influxdb-client-java:7.2.0")
}
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
3 changes: 1 addition & 2 deletions gradlew
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,7 @@ done
# shellcheck disable=SC2034
APP_BASE_NAME=${0##*/}
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s
' "$PWD" ) || exit
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s\n' "$PWD" ) || exit

# Use the maximum available, or set MAX_FD != -1 to use that value.
MAX_FD=maximum
Expand Down
4 changes: 2 additions & 2 deletions platforms/fabric/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ dependencies {
// https://fabricmc.net/versions.html
minecraft("com.mojang:minecraft:1.17.1")
mappings("net.fabricmc:yarn:1.17.1+build.65:v2")
modImplementation("net.fabricmc:fabric-loader:0.16.0")
modImplementation("net.fabricmc:fabric-loader:0.16.10")

modImplementation("net.fabricmc.fabric-api:fabric-api:0.46.1+1.17")
modImplementation("net.fabricmc:fabric-language-kotlin:1.11.0+kotlin.2.0.0")
modImplementation("net.fabricmc:fabric-language-kotlin:1.13.0+kotlin.2.1.0")

api(project(":unifiedmetrics-core"))

Expand Down

0 comments on commit cb0073e

Please sign in to comment.