Skip to content

Commit bf5e6ea

Browse files
authored
Upgrade springboot to fix security issue (#627)
Spring Boot 2.2.5 was released which includes a fix for a security issue in netty. See: https://spring.io/blog/2020/02/27/spring-boot-2-2-5-released
1 parent b129244 commit bf5e6ea

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

gradle.properties

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,15 @@ kotlinCoroutinesVersion = 1.3.3
1414

1515
graphQLJavaVersion = 14.0
1616
jacksonVersion = 2.10.2
17-
springBootVersion = 2.2.4.RELEASE
17+
springBootVersion = 2.2.5.RELEASE
1818
classGraphVersion = 4.8.65
19-
reactorVersion = 3.3.2.RELEASE
19+
reactorVersion = 3.3.3.RELEASE
2020
reactorExtensionsVersion = 1.0.2.RELEASE
2121

2222
# test dependency versions
2323
junitVersion = 5.6.0
2424
mockkVersion = 1.9.3
25+
rxjavaVersion = 3.0.0
2526

2627
# plugin versions
2728
detektVersion = 1.5.1

graphql-kotlin-schema-generator/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ val graphQLJavaVersion: String by project
55
val jacksonVersion: String by project
66
val kotlinVersion: String by project
77
val kotlinCoroutinesVersion: String by project
8-
val rxjavaVersion = "3.0.0"
8+
val rxjavaVersion: String by project
99

1010
dependencies {
1111
api("com.graphql-java:graphql-java:$graphQLJavaVersion")

0 commit comments

Comments
 (0)