Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update gradle app dependencies (alpha) #243

Open
wants to merge 1 commit into
base: alpha
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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 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.5.0")

// 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.4.0
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.2.0
flywayVersion=10.22.0
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.37.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.47")
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.51.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.5.0")

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.13"))
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.1.0")
}

openApiGenerate {
Expand Down
Loading