Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion aws-advanced-jdbc-wrapper-bundle/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ repositories {
dependencies {
implementation("org.apache.httpcomponents:httpclient:4.5.14")
implementation("software.amazon.awssdk:rds:2.31.50")
implementation("software.amazon.awssdk:sts:2.31.46")
implementation("software.amazon.awssdk:sts:2.31.50")
implementation(project(":aws-advanced-jdbc-wrapper"))
}

Expand Down
2 changes: 1 addition & 1 deletion examples/AWSDriverExample/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ dependencies {
implementation("com.mysql:mysql-connector-j:9.3.0")
implementation("software.amazon.awssdk:rds:2.31.50")
implementation("software.amazon.awssdk:secretsmanager:2.31.12")
implementation("software.amazon.awssdk:sts:2.31.46")
implementation("software.amazon.awssdk:sts:2.31.50")
implementation("com.fasterxml.jackson.core:jackson-databind:2.19.0")
implementation(project(":aws-advanced-jdbc-wrapper"))
implementation("io.opentelemetry:opentelemetry-api:1.50.0")
Expand Down
4 changes: 2 additions & 2 deletions wrapper/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ dependencies {
compileOnly("software.amazon.awssdk:rds:2.31.50")
compileOnly("software.amazon.awssdk:auth:2.31.45") // Required for IAM (light implementation)
compileOnly("software.amazon.awssdk:http-client-spi:2.31.17") // Required for IAM (light implementation)
compileOnly("software.amazon.awssdk:sts:2.31.46")
compileOnly("software.amazon.awssdk:sts:2.31.50")
compileOnly("com.zaxxer:HikariCP:4.0.3") // Version 4.+ is compatible with Java 8
compileOnly("com.mchange:c3p0:0.11.0")
compileOnly("software.amazon.awssdk:secretsmanager:2.31.12")
Expand Down Expand Up @@ -70,7 +70,7 @@ dependencies {
testImplementation("software.amazon.awssdk:http-client-spi:2.31.17") // Required for IAM (light implementation)
testImplementation("software.amazon.awssdk:ec2:2.31.36")
testImplementation("software.amazon.awssdk:secretsmanager:2.31.12")
testImplementation("software.amazon.awssdk:sts:2.31.46")
testImplementation("software.amazon.awssdk:sts:2.31.50")
// Note: all org.testcontainers dependencies should have the same version
testImplementation("org.testcontainers:testcontainers:1.21.0")
testImplementation("org.testcontainers:mysql:1.21.0")
Expand Down
Loading