Skip to content

Commit

Permalink
chore(deps): update gradle app dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Oct 31, 2024
1 parent 1ce2992 commit 206693e
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 20 deletions.
2 changes: 1 addition & 1 deletion core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ dependencies {
implementation(
"build.buf.gen:getstrm_pace_protocolbuffers_kotlin:25.3.0.2.$generatedBufDependencyVersion",
)
implementation("build.buf:protovalidate:0.2.0")
implementation("build.buf:protovalidate:0.4.2")

// Test dependencies
testImplementation("org.springframework.boot:spring-boot-starter-test") {
Expand Down
12 changes: 6 additions & 6 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
version = 1.0.0-alpha.72
kotlinVersion=1.9.23
kotlinVersion=1.9.25
postgresPort=5432
schema=pace
springBootVersion=3.2.3
springBootVersion=3.3.5
jooqVersion=3.18.7
kotestVersion = 5.8.1
springCloudKubernetesVersion=3.1.0
flywayVersion=10.10.0
protobufJavaUtilVersion=3.25.3
kotestVersion = 5.9.1
springCloudKubernetesVersion=3.1.3
flywayVersion=10.20.1
protobufJavaUtilVersion=3.25.5

dockertag = pace-local

Expand Down
26 changes: 13 additions & 13 deletions server/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ project.version =

plugins {
id("com.bmuschko.docker-remote-api")
id("com.apollographql.apollo3") version "3.8.2"
id("com.apollographql.apollo3") version "3.8.5"
id("nu.studer.jooq")
id("org.flywaydb.flyway")
id("org.openapi.generator")
Expand All @@ -58,7 +58,7 @@ dependencies {
implementation("org.springframework.boot:spring-boot-starter-validation")
// TODO remove once we upgrade Spring: override SnakeYAML dependency, as the one managed by
// Spring is too old and is vulnerable
implementation("org.yaml:snakeyaml:2.2")
implementation("org.yaml:snakeyaml:2.3")
implementation("org.flywaydb:flyway-core:$flywayVersion")
implementation("org.flywaydb:flyway-database-postgresql:$flywayVersion")
implementation("org.jetbrains.kotlin:kotlin-reflect")
Expand All @@ -77,15 +77,15 @@ dependencies {

// Self-managed dependencies
implementation("net.devh:grpc-server-spring-boot-starter:2.15.0.RELEASE")
implementation("com.databricks:databricks-sdk-java:0.20.0")
implementation("com.microsoft.sqlserver:mssql-jdbc:12.6.1.jre11")
implementation("com.databricks:databricks-sdk-java:0.34.0")
implementation("com.microsoft.sqlserver:mssql-jdbc:12.8.1.jre11")
implementation(
"org.springframework.cloud:spring-cloud-starter-kubernetes-fabric8-config:$springCloudKubernetesVersion"
)
implementation("com.nimbusds:nimbus-jose-jwt:9.37.3")
implementation("org.bouncycastle:bcpkix-jdk18on:1.77")
implementation("com.nimbusds:nimbus-jose-jwt:9.43")
implementation("org.bouncycastle:bcpkix-jdk18on:1.79")

implementation(enforcedPlatform("com.google.cloud:libraries-bom:26.34.0"))
implementation(enforcedPlatform("com.google.cloud:libraries-bom:26.49.0"))
implementation("com.google.cloud:google-cloud-bigquery")
implementation("com.google.cloud:google-cloud-datacatalog")
implementation("com.google.cloud:google-cloud-datalineage")
Expand All @@ -95,12 +95,12 @@ dependencies {
implementation(
"build.buf.gen:getstrm_pace_protocolbuffers_java:25.3.0.2.$generatedBufDependencyVersion"
)
implementation("build.buf:protovalidate:0.2.0")
implementation("build.buf:protovalidate:0.4.2")

implementation("com.apollographql.apollo3:apollo-runtime:3.8.2")
implementation("com.apollographql.apollo3:apollo-runtime:3.8.5")

implementation("com.aallam.openai:openai-client:3.7.0")
implementation(platform("io.ktor:ktor-bom:2.3.9"))
implementation("com.aallam.openai:openai-client:3.8.2")
implementation(platform("io.ktor:ktor-bom:2.3.12"))
runtimeOnly("io.ktor:ktor-client-okhttp")
implementation("io.ktor:ktor-client-logging")

Expand All @@ -110,8 +110,8 @@ dependencies {
}
testImplementation("io.kotest:kotest-assertions-core-jvm:$kotestVersion")
testImplementation("io.kotest:kotest-runner-junit5:$kotestVersion")
testImplementation("io.mockk:mockk:1.13.10")
testImplementation("io.zonky.test:embedded-postgres:2.0.6")
testImplementation("io.mockk:mockk:1.13.13")
testImplementation("io.zonky.test:embedded-postgres:2.0.7")
}

openApiGenerate {
Expand Down

0 comments on commit 206693e

Please sign in to comment.