diff --git a/aws/client/aws-client-rulesengine/build.gradle.kts b/aws/client/aws-client-rulesengine/build.gradle.kts index 7bcf01dbd2..9befd9777e 100644 --- a/aws/client/aws-client-rulesengine/build.gradle.kts +++ b/aws/client/aws-client-rulesengine/build.gradle.kts @@ -22,8 +22,8 @@ dependencies { testImplementation(project(":aws:client:aws-client-restjson")) testImplementation(project(":client:dynamic-client")) - s3Model("software.amazon.api.models:s3:1.0.17") - lambdaModel("software.amazon.api.models:lambda:1.0.17") + s3Model("software.amazon.api.models:s3:1.0.18") + lambdaModel("software.amazon.api.models:lambda:1.0.18") } // Add service models to test and JMH classpaths diff --git a/examples/end-to-end/build.gradle.kts b/examples/end-to-end/build.gradle.kts index d1f5ad9225..13ab89c7ea 100644 --- a/examples/end-to-end/build.gradle.kts +++ b/examples/end-to-end/build.gradle.kts @@ -24,7 +24,7 @@ dependencies { implementation("software.amazon.smithy.java:client-core:$smithyJavaVersion") // Test dependencies - testImplementation("org.junit.jupiter:junit-jupiter:6.0.3") + testImplementation("org.junit.jupiter:junit-jupiter:6.1.0") testRuntimeOnly("org.junit.platform:junit-platform-launcher") } diff --git a/examples/event-streaming-client/build.gradle.kts b/examples/event-streaming-client/build.gradle.kts index c32bdf7c10..fc68d7c4dd 100644 --- a/examples/event-streaming-client/build.gradle.kts +++ b/examples/event-streaming-client/build.gradle.kts @@ -15,7 +15,7 @@ dependencies { implementation(project(":framework-errors")) // Test dependencies - testImplementation("org.junit.jupiter:junit-jupiter:6.0.3") + testImplementation("org.junit.jupiter:junit-jupiter:6.1.0") testRuntimeOnly("org.junit.platform:junit-platform-launcher") } diff --git a/examples/restjson-client/build.gradle.kts b/examples/restjson-client/build.gradle.kts index ef87255bd9..1746c285a6 100644 --- a/examples/restjson-client/build.gradle.kts +++ b/examples/restjson-client/build.gradle.kts @@ -18,7 +18,7 @@ dependencies { jmhImplementation("software.amazon.smithy.java:cbor-codec:$smithyJavaVersion") // Test dependencies - testImplementation("org.junit.jupiter:junit-jupiter:6.0.3") + testImplementation("org.junit.jupiter:junit-jupiter:6.1.0") testRuntimeOnly("org.junit.platform:junit-platform-launcher") testImplementation(libs.assertj.core) } diff --git a/examples/standalone-types/build.gradle.kts b/examples/standalone-types/build.gradle.kts index 444d3e9823..b216f16cf5 100644 --- a/examples/standalone-types/build.gradle.kts +++ b/examples/standalone-types/build.gradle.kts @@ -12,7 +12,7 @@ dependencies { api("software.amazon.smithy.java:framework-errors:$smithyJavaVersion") testImplementation("org.hamcrest:hamcrest:3.0") - testImplementation("org.junit.jupiter:junit-jupiter:6.0.3") + testImplementation("org.junit.jupiter:junit-jupiter:6.1.0") testRuntimeOnly("org.junit.platform:junit-platform-launcher") testImplementation("org.assertj:assertj-core:3.27.7") } diff --git a/examples/transcribestreaming-client/build.gradle.kts b/examples/transcribestreaming-client/build.gradle.kts index b8613b92a8..b61ec82011 100644 --- a/examples/transcribestreaming-client/build.gradle.kts +++ b/examples/transcribestreaming-client/build.gradle.kts @@ -15,14 +15,14 @@ dependencies { implementation("software.amazon.smithy.java:aws-sigv4:$smithyJavaVersion") implementation("software.amazon.smithy.java:client-rulesengine:$smithyJavaVersion") implementation("software.amazon.smithy.java:aws-client-rulesengine:$smithyJavaVersion") - implementation("org.slf4j:slf4j-simple:2.0.17") + implementation("org.slf4j:slf4j-simple:2.0.18") implementation(libs.smithy.aws.endpoints) implementation(libs.smithy.aws.smoke.test.model) implementation(libs.smithy.aws.traits) // Test dependencies testImplementation(project(":aws:sdkv2:aws-sdkv2-auth")) - testImplementation("org.junit.jupiter:junit-jupiter:6.0.3") + testImplementation("org.junit.jupiter:junit-jupiter:6.1.0") testRuntimeOnly("org.junit.platform:junit-platform-launcher") } diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 84c236a8b5..655c884194 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -1,18 +1,18 @@ [versions] -junit5 = "6.0.3" +junit5 = "6.1.0" hamcrest = "3.0" smithy = "1.71.0" jmh = "0.7.3" test-logger-plugin = "4.0.0" spotbugs = "6.0.22" -spotless = "8.4.0" +spotless = "8.5.1" smithy-gradle-plugins = "1.4.0" assertj = "3.27.7" jackson = "3.1.3" fastdoubleparser = "2.0.1" netty = "4.2.13.Final" -dep-analysis = "3.10.0" -aws-sdk = "2.44.2" +dep-analysis = "3.12.1" +aws-sdk = "2.44.9" osdetector = "1.7.3" accp = "2.4.1" # Amazon Corretto Crypto Provider jreleaser = "1.24.0" @@ -21,11 +21,11 @@ graalvm-native = "1.1.0" shadow = "8.3.10" jazzer = "0.30.0" json-schema-validator = "3.0.0" -opentelemetry = "1.61.0" +opentelemetry = "1.62.0" jspecify = "1.0.0" commonmark = "0.28.0" jsoup = "1.22.2" -aws-api-models = "1.0.226" +aws-api-models = "1.0.233" [libraries] smithy-model = { module = "software.amazon.smithy:smithy-model", version.ref = "smithy" } diff --git a/logging/build.gradle.kts b/logging/build.gradle.kts index adaa33405f..91df2abe28 100644 --- a/logging/build.gradle.kts +++ b/logging/build.gradle.kts @@ -25,8 +25,8 @@ val jclTestConfiguration: Configuration by configurations.creating { } // These are declared here instead of the version catalog because we don't want other modules to depend on them. -val log4j2 = "2.25.4" -val slf4j = "2.0.17" +val log4j2 = "2.26.0" +val slf4j = "2.0.18" val logBack = "1.5.32" val jcl = "1.3.6"