Skip to content

Commit 11ebb4b

Browse files
author
Michael Kunze
committed
Update all dependencies to their latest versions
This also involves a fix from AWS: One or more applications in your AWS account has a dependency on asynchronous features of AWS SDK for Java V2. In versions below 2.10.56 of the AWS SDK for Java V2, the asynchronous clients (e.g. S3AsyncClient, SqsAsyncClient) resolve and cache the IP address of AWS Services once per channel pool, and the resolved IP is then used for all future connections to the host name until the client is closed. As a result, applications that use long-lived asynchronous SDK clients could use stale IP addresses to AWS services that can result in exceptions, and potentially not use the breadth of load balancing that the service provides, causing increased overall latency. What Do I Need to Do? Please upgrade your application dependency to AWS Java V2 SDK 2.10.56
1 parent 0063e87 commit 11ebb4b

File tree

1 file changed

+7
-9
lines changed

1 file changed

+7
-9
lines changed

build.gradle.kts

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ import org.gradle.api.tasks.wrapper.Wrapper.DistributionType.ALL
44
plugins {
55
id("java-library")
66
id("maven-publish")
7-
id("com.github.ben-manes.versions") version "0.27.0"
7+
id("com.github.ben-manes.versions") version "0.28.0"
88
id("com.jfrog.bintray") version "1.8.4"
9-
id("org.springframework.boot") version "2.2.0.RELEASE"
9+
id("org.springframework.boot") version "2.2.4.RELEASE"
1010
id("com.adarshr.test-logger") version "2.0.0"
1111
}
1212

1313
group = "de.inoxio"
14-
version = "1.1.0"
14+
version = "1.2.0"
1515
description = "A java-spring library to push metrics to cloudwatch"
1616

1717
apply {
@@ -27,15 +27,13 @@ dependencies {
2727
implementation("org.springframework.boot:spring-boot-starter")
2828
implementation("org.springframework.boot:spring-boot-starter-json")
2929
// aws
30-
implementation("software.amazon.awssdk:cloudwatch:2.10.0")
30+
implementation("software.amazon.awssdk:cloudwatch:2.10.72")
3131

3232
// test
3333
testImplementation("org.springframework.boot:spring-boot-starter-test")
34-
testImplementation("org.mockito:mockito-core:3.1.0")
35-
testImplementation("nl.jqno.equalsverifier:equalsverifier:3.1.10")
36-
testImplementation("org.junit.jupiter:junit-jupiter-api:5.5.2")
37-
38-
testRuntimeOnly("org.junit.jupiter:junit-jupiter:5.5.2")
34+
testImplementation("org.mockito:mockito-core:3.3.0")
35+
testImplementation("nl.jqno.equalsverifier:equalsverifier:3.1.12")
36+
testImplementation("org.junit.jupiter:junit-jupiter:5.6.0")
3937
}
4038

4139
java {

0 commit comments

Comments
 (0)