-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into update/fs2-io-3.9.2
- Loading branch information
Showing
7 changed files
with
115 additions
and
110 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
version = "3.7.5" | ||
version = "3.7.15" | ||
|
||
style = default | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,13 +3,13 @@ import com.typesafe.tools.mima.core._ | |
ThisBuild / tlBaseVersion := "0.3" | ||
|
||
val scala212Version = "2.12.18" | ||
val scala213Version = "2.13.11" | ||
val scala30Version = "3.3.0" | ||
val scala213Version = "2.13.12" | ||
val scala30Version = "3.3.1" | ||
|
||
val collectionCompatVersion = "2.11.0" | ||
|
||
val catsVersion = "2.9.0" | ||
val catsEffectVersion = "3.5.1" | ||
val catsVersion = "2.10.0" | ||
val catsEffectVersion = "3.5.2" | ||
val fs2Version = "3.9.2" | ||
|
||
// Publishing | ||
|
@@ -180,7 +180,7 @@ lazy val lightstepGrpc = project | |
libraryDependencies ++= Seq( | ||
"com.lightstep.tracer" % "tracer-grpc" % "0.32.0", | ||
"io.grpc" % "grpc-netty" % "1.56.0", | ||
"io.netty" % "netty-tcnative-boringssl-static" % "2.0.61.Final" | ||
"io.netty" % "netty-tcnative-boringssl-static" % "2.0.62.Final" | ||
), | ||
mimaPreviousArtifacts := Set() | ||
) | ||
|
@@ -236,8 +236,8 @@ lazy val datadog = project | |
name := "natchez-datadog", | ||
description := "Datadog bindings for Natchez.", | ||
libraryDependencies ++= Seq( | ||
"com.datadoghq" % "dd-trace-ot" % "1.17.0", | ||
"com.datadoghq" % "dd-trace-api" % "1.17.0" | ||
"com.datadoghq" % "dd-trace-ot" % "1.22.0", | ||
"com.datadoghq" % "dd-trace-api" % "1.22.0" | ||
) | ||
) | ||
|
||
|
@@ -250,7 +250,7 @@ lazy val log = crossProject(JSPlatform, JVMPlatform, NativePlatform) | |
name := "natchez-log", | ||
description := "Logging bindings for Natchez, using log4cats.", | ||
libraryDependencies ++= Seq( | ||
"io.circe" %%% "circe-core" % "0.14.5", | ||
"io.circe" %%% "circe-core" % "0.14.6", | ||
"org.typelevel" %%% "log4cats-core" % "2.6.0", | ||
"io.github.cquiroz" %%% "scala-java-time" % "2.5.0" % Test | ||
) | ||
|
@@ -268,10 +268,10 @@ lazy val newrelic = project | |
name := "newrelic", | ||
description := "Newrelic bindings for Natchez.", | ||
libraryDependencies ++= Seq( | ||
"io.circe" %% "circe-core" % "0.14.5", | ||
"io.circe" %% "circe-core" % "0.14.6", | ||
"com.newrelic.telemetry" % "telemetry" % "0.10.0", | ||
"com.newrelic.telemetry" % "telemetry-core" % "0.15.0", | ||
"com.newrelic.telemetry" % "telemetry-http-okhttp" % "0.15.0" | ||
"com.newrelic.telemetry" % "telemetry-core" % "0.16.0", | ||
"com.newrelic.telemetry" % "telemetry-http-okhttp" % "0.16.0" | ||
) | ||
) | ||
|
||
|
@@ -287,7 +287,7 @@ lazy val mtl = crossProject(JSPlatform, JVMPlatform, NativePlatform) | |
"org.typelevel" %%% "cats-mtl" % "1.3.1", | ||
"org.typelevel" %%% "cats-mtl-laws" % "1.3.1" % Test, | ||
"org.typelevel" %%% "discipline-munit" % "2.0.0-M3" % Test, | ||
"org.typelevel" %%% "cats-effect-testkit" % "3.5.1" % Test | ||
"org.typelevel" %%% "cats-effect-testkit" % "3.5.2" % Test | ||
) | ||
) | ||
.nativeSettings( | ||
|
@@ -318,10 +318,10 @@ lazy val xray = crossProject(JSPlatform, JVMPlatform) | |
name := "natchez-xray", | ||
description := "AWS X-Ray bindings implementation", | ||
libraryDependencies ++= Seq( | ||
"io.circe" %%% "circe-core" % "0.14.5", | ||
"io.circe" %%% "circe-core" % "0.14.6", | ||
"co.fs2" %%% "fs2-io" % fs2Version, | ||
"com.comcast" %%% "ip4s-core" % "3.3.0", | ||
"org.scodec" %%% "scodec-bits" % "1.1.37" | ||
"com.comcast" %%% "ip4s-core" % "3.4.0", | ||
"org.scodec" %%% "scodec-bits" % "1.1.38" | ||
) | ||
) | ||
.jsSettings( | ||
|
@@ -362,9 +362,9 @@ lazy val examples = project | |
scalacOptions -= "-Xfatal-warnings", | ||
libraryDependencies ++= Seq( | ||
"org.typelevel" %% "log4cats-slf4j" % "2.6.0", | ||
"org.slf4j" % "slf4j-simple" % "2.0.7", | ||
"org.slf4j" % "slf4j-simple" % "2.0.9", | ||
"eu.timepit" %% "refined" % "0.11.0", | ||
"is.cir" %% "ciris" % "3.2.0", | ||
"is.cir" %% "ciris" % "3.4.0", | ||
"io.opentelemetry" % "opentelemetry-exporter-otlp" % "1.27.0", | ||
"io.grpc" % "grpc-okhttp" % "1.56.0" // required for the OpenTelemetry exporter | ||
) | ||
|
@@ -407,7 +407,7 @@ lazy val docs = project | |
.enablePlugins(MdocPlugin) | ||
.settings( | ||
scalacOptions := Nil, | ||
git.remoteRepo := "[email protected]:tpolecat/natchez.git", | ||
git.remoteRepo := "[email protected]:typelevel/natchez.git", | ||
ghpagesNoJekyll := true, | ||
publish / skip := true, | ||
paradoxTheme := Some(builtinParadoxTheme("generic")), | ||
|
@@ -434,7 +434,7 @@ lazy val docs = project | |
"org.http4s" %% "http4s-dsl" % "0.23.15", | ||
"org.http4s" %% "http4s-client" % "0.23.15", | ||
"org.typelevel" %% "log4cats-slf4j" % "2.4.0", | ||
"org.slf4j" % "slf4j-simple" % "2.0.7", | ||
"org.slf4j" % "slf4j-simple" % "2.0.9", | ||
"io.opentelemetry" % "opentelemetry-exporter-otlp" % "1.27.0" // for the opentelemetry example | ||
), | ||
excludeDependencies += "org.scala-lang.modules" % "scala-collection-compat_3" // pray this does more good than harm | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
sbt.version=1.9.3 | ||
sbt.version=1.9.7 |
Oops, something went wrong.