Skip to content

Commit 408896b

Browse files
authored
upgrade sqs lib (#601)
1 parent 86d0dd2 commit 408896b

File tree

3 files changed

+2
-5
lines changed

3 files changed

+2
-5
lines changed

.scala-steward.conf

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,6 @@ updates.ignore = [
3434
# https://github.com/apache/pekko-connectors/issues/61
3535
{ groupId = "org.apache.hbase" }
3636
{ groupId = "org.apache.hadoop" }
37-
# https://github.com/apache/pekko-connectors/issues/523
38-
{ groupId = "software.amazon.awssdk", artifactId = "sqs" }
3937
# these google api libs can only be updated if we update our io.grpc libs (Pekko gRPC 1.1 uses the latest)
4038
# we are stuck while we support Pekko gRPC 1.0
4139
{ groupId = "com.google.cloud", artifactId = "google-cloud-pubsub" }

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ services:
6666
cbq -c Administrator:password -e http://couchbase:8093
6767
"
6868
elasticmq:
69-
image: softwaremill/elasticmq-native:1.3.4
69+
image: softwaremill/elasticmq-native:1.5.8
7070
ports:
7171
- "9324:9324"
7272
dynamodb:

project/Dependencies.scala

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ object Dependencies {
2727

2828
val AvroVersion = "1.11.3"
2929
val AwsSdk2Version = "2.25.26"
30-
val AwsSdk2SqsVersion = "2.20.162" // latest AwsSdk2Version causes us test issues with SQS
3130
val AwsSpiPekkoHttpVersion = "0.1.1"
3231
val NettyVersion = "4.1.108.Final"
3332
// Sync with plugins.sbt
@@ -443,7 +442,7 @@ object Dependencies {
443442
libraryDependencies ++= Seq(
444443
("com.github.pjfanning" %% "aws-spi-pekko-http" % AwsSpiPekkoHttpVersion).excludeAll(
445444
ExclusionRule(organization = "org.apache.pekko")),
446-
("software.amazon.awssdk" % "sqs" % AwsSdk2SqsVersion).excludeAll(
445+
("software.amazon.awssdk" % "sqs" % AwsSdk2Version).excludeAll(
447446
ExclusionRule("software.amazon.awssdk", "apache-client"),
448447
ExclusionRule("software.amazon.awssdk", "netty-nio-client")),
449448
"org.apache.pekko" %% "pekko-http" % PekkoHttpVersion,

0 commit comments

Comments
 (0)