Skip to content

Releases: lerna-stack/lerna.g8

v2022.12.0

26 Dec 05:58
4a970a8
Compare
Choose a tag to compare

CHANGELOG is available at here.

v2022.3.0

25 Mar 06:43
5a4f787
Compare
Choose a tag to compare

CHANGELOG is available at here.

v2021.10.0

22 Oct 08:39
f9dd5f1
Compare
Choose a tag to compare

The CHANGELOG is available at here.

v2021.7.0

16 Jul 08:13
c29bc46
Compare
Choose a tag to compare

Comparing v2020.12.0...v2021.7.0 · lerna-stack/lerna.g8

Changed

  • StandardSpec uses should.matchers instead of must.matchers
    Since the ScalaTestWithActorTestKit uses should.matchers,
    the change makes us easy to use both StandardSpec andScalaTestWithActorTestKit at the same time.

Dependency updates

  • Update Scala to 2.13.6
  • Add akka-entity-replication 2.0.0
  • Update lerna-app-library to 2.0.0
  • Update scalatest to 3.1.4
  • Update akka to 2.6.12
  • Update akka-http to 10.2.4
  • Remove akka-kryo-serialization
    Use akka-serialization-jackson instead.
    We'd like to use JSON as a serialization format for persistence.
  • Add akka-serialization-jackson 2.6.12
    The version is the same as other Akka modules.
  • Add jackson modules (the version is 2.12.3) as direct dependencies
    It would be great that all jackson modules should be the same version.
  • Add akka-projection-eventsourced 1.1.0
  • Add akka-projection-slick 1.1.0
  • Update slick to 3.3.3
  • Update sbt-wartremover to 2.4.13
  • Update sbt-scoverage to 1.8.2

Use Akka Typed instead of Akka Classic

  • Use akka-actor-typed instead of akka-actor
  • Use akka-cluster-typed instead of akka-cluster
  • Use akka-cluster-sharding-typed instead of akka-cluster-sharding
  • Use akka-persistence-typed instead of akka-persistence
  • Remove the direct dependency akka-slf4j
    We don't need to specify the dependency since we use akka-actor-typed instead.
  • Add akka-persistence-testkit
    It would be great to test EventSourcedBehaviors
  • Use typed.ActorSystem[T] instead of classic ActorSystem
    It is recommended to use typed.ActorSystem rather than classic ActorSystem for new projects.