@@ -129,9 +129,6 @@ val playJsonVersion = "3.0.6"
129129val catsEffect_3_version = " 3.7.0"
130130val fs2_3_version = " 3.13.0"
131131
132- // This version provides Scala Native 0.5.x support. Drop this when 3.7.0 is released.
133- val catsEffect_3_RC_version = " 3.7.0-RC1"
134-
135132val catsEffect_2_version = " 2.5.5"
136133
137134val fs2_2_version = " 2.5.13"
@@ -150,7 +147,7 @@ val scalaTest = libraryDependencies ++= Seq("freespec", "funsuite", "flatspec",
150147val scalaTestPlusScalaCheck = libraryDependencies += " org.scalatestplus" %% " scalacheck-1-18" % " 3.2.19.0" % Test
151148
152149val zio1Version = " 1.0.18"
153- val zio2Version = " 2.1.24 "
150+ val zio2Version = " 2.1.25 "
154151val zio1InteropRsVersion = " 1.3.12"
155152val zio2InteropRsVersion = " 2.0.2"
156153
@@ -165,13 +162,13 @@ val braveOpentracingVersion = "1.0.1"
165162val zipkinSenderOkHttpVersion = " 3.5.1"
166163val resilience4jVersion = " 2.4.0"
167164val http4s_ce2_version = " 0.22.15"
168- val http4s_ce3_version = " 0.23.33 "
165+ val http4s_ce3_version = " 0.23.34 "
169166val osLibVersion = " 0.11.4"
170- val tethysVersion = " 0.29.7 "
167+ val tethysVersion = " 0.29.8 "
171168val openTelemetryVersion = " 1.59.0"
172169val openTelemetrySemconvVersion = " 1.40.0"
173- val otel4s = " 0.15.2 "
174- val otel4sSdk = " 0.17 .0"
170+ val otel4s = " 0.16.0 "
171+ val otel4sSdk = " 0.18 .0"
175172val slf4jVersion = " 1.7.36"
176173
177174val compileAndTest = " compile->compile;test->test"
@@ -397,13 +394,10 @@ lazy val catsCe2 = (projectMatrix in file("effects/cats-ce2"))
397394 )
398395
399396lazy val catsEffect = Def .setting {
400- val ceVersion =
401- if (virtualAxes.value.contains(VirtualAxis .native)) catsEffect_3_RC_version
402- else catsEffect_3_version
403397 Seq (
404- " org.typelevel" %%% " cats-effect-kernel" % ceVersion ,
405- " org.typelevel" %%% " cats-effect-std" % ceVersion ,
406- " org.typelevel" %%% " cats-effect" % ceVersion % Test
398+ " org.typelevel" %%% " cats-effect-kernel" % catsEffect_3_version ,
399+ " org.typelevel" %%% " cats-effect-std" % catsEffect_3_version ,
400+ " org.typelevel" %%% " cats-effect" % catsEffect_3_version % Test
407401 )
408402}
409403
@@ -424,7 +418,7 @@ lazy val cats = (projectMatrix in file("effects/cats"))
424418 settings = commonJsSettings ++ commonJsBackendSettings ++ browserChromeTestSettings ++ testServerSettings
425419 )
426420 .nativePlatform(
427- scalaVersions = List (scala3) ,
421+ scalaVersions = scala2And3 ,
428422 settings = commonNativeSettings ++ testServerSettings
429423 )
430424
@@ -665,7 +659,7 @@ lazy val http4sBackend = (projectMatrix in file("http4s-backend"))
665659 name := " http4s-backend" ,
666660 libraryDependencies ++= Seq (
667661 " org.http4s" %% " http4s-client" % http4s_ce3_version,
668- " org.http4s" %% " http4s-ember-client" % " 0.23.33 " % Optional ,
662+ " org.http4s" %% " http4s-ember-client" % " 0.23.34 " % Optional ,
669663 " org.http4s" %% " http4s-blaze-client" % " 0.23.17" % Optional
670664 ),
671665 evictionErrorLevel := Level .Info
@@ -691,7 +685,7 @@ lazy val armeriaBackend = (projectMatrix in file("armeria-backend"))
691685 .settings(testServerSettings)
692686 .settings(
693687 name := " armeria-backend" ,
694- libraryDependencies += " com.linecorp.armeria" % " armeria" % " 1.37 .0"
688+ libraryDependencies += " com.linecorp.armeria" % " armeria" % " 1.38 .0"
695689 )
696690 .jvmPlatform(scalaVersions = scala2And3)
697691 .dependsOn(core % compileAndTest)
@@ -975,13 +969,14 @@ lazy val otel4sMetricsBackend = (projectMatrix in file("observability/otel4s-met
975969 libraryDependencies ++= Seq (
976970 " org.typelevel" %%% " otel4s-core-metrics" % otel4s,
977971 " org.typelevel" %%% " otel4s-semconv" % otel4s,
978- " org.typelevel" %%% " otel4s-semconv-experimental" % otel4s,
972+ " org.typelevel" %%% " otel4s-semconv-experimental" % otel4s % Test ,
979973 " org.typelevel" %%% " otel4s-semconv-metrics-experimental" % otel4s % Test ,
980974 " org.typelevel" %%% " otel4s-sdk-metrics-testkit" % otel4sSdk % Test
981975 )
982976 )
983977 .jvmPlatform(scalaVersions = scala2_13And3, settings = commonJvmSettings)
984978 .jsPlatform(scalaVersions = scala2_13And3, settings = commonJsSettings)
979+ .nativePlatform(scalaVersions = scala2_13And3, settings = commonNativeSettings)
985980 .dependsOn(cats % Test )
986981 .dependsOn(core % compileAndTest)
987982
@@ -997,6 +992,7 @@ lazy val otel4sTracingBackend = (projectMatrix in file("observability/otel4s-tra
997992 )
998993 .jvmPlatform(scalaVersions = scala2_13And3, settings = commonJvmSettings)
999994 .jsPlatform(scalaVersions = scala2_13And3, settings = commonJsSettings)
995+ .nativePlatform(scalaVersions = scala2_13And3, settings = commonNativeSettings)
1000996 .dependsOn(cats % Test )
1001997 .dependsOn(core % compileAndTest)
1002998
0 commit comments