Merge pull request #734 from scala-steward/update/fs2-core-2.5.4

Update fs2-core, fs2-io to 2.5.4
This commit is contained in:
mergify[bot] 2021-03-31 19:31:16 +00:00 committed by GitHub
commit 8c5ecf0b2f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
11 changed files with 23 additions and 17 deletions

View File

@ -1 +1,7 @@
updates.ignore = [ { groupId = "org.apache.poi" } ] updates.ignore = [
{ groupId = "org.apache.poi" },
]
updates.pin = [
{ groupId = "co.fs2", version = "2." }
]

View File

@ -37,7 +37,7 @@ object TextAnalyser {
blocker: Blocker blocker: Blocker
): Resource[F, TextAnalyser[F]] = ): Resource[F, TextAnalyser[F]] =
Resource Resource
.liftF(Nlp(cfg.nlpConfig)) .eval(Nlp(cfg.nlpConfig))
.map(stanfordNer => .map(stanfordNer =>
new TextAnalyser[F] { new TextAnalyser[F] {
def annotate( def annotate(

View File

@ -47,8 +47,8 @@ object PipelineCache {
def obtain(key: String, settings: NlpSettings): Resource[F, Annotator[F]] = def obtain(key: String, settings: NlpSettings): Resource[F, Annotator[F]] =
for { for {
_ <- cacheClear.withCache _ <- cacheClear.withCache
id <- Resource.liftF(makeSettingsId(settings)) id <- Resource.eval(makeSettingsId(settings))
nlp <- Resource.liftF( nlp <- Resource.eval(
data.modify(cache => getOrCreate(key, id, cache, settings, creator)) data.modify(cache => getOrCreate(key, id, cache, settings, creator))
) )
} yield nlp } yield nlp

View File

@ -28,8 +28,8 @@ object JoexServer {
)(implicit T: Timer[F]): Stream[F, Nothing] = { )(implicit T: Timer[F]): Stream[F, Nothing] = {
val app = for { val app = for {
signal <- Resource.liftF(SignallingRef[F, Boolean](false)) signal <- Resource.eval(SignallingRef[F, Boolean](false))
exitCode <- Resource.liftF(Ref[F].of(ExitCode.Success)) exitCode <- Resource.eval(Ref[F].of(ExitCode.Success))
joexApp <- joexApp <-
JoexAppImpl JoexAppImpl
.create[F](cfg, signal, pools.connectEC, pools.httpClientEC, pools.blocker) .create[F](cfg, signal, pools.connectEC, pools.httpClientEC, pools.blocker)

View File

@ -38,7 +38,7 @@ object RegexNerFile {
): Resource[F, RegexNerFile[F]] = ): Resource[F, RegexNerFile[F]] =
for { for {
dir <- File.withTempDir[F](cfg.directory, "regexner-") dir <- File.withTempDir[F](cfg.directory, "regexner-")
writer <- Resource.liftF(Semaphore(1)) writer <- Resource.eval(Semaphore(1))
} yield new Impl[F](cfg.copy(directory = dir), blocker, store, writer) } yield new Impl[F](cfg.copy(directory = dir), blocker, store, writer)
final private class Impl[F[_]: Concurrent: ContextShift]( final private class Impl[F[_]: Concurrent: ContextShift](

View File

@ -40,8 +40,8 @@ object PeriodicScheduler {
timer: Timer[F] timer: Timer[F]
): Resource[F, PeriodicScheduler[F]] = ): Resource[F, PeriodicScheduler[F]] =
for { for {
waiter <- Resource.liftF(SignallingRef(true)) waiter <- Resource.eval(SignallingRef(true))
state <- Resource.liftF(SignallingRef(PeriodicSchedulerImpl.emptyState[F])) state <- Resource.eval(SignallingRef(PeriodicSchedulerImpl.emptyState[F]))
psch = new PeriodicSchedulerImpl[F]( psch = new PeriodicSchedulerImpl[F](
cfg, cfg,
sch, sch,
@ -52,7 +52,7 @@ object PeriodicScheduler {
state, state,
timer timer
) )
_ <- Resource.liftF(psch.init) _ <- Resource.eval(psch.init)
} yield psch } yield psch
} }

View File

@ -46,9 +46,9 @@ case class SchedulerBuilder[F[_]: ConcurrentEffect: ContextShift](
def resource: Resource[F, Scheduler[F]] = { def resource: Resource[F, Scheduler[F]] = {
val scheduler = for { val scheduler = for {
jq <- queue jq <- queue
waiter <- Resource.liftF(SignallingRef(true)) waiter <- Resource.eval(SignallingRef(true))
state <- Resource.liftF(SignallingRef(SchedulerImpl.emptyState[F])) state <- Resource.eval(SignallingRef(SchedulerImpl.emptyState[F]))
perms <- Resource.liftF(Semaphore(config.poolSize.toLong)) perms <- Resource.eval(Semaphore(config.poolSize.toLong))
} yield new SchedulerImpl[F]( } yield new SchedulerImpl[F](
config, config,
blocker, blocker,

View File

@ -158,7 +158,7 @@ object TemplateRoutes {
private def memo[F[_]: Sync, A](fa: => F[A]): F[A] = { private def memo[F[_]: Sync, A](fa: => F[A]): F[A] = {
val ref = new AtomicReference[A]() val ref = new AtomicReference[A]()
Sync[F].suspend { Sync[F].defer {
Option(ref.get) match { Option(ref.get) match {
case Some(a) => a.pure[F] case Some(a) => a.pure[F]
case None => case None =>

View File

@ -42,7 +42,7 @@ object Store {
for { for {
xa <- hxa xa <- hxa
st = new StoreImpl[F](jdbc, xa) st = new StoreImpl[F](jdbc, xa)
_ <- Resource.liftF(st.migrate) _ <- Resource.eval(st.migrate)
} yield st } yield st
} }
} }

View File

@ -62,6 +62,6 @@ object StoreFixture {
for { for {
xa <- makeXA(jdbc) xa <- makeXA(jdbc)
store = new StoreImpl[IO](jdbc, xa) store = new StoreImpl[IO](jdbc, xa)
_ <- Resource.liftF(store.migrate) _ <- Resource.eval(store.migrate)
} yield store } yield store
} }

View File

@ -16,7 +16,7 @@ object Dependencies {
val EmilVersion = "0.7.3" val EmilVersion = "0.7.3"
val FlexmarkVersion = "0.62.2" val FlexmarkVersion = "0.62.2"
val FlywayVersion = "7.7.1" val FlywayVersion = "7.7.1"
val Fs2Version = "2.5.3" val Fs2Version = "2.5.4"
val H2Version = "1.4.200" val H2Version = "1.4.200"
val Http4sVersion = "0.21.20" val Http4sVersion = "0.21.20"
val Icu4jVersion = "68.2" val Icu4jVersion = "68.2"