From ecc23060adac754bd3abb0e258842d351c9ff83f Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 16 Aug 2026 18:13:37 +0000 Subject: [PATCH] fix(deps): update all non-major application-server dependencies --- server/application-server/Dockerfile | 2 +- server/application-server/build.gradle | 22 +++++++++++----------- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/server/application-server/Dockerfile b/server/application-server/Dockerfile index 055923c13..1e2f1b3dd 100644 --- a/server/application-server/Dockerfile +++ b/server/application-server/Dockerfile @@ -1,4 +1,4 @@ -FROM gradle:9.5.1-jdk21-alpine AS build +FROM gradle:9.7.0-jdk21-alpine AS build COPY --chown=gradle:gradle . /home/gradle/src WORKDIR /home/gradle/src # Skip tests inside the image build — zonky/embedded-postgres integration tests diff --git a/server/application-server/build.gradle b/server/application-server/build.gradle index d9361933d..fed3dd8ab 100644 --- a/server/application-server/build.gradle +++ b/server/application-server/build.gradle @@ -4,8 +4,8 @@ import org.springframework.boot.gradle.tasks.run.BootRun // so that it can be used to connect to the database and execute the migrations. buildscript { dependencies { - classpath('org.postgresql:postgresql:42.7.11') - classpath('org.flywaydb:flyway-database-postgresql:12.9.0') + classpath('org.postgresql:postgresql:42.7.13') + classpath('org.flywaydb:flyway-database-postgresql:12.11.0') } } @@ -13,8 +13,8 @@ plugins { id 'org.springframework.boot' id 'io.freefair.lombok' id 'org.springdoc.openapi-gradle-plugin' version '1.9.0' - id 'org.openapi.generator' version '7.23.0' - id 'org.flywaydb.flyway' version '12.9.0' + id 'org.openapi.generator' version '7.24.0' + id 'org.flywaydb.flyway' version '12.11.0' } // The OpenAPI tasks boot the app against the in-memory H2 database, so H2 is @@ -40,19 +40,19 @@ dependencies { implementation 'org.springframework.boot:spring-boot-starter-flyway' implementation 'org.springframework.boot:spring-boot-jackson2' implementation 'org.springframework.security:spring-security-oauth2-jose' - implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:3.0.3' - implementation 'org.openapitools:jackson-databind-nullable:0.2.10' + implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:3.1.0' + implementation 'org.openapitools:jackson-databind-nullable:0.2.11' implementation 'com.github.ben-manes.caffeine:caffeine' - implementation 'io.nats:jnats:2.25.3' + implementation 'io.nats:jnats:2.26.2' implementation 'org.springframework.ai:spring-ai-starter-model-openai' implementation 'org.kohsuke:github-api:1.330' - implementation 'com.squareup.okhttp3:okhttp:5.4.0' - implementation 'com.squareup.okhttp3:logging-interceptor:5.4.0' + implementation 'com.squareup.okhttp3:okhttp:5.5.0' + implementation 'com.squareup.okhttp3:logging-interceptor:5.5.0' implementation 'org.flywaydb:flyway-database-postgresql' implementation 'io.jsonwebtoken:jjwt-api:0.13.0' - implementation 'io.sentry:sentry-spring-boot-4-starter:8.44.1' + implementation 'io.sentry:sentry-spring-boot-4-starter:8.53.0' // Helios push-based status updates - implementation "de.tum.cit.aet:helios-status-spring-starter:1.1.1" + implementation "de.tum.cit.aet:helios-status-spring-starter:1.2.0" runtimeOnly 'io.jsonwebtoken:jjwt-impl:0.13.0' runtimeOnly 'io.jsonwebtoken:jjwt-jackson:0.13.0' runtimeOnly 'org.postgresql:postgresql'