Skip to content

Commit e958ef5

Browse files
authored
Update http4s-blaze-client, http4s-circe, ... to 0.21.22
1 parent 511011a commit e958ef5

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

github4s/src/test/scala/github4s/integration/ReposSpec.scala

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,9 @@ trait ReposSpec extends BaseIntegrationSpec {
7171
releasesIO =
7272
gh.repos.listReleases(validRepoOwner, validRepoName, None, headers = headerUserAgent)
7373

74-
releasesResponse <- Resource.liftF(releasesIO)
74+
releasesResponse <- Resource.eval(releasesIO)
7575

76-
releases <- Resource.liftF(IO.fromEither(releasesResponse.result))
76+
releases <- Resource.eval(IO.fromEither(releasesResponse.result))
7777

7878
releasesAreFoundCheck: IO[List[(Release, GHResponse[Option[Release]])]] = releases.map {
7979
release =>
@@ -179,11 +179,11 @@ trait ReposSpec extends BaseIntegrationSpec {
179179
headers = headerUserAgent
180180
)
181181

182-
fileContentsResponse <- Resource.liftF(fileContentsIO)
182+
fileContentsResponse <- Resource.eval(fileContentsIO)
183183

184184
fileContentsEither = fileContentsResponse.result
185185

186-
fileContents <- Resource.liftF(IO.fromEither(fileContentsEither))
186+
fileContents <- Resource.eval(IO.fromEither(fileContentsEither))
187187

188188
blobContentIO = res.gitData.getBlob(
189189
owner = validRepoOwner,
@@ -192,7 +192,7 @@ trait ReposSpec extends BaseIntegrationSpec {
192192
headers = headerUserAgent
193193
)
194194

195-
blobContentResponse <- Resource.liftF(blobContentIO)
195+
blobContentResponse <- Resource.eval(blobContentIO)
196196

197197
} yield (blobContentResponse, fileContents.head)
198198

project/ProjectPlugin.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ object ProjectPlugin extends AutoPlugin {
1717
val base64: String = "0.3.0"
1818
val cats: String = "2.5.0"
1919
val circe: String = "0.13.0"
20-
val http4s: String = "0.21.20"
20+
val http4s: String = "0.21.22"
2121
val paradise: String = "2.1.1"
2222
val scalamock: String = "5.1.0"
2323
val scalatest: String = "3.2.7"

0 commit comments

Comments
 (0)