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

Update dependencies for 1.10.0-M14 #5032

Merged
merged 2 commits into from
Jun 19, 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
16 changes: 8 additions & 8 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -22,18 +22,18 @@ val akkaVersion = "2.6.21"
val alpakkaVersion = "3.0.4"
val apacheCompressVersion = "1.26.2"
val apacheIOVersion = "2.16.1"
val awsSdkVersion = "2.25.65"
val awsSdkVersion = "2.26.5"
val betterMonadicForVersion = "0.3.1"
val caffeineVersion = "3.1.8"
val catsEffectVersion = "3.5.4"
val catsRetryVersion = "3.1.3"
val catsVersion = "2.12.0"
val circeVersion = "0.14.7"
val circeVersion = "0.14.8"
val circeOpticsVersion = "0.15.0"
val circeExtrasVersions = "0.14.3"
val classgraphVersion = "4.8.172"
val classgraphVersion = "4.8.174"
val declineVersion = "2.4.1"
val distageVersion = "1.2.8"
val distageVersion = "1.2.10"
val doobieVersion = "1.0.0-RC5"
val fs2Version = "3.10.2"
val fs2AwsVersion = "6.1.3"
Expand All @@ -42,7 +42,7 @@ val handleBarsVersion = "4.4.0"
val hikariVersion = "5.1.0"
val jenaVersion = "4.10.0"
val jsonldjavaVersion = "0.13.6"
val kamonVersion = "2.7.2"
val kamonVersion = "2.7.3"
val kanelaAgentVersion = "1.0.18"
val kindProjectorVersion = "0.13.3"
val log4catsVersion = "2.7.0"
Expand All @@ -51,14 +51,14 @@ val magnoliaVersion = "1.1.10"
val mockitoVersion = "1.17.31"
val munitVersion = "1.0.0"
val munitCatsEffectVersion = "2.0.0"
val nimbusJoseJwtVersion = "9.39.3"
val nimbusJoseJwtVersion = "9.40"
val postgresJdbcVersion = "42.7.3"
val pureconfigVersion = "0.17.6"
val pureconfigVersion = "0.17.7"
val scalaTestVersion = "3.2.18"
val scalaXmlVersion = "2.3.0"
val topBraidVersion = "1.4.3"
val testContainersVersion = "1.19.8"
val testContainersScalaVersion = "0.41.3"
val testContainersScalaVersion = "0.41.4"

lazy val akkaActorTyped = "com.typesafe.akka" %% "akka-actor-typed" % akkaVersion

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@ class RemoteStorageContainer(storageVersion: String, rootVolume: Path)
addEnv("CONFIG_FORCE_app_storage_root__volume", "/app")
withCopyToContainer(MountableFile.forHostPath(rootVolume.toString, Integer.getInteger("777")), "/app")
addExposedPort(8080)
setWaitStrategy(Wait.forLogMessage(".*Bound\\sto\\s0\\.0\\.0\\.0.*", 1))
setWaitStrategy(Wait.forLogMessage(".*Bound\\sto.*", 1))
}