Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

upgrade sqs lib #601

Merged
merged 1 commit into from
Apr 8, 2024
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: 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
Loading