Skip to content

Commit

Permalink
upgrade sqs lib (apache#601)
Browse files Browse the repository at this point in the history
  • Loading branch information
pjfanning committed Apr 8, 2024
1 parent 86d0dd2 commit 408896b
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 5 deletions.
2 changes: 0 additions & 2 deletions .scala-steward.conf
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,6 @@ updates.ignore = [
# https://github.com/apache/pekko-connectors/issues/61
{ groupId = "org.apache.hbase" }
{ groupId = "org.apache.hadoop" }
# https://github.com/apache/pekko-connectors/issues/523
{ groupId = "software.amazon.awssdk", artifactId = "sqs" }
# these google api libs can only be updated if we update our io.grpc libs (Pekko gRPC 1.1 uses the latest)
# we are stuck while we support Pekko gRPC 1.0
{ groupId = "com.google.cloud", artifactId = "google-cloud-pubsub" }
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ services:
cbq -c Administrator:password -e http://couchbase:8093
"
elasticmq:
image: softwaremill/elasticmq-native:1.3.4
image: softwaremill/elasticmq-native:1.5.8
ports:
- "9324:9324"
dynamodb:
Expand Down
3 changes: 1 addition & 2 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ object Dependencies {

val AvroVersion = "1.11.3"
val AwsSdk2Version = "2.25.26"
val AwsSdk2SqsVersion = "2.20.162" // latest AwsSdk2Version causes us test issues with SQS
val AwsSpiPekkoHttpVersion = "0.1.1"
val NettyVersion = "4.1.108.Final"
// Sync with plugins.sbt
Expand Down Expand Up @@ -443,7 +442,7 @@ object Dependencies {
libraryDependencies ++= Seq(
("com.github.pjfanning" %% "aws-spi-pekko-http" % AwsSpiPekkoHttpVersion).excludeAll(
ExclusionRule(organization = "org.apache.pekko")),
("software.amazon.awssdk" % "sqs" % AwsSdk2SqsVersion).excludeAll(
("software.amazon.awssdk" % "sqs" % AwsSdk2Version).excludeAll(
ExclusionRule("software.amazon.awssdk", "apache-client"),
ExclusionRule("software.amazon.awssdk", "netty-nio-client")),
"org.apache.pekko" %% "pekko-http" % PekkoHttpVersion,
Expand Down

0 comments on commit 408896b

Please sign in to comment.