Skip to content
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
4 changes: 2 additions & 2 deletions core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,12 @@ dependencies {
implementation("com.fasterxml.jackson.dataformat:jackson-dataformat-yaml")

// Self-managed dependencies
implementation("com.github.drapostolos:type-parser:0.8.1")
implementation("com.github.drapostolos:type-parser:0.9.0")
implementation("com.google.protobuf:protobuf-java-util:$protobufJavaUtilVersion")
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.14.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.5.9
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.3.1
flywayVersion=10.22.0
protobufJavaUtilVersion=3.25.8

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.6"
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.5")
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.74.0")
implementation("com.microsoft.sqlserver:mssql-jdbc:12.10.2.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.48")
implementation("org.bouncycastle:bcpkix-jdk18on:1.83")

implementation(enforcedPlatform("com.google.cloud:libraries-bom:26.34.0"))
implementation(enforcedPlatform("com.google.cloud:libraries-bom:26.73.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.14.0")

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

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.14.7")
testImplementation("io.zonky.test:embedded-postgres:2.2.0")
}

openApiGenerate {
Expand Down
Loading