Skip to content

Commit

Permalink
Merge branch 'main' into update/google-cloud-monitoring-3.55.0
Browse files Browse the repository at this point in the history
  • Loading branch information
satabin authored Dec 9, 2024
2 parents c5b0304 + d8a9aba commit e9f78eb
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ val commonSettings = List(
libraryDependencies ++= Seq(
"org.scalameta" %%% "munit" % Versions.munit % Test,
"org.typelevel" %%% "munit-cats-effect" % Versions.munitCatsEffect % Test,
"org.typelevel" %%% "cats-effect-testkit" % "3.5.5" % Test
"org.typelevel" %%% "cats-effect-testkit" % "3.5.7" % Test
),
scalacOptions += (scalaVersion.value match {
case Scala213 => "-Wunused"
Expand Down Expand Up @@ -113,7 +113,7 @@ lazy val otel4s = crossProject(JVMPlatform)
name := "fs2-queues-otel4s",
description := "Support for metrics and tracing using otel4s",
libraryDependencies ++= List(
"org.typelevel" %%% "otel4s-core" % "0.11.0"
"org.typelevel" %%% "otel4s-core" % "0.11.2"
)
)
.dependsOn(core, testing % Test)
Expand All @@ -137,7 +137,7 @@ lazy val azureServiceBus = crossProject(JVMPlatform)
.settings(
name := "fs2-queues-azure-service-bus",
libraryDependencies ++= List(
"com.azure" % "azure-messaging-servicebus" % "7.17.5"
"com.azure" % "azure-messaging-servicebus" % "7.17.7"
)
)
.dependsOn(core, testkit % Test)
Expand All @@ -160,7 +160,7 @@ lazy val awsSQS = crossProject(JVMPlatform)
.settings(
name := "fs2-queues-aws-sqs",
libraryDependencies ++= List(
"software.amazon.awssdk" % "sqs" % "2.29.7"
"software.amazon.awssdk" % "sqs" % "2.29.29"
)
)
.dependsOn(core)
Expand All @@ -178,7 +178,7 @@ lazy val gcpPubSub = crossProject(JVMPlatform)
.settings(
name := "fs2-queues-gcp-pubsub",
libraryDependencies ++= List(
"com.google.cloud" % "google-cloud-pubsub" % "1.134.1",
"com.google.cloud" % "google-cloud-pubsub" % "1.134.2",
"com.google.cloud" % "google-cloud-monitoring" % "3.55.0"
),
// TODO: Remove once next version is published
Expand Down Expand Up @@ -216,7 +216,7 @@ lazy val docs = project
tlFatalWarnings := false,
libraryDependencies ++= List(
"com.azure" % "azure-identity" % "1.11.1",
"org.typelevel" %% "cats-effect-testkit" % "3.5.5"
"org.typelevel" %% "cats-effect-testkit" % "3.5.7"
)
)
.dependsOn(circe.jvm, azureServiceBus.jvm, awsSQS.jvm, gcpPubSub.jvm, otel4s.jvm, testing.jvm)
Expand Down
2 changes: 1 addition & 1 deletion project/Version.scala
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
object Versions {
val fs2 = "3.11.0"
val http4s = "0.23.25"
val munit = "1.0.2"
val munit = "1.0.3"
val munitCatsEffect = "2.0.0"
val circe = "0.14.10"
val circeGenericExtras = "0.14.3"
Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=1.10.5
sbt.version=1.10.6

0 comments on commit e9f78eb

Please sign in to comment.