polysemy-zoo v0.7.0.1 Release Notes
Release Date: 2020-10-06 // over 4 years ago-
- ๐ As a stop-gap for #65, the library has been rewritten to no longer use
polysemy-plugin
. This should allow GHC 8.10 users to use the library.
- ๐ As a stop-gap for #65, the library has been rewritten to no longer use
Previous changes from v0.7.0.0
-
๐ฅ Breaking Changes
Tagged
has been migrated topolysemy
proper.- ๐
Polysemy.Alias
andInterpreterOf
has been removed in favor ofInterpreterFor
, which is now part ofpolysemy
proper (thanks to @bolt12). - โ Removed
runKVStoreInRedis
,runSetStoreInRedis
, andPolysemy.Redis.Utils
due to lack of use.
Other Changes
- โ Added
MonadThrow
andMonadCatch
constraint absorbers which operate viaError SomeException
(thanks to @adamConnerSax). - โ Added
Polysemy.Input.Streaming
, which offers streaming interoperability. - โ Added
Polysemy.Reader.Compact
, which is useful forReader
effects which provide a large structure (thanks to @spacekitteh).