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 #678

Merged
merged 1 commit into from
Feb 20, 2025
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: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ lazy val commonSettings = Seq(
organizationName := "Evolution Gaming",
organizationHomepage := Some(url("https://evolution.com/")),
publishTo := Some(Resolver.evolutionReleases),
scalaVersion := "2.13.15",
scalaVersion := "2.13.16",
licenses := Seq(("MIT", url("https://opensource.org/licenses/MIT"))),
testFrameworks += new TestFramework("munit.Framework"),
testOptions += Tests.Argument(new TestFramework("munit.Framework"), "+l"),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ object MonadStateHelper {
implicit class MonadStateOps[F[_]: Functor, A, B](val self: Stateful[F, A]) {
def focus(lens: Lens[A, B]): Stateful[F, B] = new Stateful[F, B] {
val monad = self.monad
def get = self.get map lens.get
def set(b: B) = self modify lens.set(b)
def get = self.get.map(lens.get(_))
def set(b: B) = self.modify(lens.replace(b))
}
}

Expand Down
28 changes: 14 additions & 14 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -2,38 +2,38 @@ import sbt.*

object Dependencies {

val catsHelper = "com.evolutiongaming" %% "cats-helper" % "3.9.0"
val catsHelperLogback = "com.evolutiongaming" %% "cats-helper-logback" % "3.9.0"
val smetrics = "com.evolutiongaming" %% "smetrics" % "2.1.0"
val catsHelper = "com.evolutiongaming" %% "cats-helper" % "3.11.3"
val catsHelperLogback = "com.evolutiongaming" %% "cats-helper-logback" % "3.11.3"
val smetrics = "com.evolutiongaming" %% "smetrics" % "2.2.0"
val scache = "com.evolution" %% "scache" % "5.1.2"
val skafka = "com.evolutiongaming" %% "skafka" % "17.1.2"
val sstream = "com.evolutiongaming" %% "sstream" % "1.0.1"
val scassandra = "com.evolutiongaming" %% "scassandra" % "5.2.1"
val skafka = "com.evolutiongaming" %% "skafka" % "17.1.3"
val sstream = "com.evolutiongaming" %% "sstream" % "1.0.2"
val scassandra = "com.evolutiongaming" %% "scassandra" % "5.3.0"

object Cats {
private val version = "2.10.0"
private val effectVersion = "3.4.11"
private val version = "2.13.0"
private val effectVersion = "3.5.7"
val core = "org.typelevel" %% "cats-core" % version
val mtl = "org.typelevel" %% "cats-mtl" % "1.3.1"
val mtl = "org.typelevel" %% "cats-mtl" % "1.5.0"
val effect = "org.typelevel" %% "cats-effect" % effectVersion
val effectTestkit = "org.typelevel" %% "cats-effect-testkit" % effectVersion
}

object KafkaJournal {
private val version = "4.1.1"
private val version = "4.1.7"
val journal = "com.evolutiongaming" %% "kafka-journal" % version
val cassandra = "com.evolutiongaming" %% "kafka-journal-eventual-cassandra" % version
val persistence = "com.evolutiongaming" %% "kafka-journal-persistence" % version
}

object Monocle {
private val version = "2.1.0"
val core = "com.github.julien-truffaut" %% "monocle-core" % version
val `macro` = "com.github.julien-truffaut" %% "monocle-macro" % version
private val version = "3.3.0"
val core = "dev.optics" %% "monocle-core" % version
val `macro` = "dev.optics" %% "monocle-macro" % version
}

object Testing {
val munit = "org.scalameta" %% "munit" % "1.0.0-M10"
val munit = "org.scalameta" %% "munit" % "1.1.0"

object Testcontainers {
private val version = "0.41.8"
Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=1.10.1
sbt.version=1.10.7
10 changes: 5 additions & 5 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@ libraryDependencySchemes ++= Seq(
"org.scala-lang.modules" %% "scala-xml" % "always"
)

addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.2.2")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.3.0")

addSbtPlugin("org.scoverage" % "sbt-coveralls" % "1.3.11")
addSbtPlugin("org.scoverage" % "sbt-coveralls" % "1.3.15")

// This sets the 'version' property based on the git tag during release process to publish the right version
addSbtPlugin("com.github.sbt" % "sbt-dynver" % "5.0.1")
addSbtPlugin("com.github.sbt" % "sbt-dynver" % "5.1.0")

addSbtPlugin("org.scalameta" % "sbt-mdoc" % "2.3.8")
addSbtPlugin("org.scalameta" % "sbt-mdoc" % "2.6.4")

addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.2")
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.4")

addSbtPlugin("com.evolution" % "sbt-scalac-opts-plugin" % "0.0.9")

Expand Down
Loading