Skip to content

Commit

Permalink
Update to Akka 2.7.0, Akka HTTP 10.4.0 (#2931)
Browse files Browse the repository at this point in the history
* and Akka gRPC 2.2.0
* and Jackson databind 2.13.4.2
  • Loading branch information
patriknw committed Oct 20, 2022
1 parent 55087ff commit 09845f2
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 5 deletions.
13 changes: 13 additions & 0 deletions docs/src/main/paradox/release-notes/5.0.x.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
---
project.description: Release notes for all Alpakka 5.0.x releases.
---
# Alpakka 5.0.x

@@@ note { title="Major version change" }
The major version tick for Alpakka is due to major upgrades and changes in the dependencies used by the various connectors.

To understand the forces on version numbers, read about @ref:[Alpakka's versioning scheme](../other-docs/versioning.md).

@@@

See the [GitHub releases page](https://github.com/akka/alpakka/releases).
1 change: 1 addition & 0 deletions docs/src/main/paradox/release-notes/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ To understand the forces on version numbers, read about @ref:[Alpakka's versioni

@@@ index

* [5.0.x](5.0.x.md)
* [4.0.x](4.0.x.md)
* [3.0.x](3.0.x.md)
* [2.0.x](2.0.x.md)
Expand Down
8 changes: 4 additions & 4 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ object Dependencies {
val Scala212 = "2.12.17"
val ScalaVersions = Seq(Scala213, Scala212)

val AkkaVersion = "2.7.0-M5"
val AkkaVersion = "2.7.0"
val AkkaBinaryVersion = "2.7"

val InfluxDBJavaVersion = "2.15"
Expand All @@ -18,9 +18,9 @@ object Dependencies {
val AwsSpiAkkaHttpVersion = "0.0.11"
// Sync with plugins.sbt
val AkkaGrpcBinaryVersion = "2.2"
val AkkaHttpVersion = "10.4.0-M2"
val AkkaHttpVersion = "10.4.0"
val AkkaHttpBinaryVersion = "10.4"
val AlpakkaKafkaVersion = "3.1.0-M2"
val AlpakkaKafkaVersion = "4.0.0"
val ScalaTestVersion = "3.2.11"
val TestContainersScalaTestVersion = "0.40.3"
val mockitoVersion = "4.8.0" // check even https://github.com/scalatest/scalatestplus-mockito/releases
Expand Down Expand Up @@ -66,7 +66,7 @@ object Dependencies {
// This should align with the Jackson minor version used in Akka 2.7.x
// https://github.com/akka/akka/blob/main/project/Dependencies.scala#L29
val JacksonVersion = "2.13.4"
val JacksonDatabindVersion = "2.13.4.1"
val JacksonDatabindVersion = "2.13.4.2"
val JacksonDatabindDependencies = Seq(
"com.fasterxml.jackson.core" % "jackson-core" % JacksonVersion,
"com.fasterxml.jackson.core" % "jackson-databind" % JacksonDatabindVersion
Expand Down
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ addSbtPlugin("com.github.sbt" % "sbt-unidoc" % "0.5.0")
addSbtPlugin("com.thoughtworks.sbt-api-mappings" % "sbt-api-mappings" % "3.0.2")
addSbtPlugin("com.typesafe.sbt" % "sbt-site" % "1.4.1")
// Akka gRPC -- sync with version in Dependencies.scala:19
addSbtPlugin("com.lightbend.akka.grpc" % "sbt-akka-grpc" % "2.2.0-M2")
addSbtPlugin("com.lightbend.akka.grpc" % "sbt-akka-grpc" % "2.2.0")
// templating
addSbtPlugin("io.spray" % "sbt-boilerplate" % "0.6.1")

0 comments on commit 09845f2

Please sign in to comment.