From 84831649ccf4511e5a5ff81f907a2958436ab932 Mon Sep 17 00:00:00 2001 From: Brian Clozel Date: Mon, 20 Mar 2023 18:04:57 +0100 Subject: [PATCH] Upgrade dependencies This commit upgrades mandatory and optional dependencies, such as: * Spring Framework 5.3.26 * Reactor 2020.0.30 * Spring Data 2021.2.10 * Spring Security 5.7.7 Closes gh-637 Closes gh-638 Closes gh-639 Closes gh-640 --- build.gradle | 2 +- platform/build.gradle | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/build.gradle b/build.gradle index 60eaea02..420ab9c7 100644 --- a/build.gradle +++ b/build.gradle @@ -5,7 +5,7 @@ plugins { ext { moduleProjects = [project(":spring-graphql"), project(":spring-graphql-test")] graphQlJavaVersion = "18.3" - bootVersion = "2.7.5" + bootVersion = "2.7.9" } description = "Spring for GraphQL" diff --git a/platform/build.gradle b/platform/build.gradle index bd4a4df0..35d796d6 100644 --- a/platform/build.gradle +++ b/platform/build.gradle @@ -7,11 +7,11 @@ javaPlatform { } dependencies { - api(platform("com.fasterxml.jackson:jackson-bom:2.13.4.20221013")) - api(platform("io.projectreactor:reactor-bom:2020.0.25")) - api(platform("org.springframework:spring-framework-bom:5.3.23")) - api(platform("org.springframework.data:spring-data-bom:2021.2.6")) - api(platform("org.springframework.security:spring-security-bom:5.7.5")) + api(platform("com.fasterxml.jackson:jackson-bom:2.13.5")) + api(platform("io.projectreactor:reactor-bom:2020.0.30")) + api(platform("org.springframework:spring-framework-bom:5.3.26")) + api(platform("org.springframework.data:spring-data-bom:2021.2.10")) + api(platform("org.springframework.security:spring-security-bom:5.7.7")) api(platform("com.querydsl:querydsl-bom:5.0.0")) api(platform("io.rsocket:rsocket-bom:1.1.3")) api(platform("org.jetbrains.kotlin:kotlin-bom:1.6.21")) @@ -35,7 +35,7 @@ dependencies { api("org.skyscreamer:jsonassert:1.5.1") api("com.h2database:h2:2.1.214") - api("org.hibernate:hibernate-core:5.6.14.Final") + api("org.hibernate:hibernate-core:5.6.15.Final") api("org.hibernate.validator:hibernate-validator:6.2.5.Final") api("org.mongodb:bson:4.6.1") api("org.mongodb:mongodb-driver-core:4.6.1")