polysemy-zoo v0.7.0.1 Release Notes
Release Date: 2020-10-06 // over 2 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).