From 765549e21227ed2d9ea2600390762b96e5b739a2 Mon Sep 17 00:00:00 2001 From: Patrik Nordwall Date: Mon, 23 Oct 2023 17:04:45 +0200 Subject: [PATCH] bump: Akka 2.9.0 (#1213) * and Akka HTTP 10.6.0 --- integration-test/dns-api-mesos/build.sbt | 2 +- integration-test/kubernetes-api-java/pom.xml | 6 +++--- integration-test/marathon-api-docker/build.sbt | 2 +- integration-test/marathon-api/build.sbt | 2 +- project/Dependencies.scala | 4 ++-- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/integration-test/dns-api-mesos/build.sbt b/integration-test/dns-api-mesos/build.sbt index c34f53079..d25cfc8b8 100644 --- a/integration-test/dns-api-mesos/build.sbt +++ b/integration-test/dns-api-mesos/build.sbt @@ -14,4 +14,4 @@ libraryDependencies += "com.lightbend.akka.management" %% "akka-management-clust libraryDependencies += "com.lightbend.akka.management" %% "akka-management-cluster-http" % akkaManagementVersion( version.value) -libraryDependencies += "com.typesafe.akka" %% "akka-discovery" % "2.8.2" +libraryDependencies += "com.typesafe.akka" %% "akka-discovery" % "2.9.0" diff --git a/integration-test/kubernetes-api-java/pom.xml b/integration-test/kubernetes-api-java/pom.xml index d3790456b..9d2683a80 100644 --- a/integration-test/kubernetes-api-java/pom.xml +++ b/integration-test/kubernetes-api-java/pom.xml @@ -17,9 +17,9 @@ UTF-8 11 - 2.8.2 - 10.5.1 - 1.2.0 + 2.9.0 + 10.6.0 + 1.5.0-M2 2.13 diff --git a/integration-test/marathon-api-docker/build.sbt b/integration-test/marathon-api-docker/build.sbt index 8dca7a506..9ffbbec83 100644 --- a/integration-test/marathon-api-docker/build.sbt +++ b/integration-test/marathon-api-docker/build.sbt @@ -12,7 +12,7 @@ version := "1.0" dockerUsername := sys.env.get("DOCKER_USER") -val akkaManagementVersion = "1.2.0" +val akkaManagementVersion = "1.5.0-M2" libraryDependencies ++= Vector( "com.lightbend.akka.management" %% "akka-management-cluster-bootstrap" % akkaManagementVersion, diff --git a/integration-test/marathon-api/build.sbt b/integration-test/marathon-api/build.sbt index caef58cdd..1c91bd977 100644 --- a/integration-test/marathon-api/build.sbt +++ b/integration-test/marathon-api/build.sbt @@ -8,7 +8,7 @@ version := "0.1.0" scalaVersion := "2.13.12" -val akkaManagementVersion = "1.2.0" +val akkaManagementVersion = "1.5.0-M2" libraryDependencies ++= Vector( "com.lightbend.akka.management" %% "akka-management-cluster-bootstrap" % akkaManagementVersion, diff --git a/project/Dependencies.scala b/project/Dependencies.scala index 19910f6a3..91d026e47 100644 --- a/project/Dependencies.scala +++ b/project/Dependencies.scala @@ -8,10 +8,10 @@ object Dependencies { val CrossScalaVersions = Seq(Scala213, Scala3) // Align the versions in integration-test/kubernetes-api-java/pom.xml - val AkkaVersion = "2.9.0-M3" + val AkkaVersion = "2.9.0" val AkkaBinaryVersion = "2.9" // Align the versions in integration-test/kubernetes-api-java/pom.xml - val AkkaHttpVersion = "10.6.0-M2" + val AkkaHttpVersion = "10.6.0" val AkkaHttpBinaryVersion = "10.6" val ScalaTestVersion = "3.2.17"