@@ -59,9 +59,9 @@ ThisBuild / mimaBinaryIssueFilters ++= List(
5959
6060// This is used in a couple places
6161lazy val fs2Version = " 3.11.0"
62- lazy val openTelemetryVersion = " 1.29.0 "
62+ lazy val openTelemetryVersion = " 1.44.1 "
6363lazy val otel4sVersion = " 0.11.1"
64- lazy val refinedVersion = " 0.11.0 "
64+ lazy val refinedVersion = " 0.11.2 "
6565
6666// Global Settings
6767lazy val commonSettings = Seq (
@@ -110,7 +110,7 @@ lazy val core = crossProject(JVMPlatform, JSPlatform, NativePlatform)
110110 name := " skunk-core" ,
111111 description := " Tagless, non-blocking data access library for Postgres." ,
112112 libraryDependencies ++= Seq (
113- " org.typelevel" %%% " cats-core" % " 2.11 .0" ,
113+ " org.typelevel" %%% " cats-core" % " 2.12 .0" ,
114114 " org.typelevel" %%% " cats-effect" % " 3.5.6" ,
115115 " co.fs2" %%% " fs2-core" % fs2Version,
116116 " co.fs2" %%% " fs2-io" % fs2Version,
@@ -119,17 +119,17 @@ lazy val core = crossProject(JVMPlatform, JSPlatform, NativePlatform)
119119 " org.scodec" %%% " scodec-cats" % " 1.2.0" ,
120120 " org.typelevel" %%% " otel4s-core-trace" % otel4sVersion,
121121 " org.tpolecat" %%% " sourcepos" % " 1.1.0" ,
122- " org.typelevel" %%% " twiddles-core" % " 0.8 .0" ,
122+ " org.typelevel" %%% " twiddles-core" % " 0.9 .0" ,
123123 ) ++ Seq (
124- " com.beachape" %%% " enumeratum" % " 1.7.4 " ,
124+ " com.beachape" %%% " enumeratum" % " 1.7.5 " ,
125125 ).filterNot(_ => tlIsScala3.value)
126126 ).jvmSettings(
127127 libraryDependencies += " com.ongres.scram" % " client" % " 2.1" ,
128128 ).platformsSettings(JSPlatform , NativePlatform )(
129129 libraryDependencies ++= Seq (
130130 " com.armanbilge" %%% " saslprep" % " 0.1.1" ,
131- " io.github.cquiroz" %%% " scala-java-time" % " 2.5 .0" ,
132- " io.github.cquiroz" %%% " locales-minimal-en_us-db" % " 1.5.3 "
131+ " io.github.cquiroz" %%% " scala-java-time" % " 2.6 .0" ,
132+ " io.github.cquiroz" %%% " locales-minimal-en_us-db" % " 1.5.4 "
133133 ),
134134 )
135135
@@ -155,8 +155,8 @@ lazy val circe = crossProject(JVMPlatform, JSPlatform, NativePlatform)
155155 .settings(
156156 name := " skunk-circe" ,
157157 libraryDependencies ++= Seq (
158- " io.circe" %%% " circe-core" % " 0.14.8 " ,
159- " io.circe" %%% " circe-jawn" % " 0.14.8 "
158+ " io.circe" %%% " circe-core" % " 0.14.10 " ,
159+ " io.circe" %%% " circe-jawn" % " 0.14.10 "
160160 )
161161 )
162162
@@ -182,14 +182,14 @@ lazy val tests = crossProject(JVMPlatform, JSPlatform, NativePlatform)
182182 .settings(
183183 tlFatalWarnings := false ,
184184 libraryDependencies ++= Seq (
185- " org.scalameta" %%% " munit" % " 1.0.0 " ,
185+ " org.scalameta" %%% " munit" % " 1.0.2 " ,
186186 " org.scalameta" % " junit-interface" % " 1.0.2" ,
187187 " org.typelevel" %%% " scalacheck-effect-munit" % " 2.0.0-M2" ,
188188 " org.typelevel" %%% " munit-cats-effect" % " 2.0.0" ,
189- " org.typelevel" %%% " cats-free" % " 2.11 .0" ,
190- " org.typelevel" %%% " cats-laws" % " 2.11 .0" ,
189+ " org.typelevel" %%% " cats-free" % " 2.12 .0" ,
190+ " org.typelevel" %%% " cats-laws" % " 2.12 .0" ,
191191 " org.typelevel" %%% " cats-effect-testkit" % " 3.5.6" ,
192- " org.typelevel" %%% " discipline-munit" % " 2.0.0-M3 " ,
192+ " org.typelevel" %%% " discipline-munit" % " 2.0.0" ,
193193 " org.typelevel" %%% " cats-time" % " 0.5.1" ,
194194 " eu.timepit" %%% " refined-cats" % refinedVersion,
195195 " org.typelevel" %%% " otel4s-sdk-trace" % otel4sVersion,
@@ -248,7 +248,7 @@ lazy val bench = project
248248 .dependsOn(core.jvm)
249249 .settings(commonSettings)
250250 .settings(
251- libraryDependencies += " org.postgresql" % " postgresql" % " 42.7.2 "
251+ libraryDependencies += " org.postgresql" % " postgresql" % " 42.7.4 "
252252 )
253253
254254lazy val unidocs = project
0 commit comments