Skip to content

Commit

Permalink
Merge pull request #592 from scala-steward/update/log4cats-core-2.4.0
Browse files Browse the repository at this point in the history
Update log4cats-core, log4cats-slf4j to 2.4.0
  • Loading branch information
mpilquist authored Oct 1, 2022
2 parents 45a1d7e + 3b756ea commit cc49630
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ lazy val log = crossProject(JSPlatform, JVMPlatform)
description := "Logging bindings for Natchez, using log4cats.",
libraryDependencies ++= Seq(
"io.circe" %%% "circe-core" % "0.14.1",
"org.typelevel" %%% "log4cats-core" % "2.1.1",
"org.typelevel" %%% "log4cats-core" % "2.4.0",
"io.github.cquiroz" %%% "scala-java-time" % "2.3.0" % Test,
)
)
Expand Down Expand Up @@ -362,7 +362,7 @@ lazy val examples = project
description := "Example programs for Natchez.",
scalacOptions -= "-Xfatal-warnings",
libraryDependencies ++= Seq(
"org.typelevel" %% "log4cats-slf4j" % "2.1.1",
"org.typelevel" %% "log4cats-slf4j" % "2.4.0",
"org.slf4j" % "slf4j-simple" % "2.0.0",
"eu.timepit" %% "refined" % "0.9.28",
"is.cir" %% "ciris" % "2.3.2"
Expand Down Expand Up @@ -416,7 +416,7 @@ lazy val docs = project
libraryDependencies ++= Seq(
"org.http4s" %% "http4s-dsl" % "0.23.15",
"org.http4s" %% "http4s-client" % "0.23.15",
"org.typelevel" %% "log4cats-slf4j" % "2.1.1",
"org.typelevel" %% "log4cats-slf4j" % "2.4.0",
"org.slf4j" % "slf4j-simple" % "2.0.0",
),
excludeDependencies += "org.scala-lang.modules" % "scala-collection-compat_3", // pray this does more good than harm
Expand Down
2 changes: 1 addition & 1 deletion modules/lightstep/src/main/scala/Lightstep.scala
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ package natchez
package lightstep

import cats.effect.{ Resource, Sync }
import cats.implicits._
import cats.syntax.all._
import com.lightstep.tracer.shared.Options.OptionsBuilder
import io.opentracing.Tracer
import natchez.opentracing.GlobalTracer
Expand Down
2 changes: 1 addition & 1 deletion modules/lightstep/src/main/scala/LightstepEntryPoint.scala
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ package natchez
package lightstep

import cats.effect.{ Resource, Sync }
import cats.implicits._
import cats.syntax.all._
import io.opentracing.Tracer
import io.opentracing.propagation.{ Format, TextMapAdapter }

Expand Down
2 changes: 1 addition & 1 deletion modules/mock/src/main/scala/MockSpan.scala
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ package mock
import scala.jdk.CollectionConverters._

import cats.effect.{ Resource, Sync }
import cats.implicits._
import cats.syntax.all._
import io.{ opentracing => ot }
import io.opentracing.propagation.{ Format, TextMapAdapter }
import natchez.TraceValue.{ BooleanValue, NumberValue, StringValue }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
package natchez.newrelic

import cats.effect._
import cats.implicits._
import cats.syntax.all._
import com.newrelic.telemetry.spans.SpanBatchSender
import natchez.{EntryPoint, Kernel, Span}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import java.util.UUID

import cats.effect.Ref
import cats.effect.{Resource, Sync}
import cats.implicits._
import cats.syntax.all._
import com.newrelic.telemetry.Attributes
import com.newrelic.telemetry.spans.{Span, SpanBatch, SpanBatchSender}
import natchez.TraceValue.{BooleanValue, NumberValue, StringValue}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ package natchez
package opentracing

import cats.effect.Sync
import cats.implicits._
import cats.syntax.all._
import io.opentracing.util.{ GlobalTracer => GT }
import io.{opentracing => ot}

Expand Down

0 comments on commit cc49630

Please sign in to comment.