Skip to content

Commit

Permalink
Bump deps (#860)
Browse files Browse the repository at this point in the history
* Update scala-library to 2.13.10

* Update sbt-ci-release to 1.5.11

* Update sbt-scoverage to 2.0.6

* Update scalafmt-core to 3.6.1

* Update scala3-library, ... to 3.2.1

* Update cats-core to 2.9.0

* Update sbt-header to 5.9.0

* Update sbt-scalafmt to 2.5.0

* Update sbt-github, sbt-github-header, ... to 0.11.6

* Update plugins.sbt

* Update sbt-scalajs, scalajs-compiler, ... to 1.12.0

* Update sbt-microsites to 1.4.0

* Update http4s-blaze-client to 0.23.13

* Update shapeless3-deriving to 3.3.0

* Bump SBT

* Remove condition from flaky test

Co-authored-by: fortyseven_degrees <[email protected]>
  • Loading branch information
fedefernandez and 47erbot authored Jan 5, 2023
1 parent 1f3b106 commit b2ebd62
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 17 deletions.
2 changes: 1 addition & 1 deletion .scalafmt.conf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version = 3.5.9
version = 3.6.1

style = defaultWithAlign
maxColumn = 100
Expand Down
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import ProjectPlugin.on
ThisBuild / organization := "com.47deg"

val scala212 = "2.12.17"
val scala213 = "2.13.9"
val scala3Version = "3.2.0"
val scala213 = "2.13.10"
val scala3Version = "3.2.1"
val scala2Versions = Seq(scala212, scala213)
val allScalaVersions = scala2Versions :+ scala3Version
ThisBuild / scalaVersion := scala213
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -429,6 +429,10 @@ trait ReposSpec extends BaseIntegrationSpec {
response.statusCode shouldBe notFoundStatusCode
}

// All the responses in the API returns an empty list of statuses, so we're not checking the content
// For example
// * https://github.com/typelevel/cats/commit/b036fb47196d1a788db09eb2bc262071fa3cb928
// * https://api.github.com/repos/typelevel/cats/commits/b036fb47196d1a788db09eb2bc262071fa3cb928/status
"Repos >> ListStatus" should "return a non empty list when a valid ref is provided" taggedAs Integration in {
val response = clientResource
.use { client =>
Expand All @@ -437,7 +441,7 @@ trait ReposSpec extends BaseIntegrationSpec {
}
.unsafeRunSync()

testIsRight[List[Status]](response, r => r.nonEmpty shouldBe true)
testIsRight[List[Status]](response)
response.statusCode shouldBe okStatusCode
}

Expand Down
6 changes: 3 additions & 3 deletions project/ProjectPlugin.scala
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,17 @@ object ProjectPlugin extends AutoPlugin {

lazy val V = new {
val bm4 = "0.3.1"
val cats: String = "2.8.0"
val cats: String = "2.9.0"
val circe: String = "0.14.3"
val expecty = "0.16.0"
val http4s: String = "0.23.16"
val http4sBlazeClient: String = "0.23.12"
val http4sBlazeClient: String = "0.23.13"
val paradise: String = "2.1.1"
val scalacheck = "1.17.0"
val scalacheckShapeless = "1.3.0"
val scalacheckPlusScalatest = "3.2.11.0"
val scalatest: String = "3.2.14"
val shapeless3 = "3.2.0"
val shapeless3 = "3.3.0"
}

lazy val docsMappingsAPIDir: SettingKey[String] =
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.7.2
sbt.version = 1.8.1
18 changes: 9 additions & 9 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
ThisBuild / libraryDependencySchemes ++= Seq(
"org.scala-lang.modules" %% "scala-xml" % VersionScheme.Always
)
addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.10")
addSbtPlugin("com.47deg" % "sbt-microsites" % "1.3.4")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.0.4")
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.4.6")
addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.11")
addSbtPlugin("com.47deg" % "sbt-microsites" % "1.4.1")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.0.6")
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.0")
addSbtPlugin("org.scalameta" % "sbt-mdoc" % "2.3.6")
addSbtPlugin("com.github.sbt" % "sbt-unidoc" % "0.5.0")
addSbtPlugin("de.heikoseeberger" % "sbt-header" % "5.7.0")
addSbtPlugin("de.heikoseeberger" % "sbt-header" % "5.9.0")
addSbtPlugin("com.alejandrohdezma" % "sbt-codecov" % "0.2.1")
addSbtPlugin("com.alejandrohdezma" % "sbt-github" % "0.11.2")
addSbtPlugin("com.alejandrohdezma" % "sbt-github-header" % "0.11.2")
addSbtPlugin("com.alejandrohdezma" % "sbt-github-mdoc" % "0.11.2")
addSbtPlugin("com.alejandrohdezma" % "sbt-github" % "0.11.6")
addSbtPlugin("com.alejandrohdezma" % "sbt-github-header" % "0.11.6")
addSbtPlugin("com.alejandrohdezma" % "sbt-github-mdoc" % "0.11.6")
addSbtPlugin("com.alejandrohdezma" % "sbt-remove-test-from-pom" % "0.1.0")
addSbtPlugin("io.github.davidgregory084" % "sbt-tpolecat" % "0.4.1")
addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.2.0")
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.11.0")
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.12.0")

0 comments on commit b2ebd62

Please sign in to comment.