Skip to content

Commit d5b3b7d

Browse files
committed
Update Deps
1 parent 03c3cb1 commit d5b3b7d

File tree

10 files changed

+25
-27
lines changed

10 files changed

+25
-27
lines changed

Diff for: .github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
matrix:
1414
java: [1.8, 1.11, 1.14]
15-
scala: [2.12.13, 2.13.4]
15+
scala: [2.12.14, 2.13.6]
1616
steps:
1717
- uses: actions/checkout@v2
1818
- name: Set up JDK ${{ matrix.java }}

Diff for: .github/workflows/mima.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
matrix:
1414
java: [1.14]
15-
scala: [2.12.13, 2.13.4]
15+
scala: [2.12.14, 2.13.6]
1616
steps:
1717
- uses: actions/checkout@v2
1818
with:

Diff for: .github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
strategy:
1616
matrix:
1717
java: [1.14]
18-
scala: [2.12.13, 2.13.4]
18+
scala: [2.12.14, 2.13.6]
1919
steps:
2020
- uses: actions/checkout@v2
2121
with:

Diff for: build.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ lazy val `rho-core` = project
2727
case _ => Nil
2828
}
2929
},
30-
libraryDependencies ++= Seq("org.scala-lang.modules" %% "scala-collection-compat" % "2.4.4")
30+
libraryDependencies ++= Seq("org.scala-lang.modules" %% "scala-collection-compat" % "2.5.0")
3131
)
3232

3333
lazy val `rho-swagger` = project

Diff for: core/src/test/scala/org/http4s/rho/bits/ResultMatcherSuite.scala

+4-5
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ package org.http4s
22
package rho
33
package bits
44

5-
import cats.Applicative
65
import cats.effect.IO
76
import fs2.Chunk
87
import munit.FunSuite
@@ -122,10 +121,10 @@ class ResultMatcherSuite extends FunSuite {
122121
case class ModelA(name: String, color: Int)
123122
case class ModelB(name: String, id: Long)
124123

125-
implicit def w1[F[_]: Applicative]: EntityEncoder[F, ModelA] =
124+
implicit def w1[F[_]]: EntityEncoder[F, ModelA] =
126125
EntityEncoder.simple[F, ModelA]()(_ => Chunk.array("A".getBytes))
127126

128-
implicit def w2[F[_]: Applicative]: EntityEncoder[F, ModelB] =
127+
implicit def w2[F[_]]: EntityEncoder[F, ModelB] =
129128
EntityEncoder.simple[F, ModelB]()(_ => Chunk.array("B".getBytes))
130129

131130
val srvc = new TRhoRoutes[IO] {
@@ -165,9 +164,9 @@ object Foo {
165164
case class FooA(name: String, color: Int)
166165
case class FooB(name: String, id: Long)
167166

168-
implicit def w1[F[_]: Applicative]: EntityEncoder[F, FooA] =
167+
implicit def w1[F[_]]: EntityEncoder[F, FooA] =
169168
EntityEncoder.simple[F, FooA]()(_ => Chunk.array("A".getBytes))
170169

171-
implicit def w2[F[_]: Applicative]: EntityEncoder[F, FooB] =
170+
implicit def w2[F[_]]: EntityEncoder[F, FooB] =
172171
EntityEncoder.simple[F, FooB]()(_ => Chunk.array("B".getBytes))
173172
}

Diff for: examples/src/main/scala/com/http4s/rho/swagger/demo/MyRoutes.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ object MyRoutes {
149149

150150
case class Bar(i: Int) extends AnyVal
151151

152-
implicit def barParser[F[_]: Monad]: StringParser[F, Bar] =
152+
implicit def barParser[F[_]]: StringParser[F, Bar] =
153153
StringParser.intParser[F].map(Bar)
154154

155155
case class JsonResult(name: String, number: Int)

Diff for: project/Dependencies.scala

+10-11
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,11 @@ import Keys._
33

44
// format: off
55
object Dependencies {
6-
val http4sVersion = "0.23.0-RC1"
7-
val specs2Version = "4.10.6"
6+
val http4sVersion = "0.23.0"
87
val circeVersion = "0.14.1"
98

10-
val scala_213 = "2.13.4"
11-
val scala_212 = "2.12.13"
9+
val scala_213 = "2.13.6"
10+
val scala_212 = "2.12.14"
1211

1312

1413
lazy val circeCore = "io.circe" %% "circe-core" % circeVersion
@@ -21,21 +20,21 @@ object Dependencies {
2120
lazy val http4sXmlInstances = "org.http4s" %% "http4s-scala-xml" % http4sVersion
2221
lazy val swaggerModels = "io.swagger" % "swagger-models" % "1.6.2"
2322
lazy val swaggerCore = "io.swagger" % "swagger-core" % swaggerModels.revision
24-
lazy val logbackClassic = "ch.qos.logback" % "logback-classic" % "1.2.3"
23+
lazy val logbackClassic = "ch.qos.logback" % "logback-classic" % "1.2.5"
2524
lazy val uadetector = "net.sf.uadetector" % "uadetector-resources" % "2014.10"
26-
lazy val shapeless = "com.chuusai" %% "shapeless" % "2.3.3"
27-
lazy val scalaXml = "org.scala-lang.modules" %% "scala-xml" % "2.0.0"
28-
lazy val swaggerUi = "org.webjars" % "swagger-ui" % "3.46.0"
29-
lazy val munit = "org.scalameta" %% "munit" % "0.7.26" % "test"
25+
lazy val shapeless = "com.chuusai" %% "shapeless" % "2.3.7"
26+
lazy val scalaXml = "org.scala-lang.modules" %% "scala-xml" % "2.0.1"
27+
lazy val swaggerUi = "org.webjars" % "swagger-ui" % "3.51.2"
28+
lazy val munit = "org.scalameta" %% "munit" % "0.7.27" % "test"
3029
lazy val munitCatsEffect = "org.typelevel" %% "munit-cats-effect-3" % "1.0.5" % "test"
3130
lazy val scalacheckMunit = "org.scalameta" %% "munit-scalacheck" % munit.revision % "test"
3231

3332
lazy val `scala-reflect` = "org.scala-lang" % "scala-reflect"
3433

35-
val silencerVersion = "1.7.4"
34+
val silencerVersion = "1.7.5"
3635
lazy val silencerPlugin = compilerPlugin("com.github.ghik" % "silencer-plugin" % silencerVersion cross CrossVersion.full)
3736
lazy val silencerLib = "com.github.ghik" % "silencer-lib" % silencerVersion % Provided cross CrossVersion.full
38-
lazy val kindProjector = compilerPlugin("org.typelevel" % "kind-projector" % "0.11.3" cross CrossVersion.full)
37+
lazy val kindProjector = compilerPlugin("org.typelevel" % "kind-projector" % "0.13.0" cross CrossVersion.full)
3938

4039
lazy val halDeps = libraryDependencies ++= Seq(http4sCirce)
4140

Diff for: project/build.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version=1.5.3
1+
sbt.version=1.5.5

Diff for: project/plugins.sbt

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ addSbtPlugin("com.eed3si9n" % "sbt-unidoc" % "0.4.3")
66

77
addSbtPlugin("io.spray" % "sbt-revolver" % "0.9.1")
88

9-
addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "0.9.1")
9+
addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "0.9.2")
1010

1111
addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.10.0")
1212

1313
addSbtPlugin("com.geirsson" % "sbt-ci-release" % "1.5.7")
1414

15-
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.4.2")
15+
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.4.3")
1616

1717
addSbtPlugin("io.github.davidgregory084" % "sbt-tpolecat" % "0.1.20")

Diff for: swagger/src/test/scala/org/http4s/rho/swagger/SwaggerModelsBuilderSuite.scala

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package swagger
33

44
import cats.effect.IO
55
import cats.syntax.all._
6-
import cats.{Applicative, Monad}
6+
import cats._
77
import _root_.io.circe._
88
import _root_.io.circe.parser._
99
import _root_.io.circe.generic.auto._
@@ -1074,10 +1074,10 @@ class SwaggerModelsBuilderSuite extends FunSuite {
10741074
.contramap { _: (Int, T) => "" }
10751075
.withContentType(`Content-Type`(MediaType.application.json, Charset.`UTF-8`))
10761076

1077-
implicit def listEntityEncoder[F[_]: Applicative, A]: EntityEncoder[F, List[A]] =
1077+
implicit def listEntityEncoder[F[_], A]: EntityEncoder[F, List[A]] =
10781078
EntityEncoder.simple[F, List[A]]()(_ => Chunk.array("A".getBytes))
10791079

1080-
implicit def mapEntityEncoder[F[_]: Applicative, A, B]: EntityEncoder[F, Map[A, B]] =
1080+
implicit def mapEntityEncoder[F[_], A, B]: EntityEncoder[F, Map[A, B]] =
10811081
EntityEncoder.simple[F, Map[A, B]]()(_ => Chunk.array("A".getBytes))
10821082

10831083
case class CsvFile()

0 commit comments

Comments
 (0)