You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This new release is a full upgrade from Cats Effect 2 to 3, meaning several internal changes and you can now use it as part of your modern Cats Effect 3 stack.
The most notable change to you should be that Blocker is no longer required to create clients. As Cats Effect 3 requires you have a blocking thread pool at runtime, this abstraction was removed from the library. In addition, code that previously depended on Timer was switched over to Temporal from Cats Effect 3 which is a proper type class and not just a wrapper for an execution context.
If you used this library with concrete effect types, little if nothing should change beyond those changes. If you use tagless final style, you may need to change some constraints accordingly.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
This new release is a full upgrade from Cats Effect 2 to 3, meaning several internal changes and you can now use it as part of your modern Cats Effect 3 stack.
The most notable change to you should be that
Blocker
is no longer required to create clients. As Cats Effect 3 requires you have a blocking thread pool at runtime, this abstraction was removed from the library. In addition, code that previously depended onTimer
was switched over toTemporal
from Cats Effect 3 which is a proper type class and not just a wrapper for an execution context.If you used this library with concrete effect types, little if nothing should change beyond those changes. If you use tagless final style, you may need to change some constraints accordingly.
Dependency changes:
This discussion was created from the release v0.6.0 RC1 - Cats Effect 3.
Beta Was this translation helpful? Give feedback.
All reactions