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/aws-config/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ extra["moduleName"] = "software.amazon.smithy.java.aws.config"
dependencies {
api(project(":aws:aws-auth-api"))
implementation(project(":logging"))
testImplementation("tools.jackson.core:jackson-databind:3.1.2")
testImplementation("tools.jackson.core:jackson-databind:3.2.0")
}
2 changes: 1 addition & 1 deletion aws/aws-credential-chain/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ dependencies {
implementation(project(":client:client-core"))
implementation(project(":codecs:json-codec", configuration = "shadow"))
implementation(project(":logging"))
testImplementation("tools.jackson.core:jackson-databind:3.1.2")
testImplementation("tools.jackson.core:jackson-databind:3.2.0")
}
2 changes: 1 addition & 1 deletion aws/aws-credentials-sts/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ dependencies {
implementation(project(":aws:client:aws-client-awsquery"))
implementation(project(":codecs:json-codec", configuration = "shadow"))
implementation(project(":logging"))
implementation("software.amazon.api.models:sts:1.0.5")
implementation("software.amazon.api.models:sts:1.0.7")
testImplementation(project(":client:client-mock-plugin"))
testImplementation(project(":http:http-api"))
}
2 changes: 1 addition & 1 deletion aws/client/aws-client-rulesengine/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ dependencies {
testImplementation(project(":aws:client:aws-client-restjson"))
testImplementation(project(":client:dynamic-client"))

s3Model("software.amazon.api.models:s3:1.0.19")
s3Model("software.amazon.api.models:s3:1.0.20")
lambdaModel("software.amazon.api.models:lambda:1.0.19")
}

Expand Down
4 changes: 2 additions & 2 deletions benchmarks/e2e-benchmarks/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ dependencies {
// for the source projection, so these go on `implementation`. The codegen
// plugin (and the runtime stack) read shape definitions through these
// JARs at build time and at runtime.
implementation("software.amazon.api.models:dynamodb:1.0.11")
implementation("software.amazon.api.models:s3:1.0.17")
implementation("software.amazon.api.models:dynamodb:1.0.12")
implementation("software.amazon.api.models:s3:1.0.20")

// Runtime stack the generated clients depend on.
implementation(project(":core"))
Expand Down
14 changes: 7 additions & 7 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,29 +6,29 @@ jmh = "0.7.3"
jmhCore = "1.37"
test-logger-plugin = "4.0.0"
spotbugs = "6.5.6"
spotless = "8.6.0"
spotless = "8.7.0"
smithy-gradle-plugins = "1.4.0"
assertj = "3.27.7"
jackson = "3.1.4"
jackson = "3.2.0"
fastdoubleparser = "2.0.1"
netty = "4.2.15.Final"
dep-analysis = "3.14.1"
aws-sdk = "2.46.3"
dep-analysis = "3.15.0"
aws-sdk = "2.46.13"
osdetector = "1.7.3"
accp = "2.4.1" # Amazon Corretto Crypto Provider
jreleaser = "1.24.0"
picocli = "4.7.7"
graalvm-native = "1.1.1"
graalvm-native = "1.1.2"
shadow = "8.3.11"
jazzer = "0.30.0"
pitest-junit5 = "1.2.3"
pitest-gradle = "1.19.0"
json-schema-validator = "3.0.0"
opentelemetry = "1.62.0"
opentelemetry = "1.63.0"
jspecify = "1.0.0"
commonmark = "0.28.0"
jsoup = "1.22.2"
aws-api-models = "1.0.244"
aws-api-models = "1.0.254"

[libraries]
smithy-model = { module = "software.amazon.smithy:smithy-model", version.ref = "smithy" }
Expand Down
2 changes: 1 addition & 1 deletion logging/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ val jclTestConfiguration: Configuration by configurations.creating {
val log4j2 = "2.26.0"
val slf4j = "2.0.18"
val logBack = "1.5.34"
val jcl = "1.3.6"
val jcl = "1.4.0"

dependencies {
compileOnly("org.apache.logging.log4j:log4j-api:$log4j2")
Expand Down