Skip to content

Commit 24c73e1

Browse files
authored
Merge pull request #279 from Dwolla/update/all
Consolidate interdependent updates
2 parents 29f8635 + fc46c94 commit 24c73e1

File tree

4 files changed

+5
-7
lines changed

4 files changed

+5
-7
lines changed

finagle-natchez/src/main/scala/com/dwolla/util/async/finagle/TracedThriftClient.scala

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ object TracedThriftClient {
3838
*/
3939
def apply[Alg[_[_]] <: AnyRef {def asClosable: Closable}] = new PartiallyAppliedThriftClient[Alg]()
4040

41-
@annotation.nowarn("msg=dubious usage of method hashCode with unit value")
4241
class PartiallyAppliedThriftClient[Alg[_[_]] <: AnyRef {def asClosable: Closable}] private[TracedThriftClient](val dummy: Unit = ()) extends AnyVal {
4342
/**
4443
* @param name the local service name to be set on the Zipkin tracer

project/AsyncUtilsBuildPlugin.scala

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,12 +62,12 @@ object AsyncUtilsBuildPlugin extends AutoPlugin {
6262

6363
private val supportedVersions = (currentTwitterVersion :: oldVersions).sorted.reverse
6464

65-
private val SCALA_2_13: String = "2.13.17"
66-
private val SCALA_2_12 = "2.12.20"
65+
private val SCALA_2_13: String = "2.13.18"
66+
private val SCALA_2_12 = "2.12.21"
6767
private val Scala2Versions: Seq[String] = Seq(SCALA_2_13, SCALA_2_12)
6868

6969
private val CatsEffect3V = "3.6.3"
70-
private val CatsTaglessV: String = "0.16.3"
70+
private val CatsTaglessV: String = "0.16.4"
7171
private val libthriftV: String = "0.10.0"
7272

7373
private val scala2CompilerPlugins: Seq[ModuleID] = Seq(

project/plugins.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.3.2")
22
addSbtPlugin("org.typelevel" % "sbt-typelevel-ci-release" % "0.8.4")
33
addSbtPlugin("org.typelevel" % "sbt-typelevel-mergify" % "0.8.4")
44
addSbtPlugin("org.typelevel" % "sbt-typelevel-settings" % "0.8.4")
5-
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.20.1")
6-
addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.14.4")
5+
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.20.2")
6+
addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.14.5")
77
addSbtPlugin("com.eed3si9n" % "sbt-projectmatrix" % "0.11.0")

twitter-finagle/src/main/scala/com/dwolla/util/async/finagle/ThriftClient.scala

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ import com.twitter.util.{Closable, Future}
1111
object ThriftClient {
1212
def apply[Alg[_[_]] <: AnyRef {def asClosable: Closable}] = new PartiallyAppliedThriftClient[Alg]()
1313

14-
@annotation.nowarn("msg=dubious usage of method hashCode with unit value")
1514
class PartiallyAppliedThriftClient[Alg[_[_]] <: AnyRef {def asClosable: Closable}] private[ThriftClient] (val dummy: Unit = ()) extends AnyVal {
1615
def apply[G[_] : Async](dest: String)
1716
(implicit

0 commit comments

Comments
 (0)