Skip to content

Commit 86d0dd2

Browse files
Update auth, dynamodb, eventbridge, firehose, ... to 2.25.26 (#599)
* Update auth, dynamodb, eventbridge, firehose, ... to 2.25.26 * Make type more explicit for Scala 3 compilation --------- Co-authored-by: scala-steward-asf[bot] <147768647+scala-steward-asf[bot]@users.noreply.github.com> Co-authored-by: Arnout Engelen <[email protected]>
1 parent 216e7fd commit 86d0dd2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

project/Dependencies.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ object Dependencies {
2626
val InfluxDBJavaVersion = "2.23"
2727

2828
val AvroVersion = "1.11.3"
29-
val AwsSdk2Version = "2.25.21"
29+
val AwsSdk2Version = "2.25.26"
3030
val AwsSdk2SqsVersion = "2.20.162" // latest AwsSdk2Version causes us test issues with SQS
3131
val AwsSpiPekkoHttpVersion = "0.1.1"
3232
val NettyVersion = "4.1.108.Final"

s3/src/main/scala/org/apache/pekko/stream/connectors/s3/settings.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -596,7 +596,7 @@ object S3Settings {
596596
val aki = c.getString("aws.credentials.access-key-id")
597597
val sak = c.getString("aws.credentials.secret-access-key")
598598
val tokenPath = "aws.credentials.token"
599-
val creds = if (c.hasPath(tokenPath)) {
599+
val creds: AwsCredentials = if (c.hasPath(tokenPath)) {
600600
AwsSessionCredentials.create(aki, sak, c.getString(tokenPath))
601601
} else {
602602
AwsBasicCredentials.create(aki, sak)

0 commit comments

Comments
 (0)