From 1799379440ddb0be78bf9ec8b1ad2fbb49c0cf8f Mon Sep 17 00:00:00 2001 From: "aikido-autofix[bot]" <119856028+aikido-autofix[bot]@users.noreply.github.com> Date: Thu, 21 Aug 2025 22:33:25 +0000 Subject: [PATCH] fix(security): update dependencies --- agent_api/build.gradle | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/agent_api/build.gradle b/agent_api/build.gradle index e051f811d..c39af4aa0 100644 --- a/agent_api/build.gradle +++ b/agent_api/build.gradle @@ -36,10 +36,18 @@ dependencies { testImplementation 'org.apache.httpcomponents:httpclient:4.5.13' // Spring Web for RestTemplate - testImplementation 'org.springframework:spring-web:5.3.20' - testImplementation 'org.springframework:spring-webmvc:5.3.20' + testImplementation 'org.springframework:spring-web:5.3.41' + testImplementation 'org.springframework:spring-webmvc:5.3.44' testImplementation 'org.springframework:spring-test:5.3.20' + // Version constraints for transitive dependencies + constraints { + implementation 'org.springframework:spring-core:5.3.41' + implementation 'org.springframework:spring-beans:5.3.41' + implementation 'org.springframework:spring-expression:5.3.41' + implementation 'org.springframework:spring-context:5.3.41' + } + testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.9.2' }