Skip to content

Commit 2e5c1b0

Browse files
authored
Merge pull request #78 from ovotech/updates
Updates
2 parents e5c105b + 4a870cf commit 2e5c1b0

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

build.sbt

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import microsites.MicrositesPlugin.autoImport.micrositeDescription
22

3-
val scalaVer: String = "2.13.7"
3+
val scalaVer: String = "2.13.8"
44

55
ThisBuild / scalaVersion := scalaVer
66

@@ -44,8 +44,8 @@ val common = Seq(
4444
libraryDependencies ++= Seq(
4545
compilerPlugin("com.olegpy" %% "better-monadic-for" % "0.3.1"),
4646
compilerPlugin("org.typelevel" % "kind-projector" % "0.13.2" cross CrossVersion.full),
47-
"org.typelevel" %% "cats-core" % "2.6.1",
48-
"org.typelevel" %% "cats-effect" % "3.2.9",
47+
"org.typelevel" %% "cats-core" % "2.7.0",
48+
"org.typelevel" %% "cats-effect" % "3.3.5",
4949
"org.scalameta" %% "munit" % "0.7.29" % Test,
5050
"org.scalacheck" %% "scalacheck" % "1.15.4" % Test,
5151
"org.typelevel" %% "munit-cats-effect-3" % "1.0.7" % Test,
@@ -58,14 +58,14 @@ lazy val metricsCommon = project
5858
.enablePlugins(GitVersioning)
5959
.settings(common :+ (name := "natchez-extras-metrics"))
6060

61-
val log4catsVersion = "2.1.1"
62-
val natchezVersion = "0.1.5"
63-
val http4sMilestoneVersion = "1.0.0-M29"
64-
val http4sStableVersion = "0.23.6"
61+
val log4catsVersion = "2.2.0"
62+
val natchezVersion = "0.1.6"
63+
val http4sMilestoneVersion = "1.0.0-M30"
64+
val http4sStableVersion = "0.23.9"
6565
val circeVersion = "0.14.1"
66-
val slf4jVersion = "1.7.32"
67-
val fs2Version = "3.2.2"
68-
val doobieVersion = "1.0.0-RC1"
66+
val slf4jVersion = "1.7.35"
67+
val fs2Version = "3.2.4"
68+
val doobieVersion = "1.0.0-RC2"
6969

7070
lazy val natchezDatadog = projectMatrix
7171
.in(file("natchez-extras-datadog"))

natchez-extras-datadog/src/main/scala/com/ovoenergy/natchez/extras/datadog/Datadog.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ object Datadog {
2929
Resource.eval(Queue.circularBuffer[F, SubmittableSpan](capacity = 1000))
3030

3131
private implicit def encoder[F[_], A: Encoder]: EntityEncoder[F, A] =
32-
builder.withPrinter(Printer.noSpaces.copy(dropNullValues = true)).build.jsonEncoderOf[F, A]
32+
builder.withPrinter(Printer.noSpaces.copy(dropNullValues = true)).build.jsonEncoderOf
3333

3434
/**
3535
* Take items from the queue until it blocks

0 commit comments

Comments
 (0)